BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/RootCnvSvc/RootCnvSvc-03-00-06/RootCnvSvc/Dst/ExtTrackCnv.h
Go to the documentation of this file.
1#ifndef ExtTrackCnv_H
2#define ExtTrackCnv_H 1
3
4#include "RootCnvSvc/RootEventBaseCnv.h"
5#include "RootCnvSvc/commonData.h"
6
7class RootAddress;
8
9extern const CLID& CLID_DstExtTrackCol;
10
11// Abstract factory to create the converter
12template <class TYPE> class CnvFactory;
13
14
16
17 friend class CnvFactory<ExtTrackCnv>;
18
19public:
20 static const CLID& classID()
21 {
22 return CLID_DstExtTrackCol;
23 }
24
25 virtual ~ExtTrackCnv() { };
26
27protected:
28 ExtTrackCnv(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_extTrackCol;
42};
43
44
45
46#endif // ExtTrackCnv_H
const CLID & CLID_DstExtTrackCol
Definition: EventModel.cxx:271
const CLID & CLID_DstExtTrackCol
Definition: EventModel.cxx:271
virtual StatusCode DataObjectToTObject(DataObject *obj, RootAddress *addr)
transformation to root
virtual StatusCode TObjectToDataObject(DataObject *&obj)
transformation from root
Definition: ExtTrackCnv.cxx:50
Definition of a Root address, derived from IOpaqueAddress.