BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/RootCnvSvc/include/RootCnvSvc/Trig/TrigCnv.h
Go to the documentation of this file.
1#ifndef TrigCnv_H
2#define TrigCnv_H 1
3
4#include "RootCnvSvc/RootEventBaseCnv.h"
5
6#include "RootCnvSvc/commonData.h" //zoujh
7#include "RootEventData/TTrigEvent.h"
8
9extern const CLID& CLID_TrigEvent;
10
11// Abstract factory to create the converter
12template <class TYPE> class CnvFactory;
13
14/** @class TrigCnv
15 * @brief Concrete converter for the Rec branch
16 *
17 * Based on the TrigCnv of GLAST.
18 */
19
20class TrigCnv : public RootEventBaseCnv {
21
22 friend class CnvFactory<TrigCnv>;
23
24public:
25 static const CLID& classID() { return CLID_TrigEvent; }
26
27 virtual ~TrigCnv(){};
28
29 virtual StatusCode initialize();
30
31 /// returns object to be written (maintained here for all DIGI-converters)
32 static TTrigEvent* getWriteObject() { return m_objWrite; }
33
34 TrigCnv( ISvcLocator* svc );
35
36 /// transformation from TDS object to ROOT
37 virtual StatusCode DataObjectToTObject( DataObject* obj, RootAddress* addr );
38
39 /// do the transformation from ROOT to TDS object
40 virtual StatusCode TObjectToDataObject( DataObject*& refpObject );
41
42private:
43 /// Root object to be written
44 static TTrigEvent* m_objWrite;
45
46 /// Run number
47 Int_t m_runId;
48 /// Event Number
49 Int_t m_eventId;
50
51 /// Denote whether or not this data was simulated
52 Bool_t m_fromMc;
53
54 commonData m_common; // zoujh
55};
56
57#endif // TrigCnv_H
const CLID & CLID_TrigEvent
Definition of a Root address, derived from IOpaqueAddress.
RootEventBaseCnv(const CLID &clid, ISvcLocator *svc)
TrigCnv(ISvcLocator *svc)
Definition TrigCnv.cxx:26
virtual StatusCode initialize()
Definition TrigCnv.cxx:35
virtual StatusCode DataObjectToTObject(DataObject *obj, RootAddress *addr)
transformation from TDS object to ROOT
Definition TrigCnv.cxx:69
virtual StatusCode TObjectToDataObject(DataObject *&refpObject)
do the transformation from ROOT to TDS object
Definition TrigCnv.cxx:47
static TTrigEvent * getWriteObject()
returns object to be written (maintained here for all DIGI-converters)