![]() |
|
|
Generated: 18 Jul 2008 |
#include <NTuple.h>
Inheritance diagram for NTuple::_Item< TYP >:


Definition at line 127 of file NTuple.h.
Public Member Functions | |
| template<class T> | |
| _Item< TYP > & | operator= (const _Item< T > ©) |
| Assignment operator. | |
| void | set (const TYP &item) |
| Access to data by reference. | |
| virtual const TYP | get () const |
| Access to data by reference (CONST). | |
Static Public Member Functions | |
| static _Item * | create (INTuple *tup, const std::string &name, const std::type_info &info, TYP min, TYP max, TYP def) |
| Create instance. | |
| NTuple::_Item< TYP > * NTuple::_Item< TYP >::create | ( | INTuple * | tup, | |
| const std::string & | name, | |||
| const std::type_info & | info, | |||
| TYP | min, | |||
| TYP | max, | |||
| TYP | def | |||
| ) | [static] |
Create instance.
Definition at line 27 of file NTupleItems.cpp.
References INTupleItem::name().
Referenced by createItem(), HbookCnv::createNTupleItem(), and RootHistCnv::createNTupleItem().
00027 { 00028 _ItemImp<TYP>* result = new _ItemImp<TYP>(tup, name, info, min, max, def); 00029 return result; 00030 }
| _Item<TYP>& NTuple::_Item< TYP >::operator= | ( | const _Item< T > & | copy | ) | [inline] |
| void NTuple::_Item< TYP >::set | ( | const TYP & | item | ) | [inline] |
| virtual const TYP NTuple::_Item< TYP >::get | ( | ) | const [inline, virtual] |
Access to data by reference (CONST).
Definition at line 145 of file NTuple.h.
Referenced by NTuple::_Item< bool >::operator=().
00145 { return *this->m_buffer; }