Abstract class describing a column-array in a N tuple.
More...
#include <NTuple.h>
List of all members.
Detailed Description
template<class TYP>
class NTuple::_Array< TYP >
Abstract class describing a column-array in a N tuple.
Definition at line 150 of file NTuple.h.
Member Function Documentation
Access to data by reference (CONST)
Definition at line 179 of file NTuple.h.
Access to data by reference (CONST)
Definition at line 177 of file NTuple.h.
template<class TYP>
template<class T >
Assignment operator.
Definition at line 163 of file NTuple.h.
{
long len = this->length();
if ( len == copy.length() ) {
const T* source = (const T*)copy.buffer();
for ( int i = 0; i < len; i++ ) {
*(this->m_buffer + i) = *(source + i);
}
return *this;
}
throw std::out_of_range
("N-tuple matrix cannot be copied! The index range does not match!");
return *this;
}
The documentation for this class was generated from the following files:
- /afs/cern.ch/sw/Gaudi/releases/GAUDI/GAUDI_v22r4/GaudiKernel/GaudiKernel/NTuple.h
- /afs/cern.ch/sw/Gaudi/releases/GAUDI/GAUDI_v22r4/GaudiKernel/src/Lib/NTupleItems.cpp