The Gaudi Framework  v29r0 (ff2e7097)
TupleTool.h
Go to the documentation of this file.
1 #ifndef GAUDIALG_TUPLETOOL_H
2 #define GAUDIALG_TUPLETOOL_H 1
3 // ============================================================================
4 // Include files
5 // ============================================================================
6 // Gaudi
7 // ============================================================================
9 #include "GaudiAlg/ITupleTool.h"
10 // ============================================================================
11 
18 class TupleTool : public GaudiTupleTool, virtual public ITupleTool
19 {
20 public:
23 
33  TupleTool( const std::string& type, const std::string& name, const IInterface* parent );
34 
36  ~TupleTool() override = default;
37 
38 public:
58  Tuple nTuple( const std::string& title, const CLID& clid = CLID_ColumnWiseTuple ) const override
59  {
60  return GaudiTupleTool::nTuple( title, clid );
61  }
62 
63  Tuple nTuple( const TupleID& ID, const std::string& title = "",
64  const CLID& clid = CLID_ColumnWiseTuple ) const override
65  {
66  return GaudiTupleTool::nTuple( ID, title, clid );
67  }
68 
69  Tuple evtCol( const std::string& title, const CLID& clid = CLID_RowWiseTuple ) const override
70  {
71  return GaudiTupleTool::evtCol( title, clid );
72  }
73 
74  Tuple evtCol( const TupleID& ID, const std::string& title = "", const CLID& clid = CLID_RowWiseTuple ) const override
75  {
76  return GaudiTupleTool::evtCol( ID, title, clid );
77  }
78 
79  TupleTool() = delete;
80  TupleTool( const TupleTool& ) = delete;
81  TupleTool& operator=( const TupleTool& ) = delete;
82 };
83 #endif // GAUDIALG_TUPLETOOL_H
~TupleTool() override=default
destructor: virtual and protected
virtual const std::string & type() const =0
The type of an AlgTool, meaning the concrete AlgTool class.
Tuples::Tuple Tuple
Definition: TupleTool.h:21
TupleTool & operator=(const TupleTool &)=delete
Tuple evtCol(const std::string &title, const CLID &clid=CLID_ColumnWiseTuple) const
Access an Event Tag Collection object (book on-demand) with unique identifier.
STL class.
A simple wrapper class over standard Gaudi NTuple::Tuple facility.
Definition: Tuple.h:117
Simple class to extend the functionality of class GaudiHistoTool.
Definition of the basic interface.
Definition: IInterface.h:277
Tuple nTuple(const std::string &title, const CLID &clid=CLID_ColumnWiseTuple) const
Access an N-Tuple object (book on-demand) with unique identifier.
Tuple nTuple(const TupleID &ID, const std::string &title="", const CLID &clid=CLID_ColumnWiseTuple) const override
Definition: TupleTool.h:63
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
Tuple nTuple(const std::string &title, const CLID &clid=CLID_ColumnWiseTuple) const override
get N-tuple object ( book on-demand ) with unique identidier
Definition: TupleTool.h:58
TupleTool()=delete
GaudiAlg::TupleID TupleID
Definition: TupleTool.h:22
Tuple evtCol(const std::string &title, const CLID &clid=CLID_RowWiseTuple) const override
Definition: TupleTool.h:69
virtual const IInterface * parent() const =0
The parent of the concrete AlgTool.
ID class for Histogram and Ntuples.
Definition: GaudiHistoID.h:44
virtual const std::string & name() const =0
Retrieve the name of the instance.
Tuple evtCol(const TupleID &ID, const std::string &title="", const CLID &clid=CLID_RowWiseTuple) const override
Definition: TupleTool.h:74