BOSS 7.0.4
BESIII Offline Software System
Loading...
Searching...
No Matches
RecEmcShowerCnv Class Reference

#include <RecEmcShowerCnv.h>

+ Inheritance diagram for RecEmcShowerCnv:

Public Member Functions

virtual ~RecEmcShowerCnv ()
 
virtual ~RecEmcShowerCnv ()
 
- Public Member Functions inherited from RootEventBaseCnv
 RootEventBaseCnv (const CLID &clid, ISvcLocator *svc)
 
virtual ~RootEventBaseCnv ()
 
virtual long repSvcType () const
 
virtual StatusCode initialize ()
 
virtual StatusCode finalize ()
 
void declareObject (const std::string &fullPath, const CLID &clid, const std::string &treename, const std::string &branchname)
 Store TDS path to link a particular converter to an object on the TDS.
 
virtual StatusCode createObj (IOpaqueAddress *addr, DataObject *&dat)
 Convert the persistent object to transient.
 
virtual StatusCode createRep (DataObject *pObject, IOpaqueAddress *&refpAddress)
 Convert the transient object to the requested representation.
 
virtual StatusCode fillRepRefs (IOpaqueAddress *pAddress, DataObject *pObject)
 Resolve the references of the converted object.
 
virtual StatusCode fillObjRefs (IOpaqueAddress *pAddress, DataObject *pObject)
 Resolve the references of the converted object.
 
virtual StatusCode DataObjectToTObject (DataObject *dat, RootAddress *addr)=0
 Do the concrete conversion from TDS to ROOT.
 
virtual StatusCode TObjectToDataObject (DataObject *&dat)=0
 Do the concrete conversion from ROOT to TDS.
 
TObject * getReadObject () const
 get the object to be read
 
 RootEventBaseCnv (const CLID &clid, ISvcLocator *svc)
 
virtual ~RootEventBaseCnv ()
 
virtual long repSvcType () const
 
virtual StatusCode initialize ()
 
virtual StatusCode finalize ()
 
void declareObject (const std::string &fullPath, const CLID &clid, const std::string &treename, const std::string &branchname)
 Store TDS path to link a particular converter to an object on the TDS.
 
virtual StatusCode createObj (IOpaqueAddress *addr, DataObject *&dat)
 Convert the persistent object to transient.
 
virtual StatusCode createRep (DataObject *pObject, IOpaqueAddress *&refpAddress)
 Convert the transient object to the requested representation.
 
virtual StatusCode fillRepRefs (IOpaqueAddress *pAddress, DataObject *pObject)
 Resolve the references of the converted object.
 
virtual StatusCode fillObjRefs (IOpaqueAddress *pAddress, DataObject *pObject)
 Resolve the references of the converted object.
 
virtual StatusCode DataObjectToTObject (DataObject *dat, RootAddress *addr)=0
 Do the concrete conversion from TDS to ROOT.
 
virtual StatusCode TObjectToDataObject (DataObject *&dat)=0
 Do the concrete conversion from ROOT to TDS.
 
TObject * getReadObject () const
 get the object to be read
 
- Public Member Functions inherited from Converter< Ty1, Ty2 >
destinationoperator (const source &) const
 
destinationoperator (const source &) const
 

Static Public Member Functions

static const CLID & classID ()
 
static const CLID & classID ()
 
- Static Public Member Functions inherited from RootEventBaseCnv
static const unsigned char storageType ()
 Storage type and class ID.
 
static const unsigned char storageType ()
 Storage type and class ID.
 

Protected Member Functions

 RecEmcShowerCnv (ISvcLocator *svc)
 
virtual StatusCode DataObjectToTObject (DataObject *obj, RootAddress *addr)
 transformation to root
 
virtual StatusCode TObjectToDataObject (DataObject *&obj)
 transformation from root
 
 RecEmcShowerCnv (ISvcLocator *svc)
 
virtual StatusCode DataObjectToTObject (DataObject *obj, RootAddress *addr)
 transformation to root
 
virtual StatusCode TObjectToDataObject (DataObject *&obj)
 transformation from root
 
- Protected Member Functions inherited from Converter< Ty1, Ty2 >
virtual destinationconvert (const source &) const =0
 
virtual destinationconvert (const source &) const =0
 

Friends

class CnvFactory< RecEmcShowerCnv >
 

