|
Gaudi Framework, version v23r2 |
| Home | Generated: Thu Jun 28 2012 |
#include <GaudiTools/ITupleTool.h>


Public Types | |
| typedef Tuples::TupleID | TupleID |
| typedef Tuples::Tuple | Tuple |
Public Member Functions | |
| DeclareInterfaceID (ITupleTool, 2, 0) | |
| InterfaceID. | |
| virtual Tuple | nTuple (const std::string &title, const CLID &clid=CLID_ColumnWiseTuple) const =0 |
| get N-tuple object ( book on-demand ) with unique identifier | |
| virtual Tuple | nTuple (const TupleID &ID, const std::string &title="", const CLID &clid=CLID_ColumnWiseTuple) const =0 |
| virtual Tuple | evtCol (const std::string &title, const CLID &clid=CLID_RowWiseTuple) const =0 |
| virtual Tuple | evtCol (const TupleID &ID, const std::string &title="", const CLID &clid=CLID_RowWiseTuple) const =0 |
Protected Member Functions | |
| virtual | ~ITupleTool () |
| Destructor. | |
Definition at line 33 of file ITupleTool.h.
| typedef Tuples::Tuple ITupleTool::Tuple |
Reimplemented in TupleTool.
Definition at line 40 of file ITupleTool.h.
| typedef Tuples::TupleID ITupleTool::TupleID |
Reimplemented in TupleTool.
Definition at line 39 of file ITupleTool.h.
| ITupleTool::~ITupleTool | ( | ) | [protected, virtual] |
| ITupleTool::DeclareInterfaceID | ( | ITupleTool | , |
| 2 | , | ||
| 0 | |||
| ) |
| virtual Tuple ITupleTool::evtCol | ( | const TupleID & | ID, |
| const std::string & | title = "", |
||
| const CLID & | clid = CLID_RowWiseTuple |
||
| ) | const [pure virtual] |
Implemented in TupleTool.
| virtual Tuple ITupleTool::evtCol | ( | const std::string & | title, |
| const CLID & | clid = CLID_RowWiseTuple |
||
| ) | const [pure virtual] |
Implemented in TupleTool.
| virtual Tuple ITupleTool::nTuple | ( | const TupleID & | ID, |
| const std::string & | title = "", |
||
| const CLID & | clid = CLID_ColumnWiseTuple |
||
| ) | const [pure virtual] |
Implemented in TupleTool.
| virtual Tuple ITupleTool::nTuple | ( | const std::string & | title, |
| const CLID & | clid = CLID_ColumnWiseTuple |
||
| ) | const [pure virtual] |
get N-tuple object ( book on-demand ) with unique identifier
ITupleTool* tool = .. ; Tuple tuple = tool->nTuple( 'My tuple' ) ; tuple->column( "A" , sin(0.1) ); tuple->column( "B" , cos(0.1) ); tuple->column( "C" , tan(0.1) ); tuple->write()
NTuple will be booked with automatically assigned numerical ID
| title | unique title for ntuple |
| clid | class identifier |
Implemented in TupleTool.