RNTupleCnv.h
Go to the documentation of this file.
1 #ifndef ROOTHISTCNV_RNTUPLECNV_H
2 #define ROOTHISTCNV_RNTUPLECNV_H 1
3 
4 // Include files
5 #include "RConverter.h"
6 
7 // Forward declarations
8 class ISvcLocator;
9 class NTUPLEINFO;
10 class INTupleItem;
11 class INTupleSvc;
12 class INTuple;
13 class TTree;
14 
15 namespace RootHistCnv {
16 
24  class RNTupleCnv : public RConverter {
25  public:
27  StatusCode initialize() override;
29  StatusCode finalize() override;
30 
32  StatusCode createObj(IOpaqueAddress* pAddr, DataObject*& refpObj) override;
34  StatusCode updateObj( IOpaqueAddress* pAddr, DataObject* refpObj) override;
36  StatusCode createRep( DataObject* pObj, IOpaqueAddress*& refpAddr) override;
38  StatusCode updateRep( IOpaqueAddress* pAddr, DataObject* pObj) override;
39 
40  protected:
42  RNTupleCnv( ISvcLocator* svc, const CLID& clid );
43 
45  ~RNTupleCnv() override = default;
46 
48  virtual StatusCode load(TTree* tree, INTuple*& refpObj ) = 0;
50  virtual StatusCode book(const std::string& desc, INTuple* pObj, TTree*& tree) = 0;
52  virtual StatusCode writeData(TTree* rtree, INTuple* pObj) = 0;
54  virtual StatusCode readData(TTree* rtree, INTuple* pObj, long ievt) = 0;
55 
56  protected:
59 
60  virtual std::string rootVarType(int);
61  };
62 
64  template<class TYP>
65  INTupleItem* createNTupleItem(NTUPLEINFO& tags, long i, INTuple* tuple, TYP minimum, TYP maximum, long& size);
66 
67  template<class TYP>
69  std::string indexName,
70  int indexRange, int arraySize,
71  TYP minimum, TYP maximum,
72  INTuple* tuple);
73 
74  bool parseName(const std::string& full, std::string &blk, std::string &var);
75 
76 } // namespace RootHistCnv
77 
78 #endif // RootHistCnv_RNTupleCnv_H
NTuple converter class definition.
Definition: RNTupleCnv.h:24
Root Converter.
Definition: RConverter.h:34
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
RNTupleCnv(ISvcLocator *svc, const CLID &clid)
Standard constructor.
Definition: RNTupleCnv.cpp:35
virtual StatusCode book(const std::string &desc, INTuple *pObj, TTree *&tree)=0
Book a new N tuple.
StatusCode updateRep(IOpaqueAddress *pAddr, DataObject *pObj) override
Update the converted representation of a transient object.
Definition: RNTupleCnv.cpp:190
bool parseName(const std::string &full, std::string &blk, std::string &var)
Definition: RNTupleCnv.cpp:244
StatusCode initialize() override
Initialize the converter.
Definition: RNTupleCnv.cpp:43
StatusCode finalize() override
Finalize the converter.
Definition: RNTupleCnv.cpp:56
~RNTupleCnv() override=default
Standard destructor.
STL class.
NTuple interface class definition.
Definition: INTuple.h:79
NTuple interface class definition.
Definition: INTuple.h:26
StatusCode updateObj(IOpaqueAddress *pAddr, DataObject *refpObj) override
Update the transient object from the other representation.
Definition: RNTupleCnv.cpp:64
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
virtual StatusCode load(TTree *tree, INTuple *&refpObj)=0
Create the transient representation of an object.
virtual StatusCode writeData(TTree *rtree, INTuple *pObj)=0
Write N tuple data.
Opaque address interface definition.
SmartIF< INTupleSvc > m_ntupleSvc
Reference to N tuple service.
Definition: RNTupleCnv.h:58
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30
StatusCode createRep(DataObject *pObj, IOpaqueAddress *&refpAddr) override
Convert the transient object to the requested representation.
Definition: RNTupleCnv.cpp:130
virtual StatusCode readData(TTree *rtree, INTuple *pObj, long ievt)=0
Read N tuple data.
StatusCode createObj(IOpaqueAddress *pAddr, DataObject *&refpObj) override
Create the transient representation of an object.
Definition: RNTupleCnv.cpp:93
INTupleItem * createNTupleItem(std::string itemName, std::string blockName, std::string indexName, int indexRange, int arraySize, TYP min, TYP max, INTuple *ntup)
Definition: RNTupleCnv.cpp:268
virtual std::string rootVarType(int)
Return ROOT type info:
Definition: RNTupleCnv.cpp:222