BOSS 7.0.8
BESIII Offline Software System
Loading...
Searching...
No Matches
HltCnv.h
Go to the documentation of this file.
1#ifndef HltCnv_H
2#define HltCnv_H 1
3
5
7#include "RootCnvSvc/commonData.h" //zoujh
8
9extern const CLID& CLID_HltEvent;
10
11// Abstract factory to create the converter
12template <class TYPE> class CnvFactory;
13
14/** @class HltCnv
15 * @brief Concrete converter for the Rec branch
16 *
17 * Based on the HltCnv of GLAST.
18 */
19
20class HltCnv : public RootEventBaseCnv {
21
22 friend class CnvFactory<HltCnv>;
23
24public:
25 static const CLID& classID()
26 {
27 return CLID_HltEvent;
28 }
29
30 virtual ~HltCnv() { };
31
32 virtual StatusCode initialize();
33
34 /// returns object to be written (maintained here for all DIGI-converters)
35 static THltEvent* getWriteObject() { return m_objWrite;};
36
37 protected:
38 HltCnv(ISvcLocator* svc);
39
40 /// transformation from TDS object to ROOT
41 virtual StatusCode DataObjectToTObject(DataObject* obj, RootAddress* addr);
42
43 /// do the transformation from ROOT to TDS object
44 virtual StatusCode TObjectToDataObject(DataObject*& refpObject);
45
46private:
47 /// Root object to be written
48 static THltEvent* m_objWrite;
49
50 /// Run number
51 Int_t m_runId;
52 /// Event Number
53 Int_t m_eventId;
54
55 /// Denote whether or not this data was simulated
56 Bool_t m_fromMc;
57
58 commonData m_common; //zoujh
59
60};
61
62#endif // HltCnv_H
const CLID & CLID_HltEvent
Definition: EventModel.cxx:283
Concrete converter for the Rec branch.
Definition: HltCnv.h:20
virtual ~HltCnv()
Definition: HltCnv.h:30
virtual StatusCode DataObjectToTObject(DataObject *obj, RootAddress *addr)
transformation from TDS object to ROOT
Definition: HltCnv.cxx:73
virtual StatusCode TObjectToDataObject(DataObject *&refpObject)
do the transformation from ROOT to TDS object
Definition: HltCnv.cxx:51
static THltEvent * getWriteObject()
returns object to be written (maintained here for all DIGI-converters)
Definition: HltCnv.h:35
virtual StatusCode initialize()
Definition: HltCnv.cxx:38
static const CLID & classID()
Definition: HltCnv.h:25
Definition of a Root address, derived from IOpaqueAddress.
Definition: RootAddress.h:21
Base class for all Root Converters.