Additional Inherited Members

- Public Types inherited from Converter< Ty1, Ty2 >
typedef Ty1 source
 
typedef Ty2 destination
 
typedef Ty1 source
 
typedef Ty2 destination
 
- Protected Attributes inherited from RootEventBaseCnv
RootCnvSvcm_cnvSvc
 
std::vector< RootCnvSvc::Leafm_leaves
 
RootInterfacem_rootInterface
 pointer to the RootInterface
 
IDataProviderSvc * m_eds
 pointer to eventdataservice
 
int m_branchNr
 the branchNr of this converter for writing
 
int m_branchNrDst
 
int m_branchNrMc
 
int m_branchNrRecon
 
int m_branchNrEvtRec
 
int m_branchNrEvtHeader
 
int m_branchNrEvtNavigator
 
TObject * m_objRead
 the object that was read
 
CLID CLID_top
 the CLID of the upper converter if any
 
TArrayS * m_branchNumbers
 array with number of branches for reading
 
std::string m_rootBranchname
 root branchname (may be concatenated of severals)
 
std::string m_rootTreename
 each converter knows it's treename
 
std::string m_currentFileName
 
std::vector< void * > m_adresses
 each converter knows the corresponding adresses
 
RootEvtSelectorm_evtsel
 

Detailed Description

Constructor & Destructor Documentation

◆ ~RecEmcShowerCnv() [1/2]

virtual RecEmcShowerCnv::~RecEmcShowerCnv ( )
inlinevirtual

◆ RecEmcShowerCnv() [1/2]

RecEmcShowerCnv::RecEmcShowerCnv ( ISvcLocator *  svc)
protected

Definition at line 34 of file RecEmcShowerCnv.cxx.

36{
37
38 RecEmcShower *aShower = new RecEmcShower();
39 //cout<<"in RecEmcShowerCnv::constructor:: showid= "<<aShower->clID()<<endl;
40 delete aShower;
41
42 // Here we associate this converter with the /Event path on the TDS.
43 MsgStream log(msgSvc(), "RecEmcShowerCnv");
44 //log << MSG::DEBUG << "Constructor called for " << objType() << endreq;
45 //m_rootTreename ="Rec";
46 m_rootBranchname ="m_recEmcShowerCol";
47 //declareObject(EventModel::Recon::RecEmcShowerCol, objType(), m_rootTreename, m_rootBranchname);
48 m_adresses.push_back(&m_recEmcShowerCol);
49 m_recEmcShowerCol=0;
50}
std::vector< void * > m_adresses
each converter knows the corresponding adresses
std::string m_rootBranchname
root branchname (may be concatenated of severals)

◆ ~RecEmcShowerCnv() [2/2]

virtual RecEmcShowerCnv::~RecEmcShowerCnv ( )
inlinevirtual

◆ RecEmcShowerCnv() [2/2]

RecEmcShowerCnv::RecEmcShowerCnv ( ISvcLocator *  svc)
protected

Member Function Documentation

◆ classID() [1/2]

static const CLID & RecEmcShowerCnv::classID ( )
inlinestatic

Definition at line 20 of file Event/RootCnvSvc/RootCnvSvc-02-01-13/RootCnvSvc/Rec/RecEmcShowerCnv.h.

21 {
23 }
const CLID & CLID_RecEmcShowerCol
Definition: EventModel.cxx:318

◆ classID() [2/2]

static const CLID & RecEmcShowerCnv::classID ( )
inlinestatic

◆ DataObjectToTObject() [1/2]

StatusCode RecEmcShowerCnv::DataObjectToTObject ( DataObject *  obj,
RootAddress addr 
)
protectedvirtual

transformation to root

Implements RootEventBaseCnv.

Definition at line 223 of file RecEmcShowerCnv.cxx.

224{
225 MsgStream log(msgSvc(), "RecEmcShowerCnv");
226 log << MSG::DEBUG << "RecEmcShowerCnv::DataObjectToTObject" << endreq;
227 //cout << "RecEmcShowerCnv::DataObjectToTObject" << endl;
228 StatusCode sc=StatusCode::SUCCESS;
229
230 RecEmcShowerCol * emcShowerColTds=dynamic_cast<RecEmcShowerCol *> (obj);
231 if (!emcShowerColTds) {
232 log << MSG::ERROR << "Could not downcast to RecEmcShowerCol" << endreq;
233 return StatusCode::FAILURE;
234 }
235
236 DataObject *evt;
237 m_eds->findObject(EventModel::Recon::Event,evt);
238 if (evt==NULL) {
239 log << MSG::ERROR << "Could not get RecEvent in TDS " << endreq;
240 return StatusCode::FAILURE;
241 }
242 ReconEvent * devtTds=dynamic_cast<ReconEvent *> (evt);
243 if (!devtTds) {
244 log << MSG::ERROR << "RecEmcShowerCnv:Could not downcast to TDS DstEvent" << endreq;
245 }
246 IOpaqueAddress *addr;
247
248 m_cnvSvc->getRecTrackCnv()->createRep(evt,addr);
250
251 const TObjArray *m_emcShowerCol = recEvt->getEmcShowerCol();
252 if (!m_emcShowerCol) return sc;
253 recEvt->clearEmcShowerCol(); //necessary in case there is I/O at the same time since array is static
254 RecEmcShowerCol::const_iterator emcShowerTds;
255
256 for (emcShowerTds = emcShowerColTds->begin(); emcShowerTds != emcShowerColTds->end(); emcShowerTds++) {
257 Int_t trackId = (*emcShowerTds)->trackId();
258 Int_t numHits = (*emcShowerTds)->numHits();
259 Int_t status =(*emcShowerTds)->status();
260 Int_t cellId =(*emcShowerTds)->getShowerId();
261 Int_t clusterId = (*emcShowerTds)->getClusterId();
262 Int_t module =(*emcShowerTds)->module();
263 Double_t x = (*emcShowerTds)->x();
264 Double_t y = (*emcShowerTds)->y();
265 Double_t z = (*emcShowerTds)->z();
266 Double_t theta = (*emcShowerTds)->theta();
267 Double_t dtheta =(*emcShowerTds)->dtheta();
268 Double_t phi =(*emcShowerTds)->phi();
269 Double_t dphi =(*emcShowerTds)->dphi();
270 Double_t energy = (*emcShowerTds)->energy();
271 Double_t dE = (*emcShowerTds)->dE();
272 Double_t eSeed = (*emcShowerTds)->eSeed();
273 Double_t e3x3 = (*emcShowerTds)->e3x3();
274 Double_t e5x5 = (*emcShowerTds)->e5x5();
275 Double_t eall = (*emcShowerTds)->getEAll();
276 Double_t elepton = (*emcShowerTds)->getELepton();
277 Double_t time = (Int_t)(*emcShowerTds)->time();
278 Double_t secondMoment = (*emcShowerTds)->secondMoment();
279 Double_t latMoment = (*emcShowerTds)->latMoment();
280 Double_t a20Moment = (*emcShowerTds)->a20Moment();
281 Double_t a42Moment = (*emcShowerTds)->a42Moment();
282
283 HepSymMatrix matrix = (*emcShowerTds)->errorMatrix();
284 //cout<<"matrix: \n"<<matrix<<endl;
285 Double_t err[6];
286 err[0] = matrix[0][0];
287 err[1] = matrix[1][1];
288 err[2] = matrix[2][2];
289 err[3] = matrix[0][1];
290 err[4] = matrix[0][2];
291 err[5] = matrix[1][2];
292
293 map<Int_t, Double_t> cellIdMap;
294 RecEmcFractionMap::const_iterator pFractionMap;
295
296 for(pFractionMap=(*emcShowerTds)->Begin();
297 pFractionMap!=(*emcShowerTds)->End();
298 pFractionMap++) {
299 Int_t id = pFractionMap->first;
300 Double_t frac = pFractionMap->second.getFraction();
301 cellIdMap[id]=frac;
302 }
303
304 vector<Int_t> cellId3x3;
305 RecEmcIDVector id3x3 = (*emcShowerTds)->getCellId3x3();
306 ci_RecEmcIDVector ciCellId;
307 for(ciCellId=id3x3.begin();
308 ciCellId!=id3x3.end();
309 ciCellId++) {
310 Int_t id = *ciCellId;
311 cellId3x3.push_back(id);
312 }
313
314 vector<Int_t> cellId5x5;
315 RecEmcIDVector id5x5 = (*emcShowerTds)->getCellId5x5();
316 for(ciCellId=id5x5.begin();
317 ciCellId!=id5x5.end();
318 ciCellId++) {
319 Int_t id = *ciCellId;
320 cellId5x5.push_back(id);
321 }
322
323 TRecEmcShower *emcShowerRoot = new TRecEmcShower();
324 //m_common.m_recEmcShowerMap[(*emcShowerTds)] = emcShowerRoot;
325
326 //emcShowerRoot->initialize(numHits ,status ,cellId ,module ,x ,dx,y ,dy,z ,dz,theta ,dtheta ,phi,dphi ,energy ,dE,cosx ,cosy ,cosz);
327 emcShowerRoot->setTrackId(trackId );
328 emcShowerRoot->setNumHits(numHits );
329 emcShowerRoot->setStatus(status );
330 emcShowerRoot->setCellId( cellId );
331 emcShowerRoot->setClusterId( clusterId );
332 emcShowerRoot->setModule( module);
333 emcShowerRoot->setX( x );
334 emcShowerRoot->setY( y );
335 emcShowerRoot->setZ( z );
336 emcShowerRoot->setEnergy( energy );
337 emcShowerRoot->setDE( dE );
338 emcShowerRoot->setTheta( theta );
339 emcShowerRoot->setDtheta( dtheta );
340 emcShowerRoot->setPhi( phi );
341 emcShowerRoot->setDphi( dphi );
342 emcShowerRoot->setESeed( eSeed );
343 emcShowerRoot->setE3x3( e3x3 );
344 emcShowerRoot->setE5x5( e5x5 );
345 emcShowerRoot->setEAll( eall );
346 emcShowerRoot->setELepton( elepton );
347 emcShowerRoot->setTime( time );
348 emcShowerRoot->setSecondMoment(secondMoment);
349 emcShowerRoot->setLatMoment(latMoment);
350 emcShowerRoot->setA20Moment(a20Moment);
351 emcShowerRoot->setA42Moment(a42Moment);
352 emcShowerRoot->setErr( err );
353 //emcShowerRoot->setVecHits(vecHits);
354
355 emcShowerRoot->setCellIdMap(cellIdMap);
356 emcShowerRoot->setCellId3x3(cellId3x3);
357 emcShowerRoot->setCellId5x5(cellId5x5);
358
359 recEvt->addEmcShower(emcShowerRoot);
360 }
361 return StatusCode::SUCCESS;
362}
Double_t x[10]
Double_t time
************Class m_ypar INTEGER m_KeyWgt INTEGER m_KeyIHVP INTEGER m_KeyGPS INTEGER m_IsBeamPolarized INTEGER m_EvtGenInterface DOUBLE PRECISION m_Emin DOUBLE PRECISION m_sphot DOUBLE PRECISION m_Xenph DOUBLE PRECISION m_q2 DOUBLE PRECISION m_PolBeam2 DOUBLE PRECISION m_xErrPb *COMMON c_KK2f $ !CMS energy average $ !Spin Polarization vector first beam $ !Spin Polarization vector second beam $ !Beam energy spread[GeV] $ !minimum hadronization energy[GeV] $ !input READ never touch them !$ !debug facility $ !maximum weight $ !inverse alfaQED $ !minimum real photon energy
Definition: KK2f.h:50
static TRecTrackEvent * getWriteObject()
returns object to be written (maintained here for all DIGI-converters)
IDataProviderSvc * m_eds
pointer to eventdataservice
virtual StatusCode createRep(DataObject *pObject, IOpaqueAddress *&refpAddress)
Convert the transient object to the requested representation.
void setCellIdMap(const map< Int_t, Double_t > &cellIdMap)
void setErr(const Double_t err[6])
void clearEmcShowerCol()
clear the whole array (necessary because of the consts-s) *‍/
void addEmcShower(TRecEmcShower *Track)
Add a TkrTrack into the Emc data collection *‍/.
const TObjArray * getEmcShowerCol() const
retrieve the whole TObjArray of EmcShower Data

