58 {
59
60
61 MsgStream log(messageService(), name());
62
63
64 StatusCode sc = Service::initialize();
65 if( sc.isSuccess() )
66 {
67 setProperties();
68 }
69 else
70 {
71 log << MSG::ERROR << "RawDataSelector::initialize: Unable to " <<
72 "initialize Service base class." << endreq;
73 return sc;
74 }
75
76 IService* svc ;
77
78
79 if (isGaudiThreaded(name()))m_eventSourceName += getGaudiThreadIDfromName(name());
80 log << MSG::INFO << name() << " get RawDataInputSvc by name: " << m_eventSourceName << endreq;
81
82
83 sc = serviceLocator()->getService(m_eventSourceName, svc);
84 if(sc != StatusCode::SUCCESS ) {
85 log<<MSG::ERROR << " Cant get RawDataInputSvc " <<endreq;
86 return sc ;
87 }
88
89 m_eventSource = dynamic_cast<RawDataInputSvc*> (svc);
90 if(m_eventSource == 0 ) {
91 log<<MSG::ERROR<< " Cant cast to RawDataInputSvc " <<endreq;
92 return StatusCode::FAILURE ;
93 }
94
95 m_beginContext = new RawDataContext(this);
96
97
98
99 return sc;
100}