RRWNTupleCnv.h
Go to the documentation of this file.
1 #ifndef ROOTHISTCNV_RRWNTUPLECNV_H
2 #define ROOTHISTCNV_RRWNTUPLECNV_H 1
3 
4 // Include files
5 #include "RNTupleCnv.h"
6 
7 // Forward declarations
8 class TTree;
9 
10 namespace RootHistCnv {
17  class RRWNTupleCnv : public RNTupleCnv {
18  public:
20  static const CLID& classID() { return CLID_RowWiseTuple; }
24  ~RRWNTupleCnv() override = default;
25  protected:
27  StatusCode load(TTree* tree, INTuple*& refpObject) override;
28 
30  StatusCode book(const std::string& desc, INTuple* pObject, TTree*& tree) override;
32  StatusCode writeData(TTree* rtree, INTuple* pObject) override;
34  StatusCode readData(TTree* rtree, INTuple* pObject, long ievt) override;
35  };
36 } // namespace RootHistCnv
37 
38 #endif // RootHistCnv_RRWNTUPLECNV_H
NTuple converter class definition.
Definition: RNTupleCnv.h:24
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
StatusCode book(const std::string &desc, INTuple *pObject, TTree *&tree) override
Book the N tuple.
Row wise NTuple converter class definition.
Definition: RRWNTupleCnv.h:17
StatusCode load(TTree *tree, INTuple *&refpObject) override
Create the transient representation of an object.
STL class.
NTuple interface class definition.
Definition: INTuple.h:79
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
StatusCode readData(TTree *rtree, INTuple *pObject, long ievt) override
Read N tuple data.
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
static const CLID & classID()
Inquire class type.
Definition: RRWNTupleCnv.h:20
RRWNTupleCnv(ISvcLocator *svc)
Standard constructor.
Definition: RRWNTupleCnv.h:22
~RRWNTupleCnv() override=default
Standard destructor.
StatusCode writeData(TTree *rtree, INTuple *pObject) override
Write N tuple data.