Gaudi Framework, version v23r0

Home   Generated: Mon Jan 30 2012
Public Member Functions | Static Public Member Functions

NTuple::_Array< TYP > Class Template Reference

Abstract class describing a column-array in a N tuple. More...

#include <NTuple.h>

Inheritance diagram for NTuple::_Array< TYP >:
Inheritance graph
[legend]
Collaboration diagram for NTuple::_Array< TYP >:
Collaboration graph
[legend]

List of all members.

Public Member Functions

template<class T >
_Array< TYP > & operator= (const _Array< T > &copy)
 Assignment operator.
const TYP & data (long i) const
 Access to data by reference (CONST)
TYP & data (long i)
 Access to data by reference (CONST)

Static Public Member Functions

static _Arraycreate (INTuple *tup, const std::string &name, const std::type_info &info, const std::string &index, long len, TYP min, TYP max, TYP def)
 Create instance.

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

template<class TYP >
NTuple::_Array< TYP > * NTuple::_Array< TYP >::create ( INTuple tup,
const std::string name,
const std::type_info info,
const std::string index,
long  len,
TYP  min,
TYP  max,
TYP  def 
) [static]

Create instance.

Definition at line 34 of file NTupleItems.cpp.

                                                                                                                                             {
  _ArrayImp<TYP>* result = new _ArrayImp<TYP>(tup,name,info,idx,len,min,max,def);
  return result;
}
template<class TYP>
TYP& NTuple::_Array< TYP >::data ( long  i ) [inline]

Access to data by reference (CONST)

Definition at line 179 of file NTuple.h.

{ return *(this->m_buffer + i);        }
template<class TYP>
const TYP& NTuple::_Array< TYP >::data ( long  i ) const [inline]

Access to data by reference (CONST)

Definition at line 177 of file NTuple.h.

{ return *(this->m_buffer + i);        }
template<class TYP>
template<class T >
_Array<TYP>& NTuple::_Array< TYP >::operator= ( const _Array< T > &  copy ) [inline]

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:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Mon Jan 30 2012 13:53:36 for Gaudi Framework, version v23r0 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004