BOSS 6.6.4.p01
BESIII Offline Software System
Loading...
Searching...
No Matches
RawDataProviderSvc.cxx
Go to the documentation of this file.
2#include "GaudiKernel/Kernel.h"
3#include "GaudiKernel/IInterface.h"
4#include "GaudiKernel/IIncidentSvc.h"
5#include "GaudiKernel/Incident.h"
6#include "GaudiKernel/IIncidentListener.h"
7#include "GaudiKernel/StatusCode.h"
8#include "GaudiKernel/SvcFactory.h"
9#include "GaudiKernel/MsgStream.h"
10#include "GaudiKernel/IDataProviderSvc.h"
11#include "GaudiKernel/SmartDataPtr.h"
12#include "GaudiKernel/DataSvc.h"
14
15// tianhl for mt
16#include "GaudiKernel/ThreadGaudi.h"
17// tianhl for mt
18#include <stdint.h>
19#include <vector>
20
21using namespace std;
22
23RawDataProviderSvc::RawDataProviderSvc( const string& name, ISvcLocator* svcloc) :
24 Service (name, svcloc) {
25 declareProperty("OutputLevel", m_outputLevel=MSG::WARNING);
26 declareProperty("skipLayers", m_skipLayers );
27 declareProperty("EmcELow", m_elow=0);
28 declareProperty("EmcTLow", m_tlow=0);
29 declareProperty("EmcTHigh", m_thigh=60);
30 declareProperty("EmcHotCrystals", m_hotVec);
31 declareProperty("EmcDeadCrystals", m_deadVec);
32 declareProperty("EmcDeadCrystals", m_deadVec);
33 declareProperty("OnlineMode", m_onlineMode=0);
34 // tianhl for mt
35 m_mdcProvider = new MdcRawDataProvider(name.c_str());
36 m_tofProvider = new TofRawDataProvider(name.c_str());
37 m_emcProvider = new EmcRawDataProvider(name.c_str());
38 // tianhl for mt
39}
40
41
43 if(m_mdcProvider) delete m_mdcProvider;
44 if(m_tofProvider) delete m_tofProvider;
45 if(m_emcProvider) delete m_emcProvider;
46}
47
48
50 MsgStream log(messageService(), name());
51 log << MSG::INFO << "RawDataProviderSvc::initialize()" << endreq;
52
53 StatusCode sc = Service::initialize();
54 if( sc.isFailure() ) return sc;
55
56 // tianhl for mt
57 std::string incidentSvc_name("IncidentSvc");
58 //if(isGaudiThreaded(name())){
59 // incidentSvc_name += getGaudiThreadIDfromName(name());
60 //}
61 // tianhl for mt
62 IIncidentSvc* incsvc;
63 sc = service(incidentSvc_name.c_str(), incsvc);
64 int priority = 100;
65 if( sc.isSuccess() ){
66 incsvc -> addListener(this, "BeginEvent", priority);
67 }
68
69 sc = m_mdcProvider->initialize();
70 if( sc.isFailure() ) return sc;
71
72
73 sc = m_tofProvider->initialize(m_onlineMode);
74 if( sc.isFailure() ) return sc;
75
76 if( m_skipLayers.size()>0 ) m_mdcProvider->setSkipLayers( m_skipLayers );
77
78 if(m_elow>0) m_emcProvider->setELowThreshold(RawDataUtil::EmcChargeChannel(m_elow));
79 if(m_tlow>0) m_emcProvider->setTLowThreshold(m_tlow);
80 if(m_thigh>0&&m_thigh<60) m_emcProvider->setTHighThreshold(m_thigh);
81 if(m_hotVec.size()>0) m_emcProvider->setHotCrystals(m_hotVec);
82 if(m_deadVec.size()>0) m_emcProvider->setHotCrystals(m_deadVec);
83 sc = m_emcProvider->initialize(m_onlineMode,serviceLocator());
84 if( sc.isFailure() ) return sc;
85
86 //log << MSG::INFO << "finish initializing..." << endreq;
87 return StatusCode::SUCCESS;
88}
89
91 MsgStream log(messageService(), name());
92 log << MSG::INFO << "RawDataProviderSvc::finalize()" << endreq;
93
94 return StatusCode::SUCCESS;
95}
96
97StatusCode RawDataProviderSvc::queryInterface(const InterfaceID& riid, void** ppvInterface)
98{
99 if ( IRawDataProviderSvc::interfaceID().versionMatch(riid) ) {
100 *ppvInterface = (IRawDataProviderSvc*)this;
101 }else{
102 return Service::queryInterface(riid, ppvInterface);
103 }
104 addRef();
105 return StatusCode::SUCCESS;
106}
107
108void RawDataProviderSvc::handle(const Incident& inc){
109 MsgStream log( messageService(), name() );
110 log << MSG::DEBUG << "handle: " << inc.type() << endreq;
111 if ( inc.type() == "BeginEvent" ){
112 log << MSG::DEBUG << "Begin Event" << endreq;
113 m_tofProvider->handle( inc );
114 m_emcProvider->handle( inc );
115 m_mdcProvider->handle( inc );
116 }
117}
void setTLowThreshold(const uint32_t low)
void setHotCrystals(const std::vector< uint32_t > &idVec)
void setELowThreshold(const uint32_t low)
void handle(const Incident &)
virtual StatusCode initialize(bool mode=0, ISvcLocator *svcLoc=0, IMessageSvc *pMsg=0)
void setTHighThreshold(const uint32_t high)
static const InterfaceID & interfaceID()
void handle(const Incident &)
StatusCode initialize(ISvcLocator *svcLoc=0, IMessageSvc *pMsg=0)
void setSkipLayers(const std::vector< int > &skipLayers)
virtual StatusCode finalize()
virtual StatusCode queryInterface(const InterfaceID &riid, void **ppvInterface)
void handle(const Incident &)
RawDataProviderSvc(const std::string &name, ISvcLocator *svcloc)
virtual StatusCode initialize()
static int EmcChargeChannel(double charge)
Definition: RawDataUtil.h:37
void handle(const Incident &)
StatusCode initialize(bool mode=false, ISvcLocator *svcLoc=0, IMessageSvc *pMsg=0)