Abstract class describing a column in a N tuple.
More...
#include </builds/gaudi/Gaudi/GaudiKernel/include/GaudiKernel/NTuple.h>
|
| template<class T > |
| _Item< TYP > & | operator= (const _Item< T > ©) |
| | Assignment operator. More...
|
| |
| void | set (const TYP &item) |
| | Access to data by reference. More...
|
| |
| virtual TYP | get () const |
| | Access to data by reference (CONST) More...
|
| |
|
| static _Item * | create (INTuple *tup, const std::string &name, const std::type_info &info, TYP min, TYP max, TYP def) |
| | Create instance. More...
|
| |
template<class TYP>
class NTuple::_Item< TYP >
Abstract class describing a column in a N tuple.
Definition at line 42 of file NTuple.h.
◆ create()
Create instance.
Definition at line 20 of file NTupleItems.cpp.
22 return new _ItemImp<TYP>( tup,
name, info, min, max, def );
◆ get()
Access to data by reference (CONST)
Definition at line 153 of file NTuple.h.
153 {
return *this->m_buffer; }
◆ operator=()
template<class TYP >
template<class T >
Assignment operator.
Definition at line 146 of file NTuple.h.
147 *this->m_buffer = copy.get();
◆ set()
Access to data by reference.
Definition at line 151 of file NTuple.h.
151 { *this->m_buffer = item; }
The documentation for this class was generated from the following files: