3#include "GaudiKernel/Kernel.h"
4#include "GaudiKernel/IInterface.h"
5#include "GaudiKernel/StatusCode.h"
6#include "GaudiKernel/SvcFactory.h"
7#include "GaudiKernel/MsgStream.h"
8#include "GaudiKernel/IIncidentSvc.h"
9#include "GaudiKernel/Incident.h"
10#include "GaudiKernel/ISvcLocator.h"
11#include "GaudiKernel/Bootstrap.h"
12#include "GaudiKernel/SmartDataPtr.h"
13#include "GaudiKernel/DataSvc.h"
26 Service (name, svcloc) {
33 if( IID_IInjSigIntervalSvc.versionMatch(riid) ){
36 return Service::queryInterface(riid, ppvInterface);
38 return StatusCode::SUCCESS;
42 MsgStream log(messageService(), name());
43 log << MSG::INFO <<
"InjSigIntervalSvc::initialize()" << endreq;
45 StatusCode sc = Service::initialize();
46 if( sc.isFailure() )
return sc;
49 sc = service(
"IncidentSvc", incsvc);
52 incsvc -> addListener(
this,
"NewRun", priority);
55 sc = service(
"CalibDataSvc", m_pCalDataSvc,
true);
56 if( sc == StatusCode::SUCCESS ){
57 log << MSG::INFO <<
"Retrieve IDataProviderSvc" << endreq;
59 log << MSG::FATAL <<
"can not get IDataProviderSvc" << endreq;
62 return StatusCode::SUCCESS;
66 MsgStream log(messageService(), name());
67 log << MSG::INFO <<
"InjSigIntervalSvc::finalize()" << endreq;
70 return StatusCode::SUCCESS;
74 MsgStream log( messageService(), name() );
75 log << MSG::DEBUG <<
"handle: " << inc.type() << endreq;
77 if ( inc.type() ==
"NewRun" ){
78 log << MSG::DEBUG <<
"NewRun" << endreq;
80 if( ! initCalibConst() ){
82 <<
"can not initilize InjSigInterval Constants" << endreq;
87bool InjSigIntervalSvc::initCalibConst(){
88 MsgStream log(messageService(), name());
89 log << MSG::INFO <<
"read calib const from TCDS" << endreq;
91 IDataProviderSvc* eventSvc =
NULL;
92 Gaudi::svcLocator()->service(
"EventDataSvc", eventSvc);
93 SmartDataPtr<Event::EventHeader> eventHeader(eventSvc,
"/Event/EventHeader");
95 log << MSG::FATAL <<
"Could not find Event Header" << endreq;
96 return( StatusCode::FAILURE);
99 string fullPath =
"/Calib/InjSigInterval";
100 SmartDataPtr<CalibData::InjSigIntervalCal> calConst(m_pCalDataSvc, fullPath);
102 log << MSG::ERROR <<
"can not get InjSigInterval via SmartPtr"
107 m_tInterval = calConst->getTInterval();
InjSigIntervalSvc(const std::string &name, ISvcLocator *svcloc)
void handle(const Incident &)
virtual StatusCode finalize()
virtual StatusCode queryInterface(const InterfaceID &riid, void **ppvUnknown)
virtual StatusCode initialize()