BOSS 7.0.6
BESIII Offline Software System
Loading...
Searching...
No Matches
HltInfCnv.h
Go to the documentation of this file.
1#ifndef HltInfCnv_H
2#define HltInfCnv_H 1
3
7
8class RootAddress;
9
10extern const CLID& CLID_HltInf;
11
12// Abstract factory to create the converter
13template <class TYPE> class CnvFactory;
14
15/** @class HltInfCnv
16 * @brief Concrete converter for the HltInf
17 *
18 */
19
20class HltInfCnv : public RootEventBaseCnv {
21
22 friend class CnvFactory<HltInfCnv>;
23
24public:
25 static const CLID& classID()
26 {
27 return CLID_HltInf;
28 }
29
30 virtual ~HltInfCnv() { };
31
32protected:
33 HltInfCnv(ISvcLocator* svc);
34
35 /// transformation to root
36 virtual StatusCode DataObjectToTObject(DataObject* obj, RootAddress* addr);
37
38 /// transformation from root
39 virtual StatusCode TObjectToDataObject(DataObject*& obj);
40
41private:
42
43 /// root object to be read
44 THltInf *m_hltInf;
45
46 /// old version flag
47 bool m_old;
48};
49
50#endif // MdcMcCnv_H
const CLID & CLID_HltInf
Definition: EventModel.cxx:286
Concrete converter for the HltInf.
Definition: HltInfCnv.h:20
static const CLID & classID()
Definition: HltInfCnv.h:25
virtual ~HltInfCnv()
Definition: HltInfCnv.h:30
virtual StatusCode TObjectToDataObject(DataObject *&obj)
transformation from root
Definition: HltInfCnv.cxx:36
virtual StatusCode DataObjectToTObject(DataObject *obj, RootAddress *addr)
transformation to root
Definition: HltInfCnv.cxx:135
Definition of a Root address, derived from IOpaqueAddress.
Definition: RootAddress.h:21
Base class for all Root Converters.
Definition: THltInf.h:9