BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/RootCnvSvc/RootCnvSvc-03-00-06/RootCnvSvc/Rec/RecZddChannelCnv.h
Go to the documentation of this file.
1#ifndef RecZddChannelCnv_H
2#define RecZddChannelCnv_H
3
4#include "RootCnvSvc/RootEventBaseCnv.h"
5#include "RootCnvSvc/commonData.h"
6
7class RootAddress;
8
9extern const CLID& CLID_RecZddChannelCol;
10
11// Abstract factory to create the converter
12template <class TYPE> class CnvFactory;
13
15{
16 friend class CnvFactory<RecZddChannelCnv>;
17
18 public :
19
20 static const CLID& classID() { return CLID_RecZddChannelCol; }
21
22 virtual ~RecZddChannelCnv() {}
23
24 protected :
25
26 RecZddChannelCnv(ISvcLocator* svc);
27
28 /// transformation to root
29 virtual StatusCode DataObjectToTObject(DataObject* obj, RootAddress* addr);
30
31 /// transformation from root
32 virtual StatusCode TObjectToDataObject(DataObject*& obj);
33
34 private :
35 /// relational maps
36 commonData m_common;
37
38 TObjArray* m_recZddChannelCol;
39};
40
41#endif
const CLID & CLID_RecZddChannelCol
Definition: EventModel.cxx:367
const CLID & CLID_RecZddChannelCol
Definition: EventModel.cxx:367
virtual StatusCode DataObjectToTObject(DataObject *obj, RootAddress *addr)
transformation to root
virtual StatusCode TObjectToDataObject(DataObject *&obj)
transformation from root
Definition of a Root address, derived from IOpaqueAddress.