The Gaudi Framework  v30r3 (a5ef0a68)
ITupleTool.h
Go to the documentation of this file.
1 #ifndef GAUDIALG_ITUPLETOOL_H
2 #define GAUDIALG_ITUPLETOOL_H 1
3 // ============================================================================
4 // Include files
5 // ============================================================================
6 // STD & STL
7 // ============================================================================
8 #include <string>
9 // ============================================================================
10 // Gaudi
11 // ============================================================================
12 #include "GaudiKernel/ClassID.h"
13 #include "GaudiKernel/IAlgTool.h"
14 // ============================================================================
15 // GaudiAlg
16 // ============================================================================
17 #include "GaudiAlg/Tuple.h"
18 #include "GaudiAlg/TupleID.h"
19 // ============================================================================
20 
21 // ============================================================================
28 // ============================================================================
29 
30 class GAUDI_API ITupleTool : virtual public IAlgTool
31 {
32 public:
35 
38 
58  virtual Tuple nTuple( const std::string& title, const CLID& clid = CLID_ColumnWiseTuple ) const = 0;
59 
60  virtual Tuple nTuple( const TupleID& ID, const std::string& title = "",
61  const CLID& clid = CLID_ColumnWiseTuple ) const = 0;
62 
63  virtual Tuple evtCol( const std::string& title, const CLID& clid = CLID_RowWiseTuple ) const = 0;
64 
65  virtual Tuple evtCol( const TupleID& ID, const std::string& title = "",
66  const CLID& clid = CLID_RowWiseTuple ) const = 0;
67 };
68 
69 // ============================================================================
70 #endif // GAUDIALG_ITUPLETOOL_H
71 // ============================================================================
DeclareInterfaceID(IAlgTool, 4, 0)
InterfaceID.
STL class.
A simple wrapper class over standard Gaudi NTuple::Tuple facility.
Definition: Tuple.h:117
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
The interface implemented by the AlgTool base class.
Definition: IAlgTool.h:23
Tuples::TupleID TupleID
Definition: ITupleTool.h:36
#define GAUDI_API
Definition: Kernel.h:104
ID class for Histogram and Ntuples.
Definition: GaudiHistoID.h:44
Header file for class : Tuple.
Tuples::Tuple Tuple
Definition: ITupleTool.h:37