The Gaudi Framework  master (01b473db)
RRWNTupleCnv.h
Go to the documentation of this file.
1 /***********************************************************************************\
2 * (c) Copyright 1998-2025 CERN for the benefit of the LHCb and ATLAS collaborations *
3 * *
4 * This software is distributed under the terms of the Apache version 2 licence, *
5 * copied verbatim in the file "LICENSE". *
6 * *
7 * In applying this licence, CERN does not waive the privileges and immunities *
8 * granted to it by virtue of its status as an Intergovernmental Organization *
9 * or submit itself to any jurisdiction. *
10 \***********************************************************************************/
11 #pragma once
12 
13 // Include files
14 #include "RNTupleCnv.h"
15 
16 // Forward declarations
17 class TTree;
18 
19 namespace RootHistCnv {
26  class RRWNTupleCnv : public RNTupleCnv {
27  public:
29  static const CLID& classID() { return CLID_RowWiseTuple; }
31  RRWNTupleCnv( ISvcLocator* svc ) : RNTupleCnv( svc, classID() ) {}
32 
33  protected:
35  StatusCode load( TTree* tree, INTuple*& refpObject ) override;
36 
38  StatusCode book( const std::string& desc, INTuple* pObject, TTree*& tree ) override;
40  StatusCode writeData( TTree* rtree, INTuple* pObject ) override;
42  StatusCode readData( TTree* rtree, INTuple* pObject, long ievt ) override;
43  };
44 } // namespace RootHistCnv
RootHistCnv::RRWNTupleCnv::writeData
StatusCode writeData(TTree *rtree, INTuple *pObject) override
Write N tuple data.
Definition: RRWNTupleCnv.cpp:57
ISvcLocator
Definition: ISvcLocator.h:42
RootHistCnv::RRWNTupleCnv::book
StatusCode book(const std::string &desc, INTuple *pObject, TTree *&tree) override
Book the N tuple.
Definition: RRWNTupleCnv.cpp:39
RootHistCnv::RRWNTupleCnv::readData
StatusCode readData(TTree *rtree, INTuple *pObject, long ievt) override
Read N tuple data.
Definition: RRWNTupleCnv.cpp:75
RootHistCnv
Definition: DirectoryCnv.h:26
StatusCode
Definition: StatusCode.h:64
RootHistCnv::RRWNTupleCnv::RRWNTupleCnv
RRWNTupleCnv(ISvcLocator *svc)
Standard constructor.
Definition: RRWNTupleCnv.h:31
INTuple
Definition: INTuple.h:86
RootHistCnv::RRWNTupleCnv::classID
static const CLID & classID()
Inquire class type.
Definition: RRWNTupleCnv.h:29
CLID
unsigned int CLID
Class ID definition.
Definition: ClassID.h:16
RootHistCnv::RRWNTupleCnv
Definition: RRWNTupleCnv.h:26
RNTupleCnv.h
RootHistCnv::RNTupleCnv
Definition: RNTupleCnv.h:32
RootHistCnv::RRWNTupleCnv::load
StatusCode load(TTree *tree, INTuple *&refpObject) override
Create the transient representation of an object.
Definition: RRWNTupleCnv.cpp:82