CGEM BOSS 6.6.5.h
BESIII Offline Software System
Loading...
Searching...
No Matches
TofDigiCnv.h
Go to the documentation of this file.
1#ifndef TofDigiCnv_H
2#define TofDigiCnv_H 1
3
6
7class RootAddress;
8
9extern const CLID& CLID_TofDigiCol;
10
11// Abstract factory to create the converter
12template <class TYPE> class CnvFactory;
13
14
16
17 friend class CnvFactory<TofDigiCnv>;
18
19public:
20 static const CLID& classID()
21 {
22 return CLID_TofDigiCol;
23 }
24
25 virtual ~TofDigiCnv() { };
26
27protected:
28 TofDigiCnv(ISvcLocator* svc);
29
30 /// transformation to root
31 virtual StatusCode DataObjectToTObject(DataObject* obj, RootAddress* addr);
32
33 /// transformation from root
34 virtual StatusCode TObjectToDataObject(DataObject*& obj);
35
36private:
37 /// relational maps
38 commonData m_common;
39
40 /// root object to be read
41 TObjArray *m_tofDigiCol;
42};
43
44
45
46#endif // TofDigiCnv_H
47
48
49
50
51
52
53
54
55
const CLID & CLID_TofDigiCol
Definition of a Root address, derived from IOpaqueAddress.
Definition RootAddress.h:21
Base class for all Root Converters.
virtual StatusCode DataObjectToTObject(DataObject *obj, RootAddress *addr)
transformation to root
TofDigiCnv(ISvcLocator *svc)
virtual ~TofDigiCnv()
Definition TofDigiCnv.h:25
static const CLID & classID()
Definition TofDigiCnv.h:20
virtual StatusCode TObjectToDataObject(DataObject *&obj)
transformation from root