BOSS 7.0.4
BESIII Offline Software System
Loading...
Searching...
No Matches
TrigCnv.cxx
Go to the documentation of this file.
1// File and Version Information:
2// Description:
3// TrigCnv is the concrete converter for the Trig branch
4//
5
6#ifndef TrigCnv_CXX
7#define TrigCnv_CXX
8
9#include "GaudiKernel/MsgStream.h"
10#include "GaudiKernel/DataObject.h"
11#include "GaudiKernel/SmartDataPtr.h"
12#include "GaudiKernel/RegistryEntry.h"
13#include "GaudiKernel/IOpaqueAddress.h"
14
15#include "EventModel/EventHeader.h"
16#include "TrigEvent/TrigEvent.h"
17#include "EventModel/EventModel.h"
18#include "RootCnvSvc/Trig/TrigCnv.h"
19#include "RootCnvSvc/RootEvtSelector.h"
20#include "RootCnvSvc/RootAddress.h"
21#include "RootCnvSvc/Util.h"
22
23using namespace DataSvcHelpers;
24TTrigEvent* TrigCnv::m_objWrite = 0;
25
26TrigCnv::TrigCnv(ISvcLocator* svc)
27: RootEventBaseCnv(classID(), svc)
28{
29 // Here we associate this converter with the path on the TDS.
30 //o m_rootBranchname ="m_fromMc";
31 //declareObject(EventModel::Digi::Event, objType(), m_rootTreename, m_rootBranchname);
32 //o m_adresses.push_back(&m_fromMc);
33
34 //m_objWrite=0;
35
36}
37
38StatusCode TrigCnv::initialize() {
39 MsgStream log(msgSvc(), "TrigCnv");
40 log << MSG::DEBUG << "TrigCnv::initialize"<< endreq;
41
42 StatusCode status = RootEventBaseCnv::initialize();
43
44 //pass dst converter to the conversion service
45 m_cnvSvc->setTrigCnv(this);
46
47 return status;
48
49}
50
51StatusCode TrigCnv::TObjectToDataObject(DataObject*& refpObject) {
52 // fills the TDS object from the root object
53 StatusCode sc=StatusCode::SUCCESS;
54
55 MsgStream log(msgSvc(), "TrigCnv");
56 log << MSG::DEBUG << "TObjectToDataObject" << endreq;
57/*
58 SmartDataPtr<Event::EventHeader> evt(m_eds, EventModel::EventHeader);
59 if (!evt) {
60 log << MSG::ERROR << "Failed to retrieve RecEvent" << endreq;
61 return StatusCode::FAILURE;
62 }
63*/
64 TrigEvent * tdsev = new TrigEvent();
65 refpObject = tdsev;
66
67 m_fromMc = false; // There is no "TTrigEvent" branch in MC-dst-files
68 tdsev->initialize(m_fromMc);
69
70 return sc;
71}
72
73StatusCode TrigCnv::DataObjectToTObject(DataObject* obj, RootAddress* rootaddr) {
74 // transforms TDS event to digi event in root format
75 MsgStream log(msgSvc(), "TrigCnv");
76 log << MSG::DEBUG << "TrigCnv::DataObjectToTObject" << endreq;
77
78 // test if already done for this event
79 //zoujh: if (m_objWrite && (m_objWrite->getRunId()!=0 || m_objWrite->getEventId()!=0)) return StatusCode::SUCCESS;
80 if (m_common.m_trigEvt != NULL) return StatusCode::SUCCESS;
81
82/*
83 SmartDataPtr<Event::EventHeader> evtTds(m_eds, EventModel::EventHeader);
84
85 if (!evtTds) {
86 log << MSG::ERROR << "Failed to retrieve EventHeader in TDS" << endreq;
87 return StatusCode::FAILURE;
88 }
89 */
90 TrigEvent * devtTds=dynamic_cast<TrigEvent *> (obj);
91 if (!devtTds) {
92 log << MSG::ERROR << "Could not downcast to TDS RecEvent" << endreq;
93 return StatusCode::FAILURE;
94 }
95 m_objWrite = new TTrigEvent(); //zoujh
96 m_common.m_trigEvt = m_objWrite; //zoujh
97
98 // create branch if not yet done
99 if (m_branchNr<0) {
100 //zoujh: m_objWrite = new TTrigEvent();
101 StatusCode sc = m_rootInterface->createBranch(rootaddr->getTreename(),"TTrigEvent",m_objWrite->ClassName(),&m_objWrite,m_branchNr);
102 if (sc.isFailure()) {
103 log << MSG::ERROR << "Could not create branch TTrigEvent" << endreq;
104 return sc;
105 }
106 }
107
108 //Int_t evtId = evtTds->eventNumber();
109 //Int_t runId = evtTds->runNumber();
110
111 //o Bool_t fromMc = devtTds->fromMc();
112
113#ifdef DEBUG
114 std::cout<<"******************************"<<std::endl;
115 std::cout<<" eveId: "<<evtId<<std::endl;
116 std::cout<<" runId: "<<runId<<std::endl;
117 std::cout<<"******************************"<<std::endl;
118#endif
119
120 //o m_objWrite->initialize(fromMc);
121 m_objWrite->initialize();
122
123 return StatusCode::SUCCESS;
124}
125#endif
Definition of a Root address, derived from IOpaqueAddress.
virtual StatusCode initialize()
int m_branchNr
the branchNr of this converter for writing
RootInterface * m_rootInterface
pointer to the RootInterface
virtual StatusCode createBranch(const std::string &tree, const std::string &branch, const char *classname, void *addr, int &branchnr)
create a branch in this tree
TrigCnv(ISvcLocator *svc)
Definition: TrigCnv.cxx:26
virtual StatusCode initialize()
Definition: TrigCnv.cxx:38
virtual StatusCode DataObjectToTObject(DataObject *obj, RootAddress *addr)
transformation from TDS object to ROOT
Definition: TrigCnv.cxx:73
virtual StatusCode TObjectToDataObject(DataObject *&refpObject)
do the transformation from ROOT to TDS object
Definition: TrigCnv.cxx:51
static TTrigEvent * m_trigEvt
Provide access to the ROOT event pointers.