◆ DataObjectToTObject() [2/2]

virtual StatusCode RecEmcShowerCnv::DataObjectToTObject ( DataObject *  obj,
RootAddress addr 
)
protectedvirtual

transformation to root

Implements RootEventBaseCnv.

◆ TObjectToDataObject() [1/2]

StatusCode RecEmcShowerCnv::TObjectToDataObject ( DataObject *&  obj)
protectedvirtual

transformation from root

Implements RootEventBaseCnv.

Definition at line 52 of file RecEmcShowerCnv.cxx.

52 {
53 // creation of TDS object from root object
54
55 MsgStream log(msgSvc(), "RecEmcShowerCnv");
56 log << MSG::DEBUG << "RecEmcShowerCnv::TObjectToDataObject" << endreq;
57 //cout << "RecEmcShowerCnv::TObjectToDataObject" << endl;
58 StatusCode sc=StatusCode::SUCCESS;
59
60 IDataProviderSvc* eventSvc;
61 Gaudi::svcLocator()->service("EventDataSvc", eventSvc);
62
63 SmartDataPtr<RecEmcHitCol> emcRecHitCol(eventSvc,
65 if(!emcRecHitCol) log << MSG::INFO << "can't retrieve RecEmcHitCol" << endreq;
66
67 SmartDataPtr<RecEmcClusterCol> emcRecClusterCol(eventSvc,
69 if(!emcRecClusterCol) log << MSG::INFO << "can't retrieve RecEmcClusterCol" << endreq;
70
71 // create the TDS location for the RecEmcShower Collection
72 RecEmcShowerCol* emcShowerTdsCol = new RecEmcShowerCol;
73 refpObject=emcShowerTdsCol;
74
75 // now convert
76 if (!m_recEmcShowerCol) return sc;
77 TIter emcShowerIter(m_recEmcShowerCol);
78 TRecEmcShower *emcShowerRoot = 0;
79 while ((emcShowerRoot = (TRecEmcShower*)emcShowerIter.Next())) {
80 int trackId = emcShowerRoot->trackId();
81 int numHits = emcShowerRoot->numHits();
82 int status = emcShowerRoot->status();
83 int cellId = emcShowerRoot->cellId();
84 int module = emcShowerRoot->module();
85 double x = emcShowerRoot->x();
86 double y = emcShowerRoot->y();
87 double z = emcShowerRoot->z();
88 double theta = emcShowerRoot->theta();
89 double dtheta = emcShowerRoot->dtheta();
90 double phi = emcShowerRoot->phi();
91 double dphi = emcShowerRoot->dphi();
92 double energy = emcShowerRoot->energy();
93 double dE = emcShowerRoot->dE();
94 double eSeed = emcShowerRoot->eSeed();
95 double e3x3 = emcShowerRoot->e3x3();
96 double e5x5 = emcShowerRoot->e5x5();
97 double eall = emcShowerRoot->eAll();
98 double elepton = emcShowerRoot->eLepton();
99 double time = emcShowerRoot->time();
100 double secondMoment = emcShowerRoot->secondMoment();
101 double latMoment = emcShowerRoot->latMoment();
102 double a20Moment = emcShowerRoot->a20Moment();
103 double a42Moment = emcShowerRoot->a42Moment();
104
105 HepSymMatrix matrix(3);
106 matrix[0][0]=emcShowerRoot->err(0);
107 matrix[1][1]=emcShowerRoot->err(1);
108 matrix[2][2]=emcShowerRoot->err(2);
109 matrix[0][1]=emcShowerRoot->err(3);
110 matrix[0][2]=emcShowerRoot->err(4);
111 matrix[1][2]=emcShowerRoot->err(5);
112
113 RecEmcID showerId(cellId);
114 RecEmcID clusterId(emcShowerRoot->clusterId());
115
116 RecEmcIDVector id3x3;
117 vector<Int_t> cellId3x3 = emcShowerRoot->cellId3x3();
118 vector<Int_t>::iterator iCellId;
119 //cout<<"id3x3"<<endl;
120 for(iCellId=cellId3x3.begin();
121 iCellId!=cellId3x3.end();
122 iCellId++) {
123 RecEmcID id(*iCellId);
124 //cout<<"id="<<id<<endl;
125 id3x3.push_back(id);
126 }
127
128 RecEmcIDVector id5x5;
129 vector<Int_t> cellId5x5 = emcShowerRoot->cellId5x5();
130 //cout<<"id5x5"<<endl;
131 for(iCellId=cellId5x5.begin();
132 iCellId!=cellId5x5.end();
133 iCellId++) {
134 RecEmcID id(*iCellId);
135 //cout<<"id="<<id<<endl;
136 id5x5.push_back(id);
137 }
138
139 RecEmcShower *emcShowerTds = new RecEmcShower();
140 m_common.m_rootRecEmcShowerMap[emcShowerRoot] = emcShowerTds;
141
142 emcShowerTds->setTrackId(trackId );
143 emcShowerTds->setNumHits(numHits );
144 emcShowerTds->setStatus(status );
145 emcShowerTds->setCellId( cellId );
146 emcShowerTds->setModule( module);
147
148 HepPoint3D pos(x,y,z);
149 emcShowerTds->setPosition(pos);
150 emcShowerTds->setEnergy( energy );
151 emcShowerTds->setDE( dE );
152 emcShowerTds->setDtheta( dtheta );
153 emcShowerTds->setDphi( dphi );
154 emcShowerTds->setESeed(eSeed);
155 emcShowerTds->setE3x3(e3x3);
156 emcShowerTds->setE5x5(e5x5);
157 emcShowerTds->EAll(eall);
158 emcShowerTds->ELepton(elepton);
159 emcShowerTds->setTime(time);
160 emcShowerTds->setSecondMoment(secondMoment);
161 emcShowerTds->setLatMoment(latMoment);
162 emcShowerTds->setA20Moment(a20Moment);
163 emcShowerTds->setA42Moment(a42Moment);
164 emcShowerTds->setErrorMatrix( matrix );
165
166 emcShowerTds->ShowerId(showerId);
167 emcShowerTds->ClusterId(clusterId);
168 emcShowerTds->CellId3x3(id3x3);
169 emcShowerTds->CellId5x5(id5x5);
170
171 //put fraction map into shower
172 if(emcRecHitCol) {
173 map<Int_t, Double_t> cellIdMap=emcShowerRoot->cellIdMap();
174 map<Int_t, Double_t>::iterator iCellIdMap;
175 for(iCellIdMap=cellIdMap.begin();
176 iCellIdMap!=cellIdMap.end();
177 iCellIdMap++) {
178
179 RecEmcID id(iCellIdMap->first);
180
181 RecEmcHitCol::iterator iHit;
182 for(iHit=emcRecHitCol->begin();
183 iHit!=emcRecHitCol->end();
184 iHit++) {
185
186 RecEmcID idHit((*iHit)->getCellId());
187
188 if(id==idHit) {
189 RecEmcFraction frac(*(*iHit));
190 frac.Fraction(iCellIdMap->second);
191 emcShowerTds->Insert(frac);
192 break;
193 }
194 } //RecEmcHitCol
195 } //CellIdMap
196 }
197
198 if(emcRecClusterCol) {
199 RecEmcClusterCol::iterator iCluster;
200 for(iCluster=emcRecClusterCol->begin();
201 iCluster!=emcRecClusterCol->end();
202 iCluster++) {
203 if(clusterId==(*iCluster)->getClusterId()) {
204 emcShowerTds->Cluster(*iCluster);
205 break;
206 //emcRecClusterCol->InsertShower(*iCluster);
207 }
208 }
209 }
210
211 emcShowerTdsCol->push_back(emcShowerTds);
212 // delete emcShowerTds;
213 // emcShowerTds = NULL;
214 }
215
216 //m_recEmcShowerCol->Delete(); // wensp add 2005/12/30
217 delete m_recEmcShowerCol;
218 m_recEmcShowerCol = 0;
219
220 return StatusCode::SUCCESS;
221}
void setErrorMatrix(const HepSymMatrix &error)
void CellId3x3(RecEmcIDVector &id3x3)
RecEmcEnergy EAll(RecEmcEnergy e)
RecEmcEnergy ELepton(RecEmcEnergy e)
void ClusterId(const RecEmcID id)
RecEmcID ShowerId(RecEmcID id)
void Cluster(RecEmcCluster *pCluster)
void Insert(const RecEmcFraction &aFraction)
void CellId5x5(RecEmcIDVector &id5x5)
static std::map< const TObject *, const RecEmcShower * > m_rootRecEmcShowerMap

◆ TObjectToDataObject() [2/2]

virtual StatusCode RecEmcShowerCnv::TObjectToDataObject ( DataObject *&  obj)
protectedvirtual

transformation from root

Implements RootEventBaseCnv.

Friends And Related Function Documentation

◆ CnvFactory< RecEmcShowerCnv >


The documentation for this class was generated from the following files: