RootConverter.h
Go to the documentation of this file.
1 //====================================================================
2 // RootConverter class definition
3 //
4 // Author : M.Frank
5 //====================================================================
6 #ifndef GAUDIROOTCNV_ROOTCONVERTER_H
7 #define GAUDIROOTCNV_ROOTCONVERTER_H
8 
9 // Framework include files
10 #include "GaudiKernel/Converter.h"
11 #include "RootCnv/RootCnvSvc.h"
12 
13 /*
14  * Gaudi namespace declaration
15  */
16 namespace Gaudi {
17 
32  class GAUDI_API RootConverter : public Converter {
33  protected:
34 
36  RootCnvSvc* m_dbMgr;
37 
38  public:
39 
47  RootConverter(long typ, const CLID& clid, ISvcLocator* svc, RootCnvSvc* mgr)
48  : Converter(typ, clid, svc), m_dbMgr(mgr) {}
49 
51  virtual ~RootConverter() {}
52 
54  virtual long repSvcType() const { return i_repSvcType(); }
55 
63  virtual StatusCode createObj(IOpaqueAddress* pAddr, DataObject*& refpObj)
64  { return m_dbMgr->i__createObj(pAddr, refpObj); }
65 
74  { return m_dbMgr->i__fillObjRefs(pAddr, pObj); }
75 
84  virtual StatusCode createRep(DataObject* pObj, IOpaqueAddress*& refpAddr)
85  { return m_dbMgr->i__createRep(pObj, refpAddr); }
86 
95  { return m_dbMgr->i__fillRepRefs(pAddr, pObj); }
96  };
97 }
98 
99 #endif // GAUDIROOTCNV_ROOTCONVERTER_H
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
virtual ~RootConverter()
Standard Destructor.
Definition: RootConverter.h:51
#define GAUDI_API
Definition: Kernel.h:107
RootConverter(long typ, const CLID &clid, ISvcLocator *svc, RootCnvSvc *mgr)
Initializing Constructor.
Definition: RootConverter.h:47
Description:
Definition: RootCnvSvc.h:52
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
virtual long repSvcType() const
Retrieve the class type of the data store the converter uses.
Definition: RootConverter.h:54
virtual StatusCode fillRepRefs(IOpaqueAddress *pAddr, DataObject *pObj)
Resolve the references of the created transient object.
Definition: RootConverter.h:94
Converter base class.
Definition: Converter.h:24
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
virtual StatusCode fillObjRefs(IOpaqueAddress *pAddr, DataObject *pObj)
Resolve the references of the created transient object.
Definition: RootConverter.h:73
virtual StatusCode createObj(IOpaqueAddress *pAddr, DataObject *&refpObj)
Converter overrides: Create transient object from persistent data.
Definition: RootConverter.h:63
virtual StatusCode createRep(DataObject *pObj, IOpaqueAddress *&refpAddr)
Converter overrides: Convert the transient object to the requested representation.
Definition: RootConverter.h:84
Opaque address interface definition.
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30
Helper functions to set/get the application return code.
Definition: __init__.py:1