BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/RootCnvSvc/RootCnvSvc-03-00-06/RootCnvSvc/Digi/MdcDigiCnv.h
Go to the documentation of this file.
1#ifndef MdcDigiCnv_H
2#define MdcDigiCnv_H 1
3
4#include "RootCnvSvc/RootEventBaseCnv.h"
5#include "RootCnvSvc/commonData.h"
6
7class RootAddress;
8
9extern const CLID& CLID_MdcDigiCol;
10
11// Abstract factory to create the converter
12template <class TYPE> class CnvFactory;
13
14/** @class MdcDigiCnv
15 * @brief Concrete converter for the MdcDigi collection
16 *
17 */
18
20
21 friend class CnvFactory<MdcDigiCnv>;
22
23public:
24 static const CLID& classID()
25 {
26 return CLID_MdcDigiCol;
27 }
28
29 virtual ~MdcDigiCnv() { };
30
31protected:
32 MdcDigiCnv(ISvcLocator* svc);
33
34 /// transformation to root
35 virtual StatusCode DataObjectToTObject(DataObject* obj, RootAddress* addr);
36
37 /// transformation from root
38 virtual StatusCode TObjectToDataObject(DataObject*& obj);
39
40private:
41 /// relational maps
42 commonData m_common;
43
44 /// root object to be read
45 TObjArray *m_mdcDigiCol;
46};
47
48
49
50#endif // MdcDigiCnv_H
51
52
53
54
55
56
57
58
59
const CLID & CLID_MdcDigiCol
Definition: EventModel.cxx:235
const CLID & CLID_MdcDigiCol
Definition: EventModel.cxx:235
Concrete converter for the MdcDigi collection.
virtual StatusCode TObjectToDataObject(DataObject *&obj)
transformation from root
Definition: MdcDigiCnv.cxx:38
virtual StatusCode DataObjectToTObject(DataObject *obj, RootAddress *addr)
transformation to root
Definition: MdcDigiCnv.cxx:82
Definition of a Root address, derived from IOpaqueAddress.