CGEM BOSS 6.6.5.f
BESIII Offline Software System
Loading...
Searching...
No Matches
bak_RootCnvSvc-04-01-14/src/EvtRec/EvtRecPi0Cnv.cxx
Go to the documentation of this file.
1#include <algorithm>
2#include "GaudiKernel/MsgStream.h"
3
4#include "EventModel/EventModel.h"
5#include "EvtRecEvent/EvtRecObject.h"
6#include "EvtRecEvent/EvtRecPi0.h"
7
8#include "RootEventData/TEvtRecObject.h"
9#include "RootEventData/TEvtRecPi0.h"
10
11#include "RootCnvSvc/RootAddress.h"
12#include "RootCnvSvc/EvtRec/EvtRecCnv.h"
13#include "RootCnvSvc/EvtRec/EvtRecPi0Cnv.h"
14
15#include "CLHEP/Matrix/Vector.h"
16#include "CLHEP/Matrix/SymMatrix.h"
17
18#include <vector>
19
20
21using CLHEP::HepVector;
22using CLHEP::HepSymMatrix;
23
25 : RootEventBaseCnv(classID(), svc)
26{
27 m_rootBranchname = "m_evtRecPi0Col";
28 m_adresses.push_back(&m_evtRecPi0Col);
29 m_evtRecPi0Col = 0;
30}
31
32StatusCode EvtRecPi0Cnv::TObjectToDataObject(DataObject*& refpObject) {
33 // creation of TDS object from root object
34 MsgStream log(msgSvc(), "EvtRecPi0Cnv");
35 log << MSG::DEBUG << "EvtRecPi0Cnv::TObjectToDataObject" << endreq;
36
37 // create the TDS location for the EvtRecPi0 Collection
38 EvtRecPi0Col* evtRecPi0Col = new EvtRecPi0Col;
39 refpObject = evtRecPi0Col;
40
41 if ( ! m_evtRecPi0Col ) return StatusCode::SUCCESS;
42
43 IDataProviderSvc* dataSvc = 0;
44 StatusCode sc = serviceLocator()->getService("EventDataSvc",
45 IDataProviderSvc::interfaceID(), (IInterface*&)dataSvc);
46 if ( sc.isFailure() ) {
47 log << MSG::FATAL << "Could not get EventDataSvc in EvtRecPi0Cnv" << endreq;
48 return sc;
49 }
50
51 SmartDataPtr<EvtRecTrackCol> evtRecTrackCol(dataSvc, EventModel::EvtRec::EvtRecTrackCol);
52 if ( ! evtRecTrackCol) {
53 log << MSG::INFO << "Could not find EvtRecTrackCol" << endreq;
54 }
55
56 // convert
57 TIter evtRecPi0Iter(m_evtRecPi0Col);
58 TEvtRecPi0* evtRecPi0Root = 0;
59 while ( (evtRecPi0Root = (TEvtRecPi0*)evtRecPi0Iter.Next() ) ) {
60 EvtRecPi0* evtRecPi0 = new EvtRecPi0();
61 m_common.m_rootEvtRecPi0Map[evtRecPi0Root] = evtRecPi0;
62
63 // set ....
64 evtRecPi0->setUnconMass( evtRecPi0Root->unconMass() );
65 evtRecPi0->setChisq( evtRecPi0Root->chisq() );
66
67 HepLorentzVector hiP4(evtRecPi0Root->hiPxfit(),evtRecPi0Root->hiPyfit(),evtRecPi0Root->hiPzfit(),evtRecPi0Root->hiPefit());
68 HepLorentzVector loP4(evtRecPi0Root->loPxfit(),evtRecPi0Root->loPyfit(),evtRecPi0Root->loPzfit(),evtRecPi0Root->loPefit());
69 evtRecPi0->setHiPfit(hiP4);
70 evtRecPi0->setLoPfit(loP4);
71
72 int hiEnGammatrk=evtRecPi0Root->hiEnGamma();
73 int loEnGammatrk=evtRecPi0Root->loEnGamma();
74 evtRecPi0->setHiEnGamma(
75 dynamic_cast<EvtRecTrack*>(evtRecTrackCol->containedObject(hiEnGammatrk))
76 );
77 evtRecPi0->setLoEnGamma(
78 dynamic_cast<EvtRecTrack*>(evtRecTrackCol->containedObject(loEnGammatrk))
79 );
80
81
82 evtRecPi0Col->push_back(evtRecPi0);
83 }
84
85 delete m_evtRecPi0Col;
86 m_evtRecPi0Col = 0;
87 return StatusCode::SUCCESS;
88}
89
90StatusCode EvtRecPi0Cnv::DataObjectToTObject(DataObject* obj, RootAddress* rootaddr) {
91 MsgStream log(msgSvc(), "EvtRecPi0Cnv");
92 log << MSG::DEBUG << "EvtRecPi0Cnv::DataObjectToTObject" << endreq;
93
94 EvtRecPi0Col* evtRecPi0Col = dynamic_cast<EvtRecPi0Col*> (obj);
95 if ( ! evtRecPi0Col ) {
96 log << MSG::ERROR << "Could not downcast to EvtRecPi0Col" << endreq;
97 return StatusCode::FAILURE;
98 }
99
100 DataObject* evt;
101 m_eds->findObject(EventModel::EvtRec::Event, evt);
102 if ( evt == NULL ) {
103 log << MSG::ERROR << "Could not get EvtRecObject in TDS" << endreq;
104 return StatusCode::FAILURE;
105 }
106 EvtRecObject* devtTds = dynamic_cast<EvtRecObject*> (evt);
107 if ( ! devtTds ) {
108 log << MSG::ERROR << "EvtRecPi0Cnv: Could not downcast to TDS EvtRecObject" << endreq;
109 }
110
111 IOpaqueAddress *addr;
112 m_cnvSvc->getEvtRecCnv()->createRep(evt, addr);
114
115 const TObjArray* m_evtRecPi0Col = recEvt->getEvtRecPi0Col();
116 if ( ! m_evtRecPi0Col ) return StatusCode::SUCCESS;
117
118 IDataProviderSvc* dataSvc = 0;
119 StatusCode sc = serviceLocator()->getService("EventDataSvc",
120 IDataProviderSvc::interfaceID(), (IInterface*&)dataSvc);
121 if ( sc.isFailure() ) {
122 log << MSG::FATAL << "Could not get EventDataSvc in EvtRecPi0Cnv" << endreq;
123 return sc;
124 }
125
126 EvtRecTrackCol::iterator evtRecTrackColbegin, evtRecTrackColend;
127
128 SmartDataPtr<EvtRecTrackCol> evtRecTrackCol(dataSvc, EventModel::EvtRec::EvtRecTrackCol);
129 if ( ! evtRecTrackCol) {
130 log << MSG::INFO << "Could not find EvtRecTrackCol" << endreq;
131 }
132 else {
133 evtRecTrackColbegin = evtRecTrackCol->begin();
134 evtRecTrackColend = evtRecTrackCol->end();
135 }
136
137 // convert
138 recEvt->clearEvtRecPi0Col();
139 EvtRecPi0Col::const_iterator evtRecPi0 = evtRecPi0Col->begin();
140
141 for ( ; evtRecPi0 != evtRecPi0Col->end(); evtRecPi0++) {
142 EvtRecPi0* ptr = *evtRecPi0;
143 TEvtRecPi0* evtRecPi0Root = new TEvtRecPi0();
144
145 // set ...
146 evtRecPi0Root->setUnconMass( ptr->unconMass() );
147 evtRecPi0Root->setChisq( ptr->chisq() );
148
149
150 HepLorentzVector hiP4=ptr->hiPfit();
151 HepLorentzVector loP4=ptr->loPfit();
152 evtRecPi0Root->setHiPxfit(hiP4.x());
153 evtRecPi0Root->setHiPyfit(hiP4.y());
154 evtRecPi0Root->setHiPzfit(hiP4.z());
155 evtRecPi0Root->setHiPefit(hiP4.t());
156
157 evtRecPi0Root->setLoPxfit(loP4.x());
158 evtRecPi0Root->setLoPyfit(loP4.y());
159 evtRecPi0Root->setLoPzfit(loP4.z());
160 evtRecPi0Root->setLoPefit(loP4.t());
161
162
163 // assert(evtRecTrackColbegin != evtRecTrackColend);
164 EvtRecTrackCol::iterator it = find(evtRecTrackColbegin,
165 evtRecTrackColend, ptr->hiEnGamma());
166 //assert(it != evtRecTrackColend);
167 evtRecPi0Root->setHiEnGamma(it - evtRecTrackColbegin );
168
169 // assert(evtRecTrackColbegin != evtRecTrackColend);
170 it = find(evtRecTrackColbegin,
171 evtRecTrackColend, ptr->loEnGamma() );
172 //assert(it != evtRecTrackColend);
173 evtRecPi0Root->setLoEnGamma(it - evtRecTrackColbegin );
174
175
176
177 recEvt->addEvtRecPi0(evtRecPi0Root);
178 }
179
180 return StatusCode::SUCCESS;
181}
virtual StatusCode TObjectToDataObject(DataObject *&obj)
transformation from root
virtual StatusCode DataObjectToTObject(DataObject *obj, RootAddress *addr)
transformation to root
void setLoPfit(const HepLorentzVector &loPfit)
void setHiPfit(const HepLorentzVector &hiPfit)
Definition of a Root address, derived from IOpaqueAddress.
std::vector< void * > m_adresses
each converter knows the corresponding adresses
std::string m_rootBranchname
root branchname (may be concatenated of severals)
virtual StatusCode createRep(DataObject *pObject, IOpaqueAddress *&refpAddress)
Convert the transient object to the requested representation.
static std::map< const TObject *, const EvtRecPi0 * > m_rootEvtRecPi0Map