BOSS 7.1.0
BESIII Offline Software System
Loading...
Searching...
No Matches
RawDataMucMcHitCnv.h
Go to the documentation of this file.
1//====================================================================
2// RawDataMucMcHitCnv.h
3//====================================================================
4//
5// Description:
6// RawDataMucMcHitCnv is the concrete converter for
7// the event on the TDS /Event/MC/MucMcHitCol
8//
9//--------------------------------------------------------------------
10
11#ifndef RAWDATA_MUCMCHIT_CNV_H
12#define RAWDATA_MUCMCHIT_CNV_H
13
14// Include files.
15#include "GaudiKernel/Converter.h"
19
22
23// Forward declarations.
24class IOpaqueAddress;
25class DataObject;
26class StatusCode;
28
29// Converter Factory to create instances of this class.
30template <class TYPE> class CnvFactory;
31
33{
34
35 // Declaration of a Converter Factory to create instances of this class.
36 friend class CnvFactory<RawDataMucMcHitCnv>;
37protected:
38 // Standard Constructor.
39 RawDataMucMcHitCnv(ISvcLocator* svc);
40public:
41 StatusCode initialize();
42
43 // Return the class type of this converter.
44 static const CLID& classID();
45
46 virtual long repSvcType() const {
48 }
49
50 static const unsigned char storageType() {
52 }
53
54 // Create a converted object in the Transient Data Store.
55 StatusCode createObj(IOpaqueAddress* pAddr, DataObject*& pObj);
56
57 /// override the RawDataBaseCnv version
58 virtual StatusCode updateObj(IOpaqueAddress*, DataObject*);
59
60 virtual StatusCode createRep(DataObject* pObj, IOpaqueAddress*& pAddr);
61
62private:
63
64 IRawDataInputSvc* m_inputSvc;
65 /// Define the interface to raw data cnv
66 PackedRawDataCnvSvc* m_RawDataAccess;
67 /// MucMcHitder for packing or unpacking data
68 MucMcHitBuilder m_mucMcHitBuilder;
69
70};
71
72#endif // RAWDATA_MUCMCHIT_CNV_H
unsigned const long PACKEDRAWEVENT_StorageType
Definition: ClassID_temp.h:17
static const unsigned char storageType()
virtual long repSvcType() const
StatusCode createObj(IOpaqueAddress *pAddr, DataObject *&pObj)
virtual StatusCode updateObj(IOpaqueAddress *, DataObject *)
override the RawDataBaseCnv version
virtual StatusCode createRep(DataObject *pObj, IOpaqueAddress *&pAddr)
Convert the transient object to the requested representation.
static const CLID & classID()