#include <LCGenericObject.h>
Inheritance diagram for EVENT::LCGenericObject:

Public Types | |
| typedef LCGenericObject | lcobject_type |
Public Member Functions | |
| virtual | ~LCGenericObject () |
| Destructor. | |
| virtual int | getNInt () const =0 |
| virtual int | getNFloat () const =0 |
| virtual int | getNDouble () const =0 |
| virtual int | getIntVal (int index) const =0 |
| virtual float | getFloatVal (int index) const =0 |
| virtual double | getDoubleVal (int index) const =0 |
| virtual bool | isFixedSize () const =0 |
| virtual const std::string | getTypeName () const =0 |
| virtual const std::string | getDataDescription () const =0 |
| virtual int | id () const |
| virtual LCObject * | clone () const |
| template<class V> | |
| V::ext_type | ext () |
| template<class V> | |
| V::rel_type | rel () |
Protected Member Functions | |
| template<class V> | |
| V::ptr & | ptr () |
2005-02-11, gaede: Changed the return value of getTypeName() and getDataDescription() from const std::string& to const std::string to make the implementation easier
Definition at line 27 of file LCGenericObject.h.
|
|
Useful typedef for template programming with LCIO Definition at line 35 of file LCGenericObject.h. |
|
|
Destructor.
Definition at line 31 of file LCGenericObject.h. |
|
|
Deep copy of the object. C++ implementations should return the concrete type (virtual constructor). No reasonable implementation yet. Do not use this method. Reimplemented in IMPL::SimCalorimeterHitImpl. Definition at line 52 of file LCObject.h. |
|
|||||||||
|
Provides access to an extension object - the type and ownership is defined by the class V which should be a subtype of LCExtension, LCOwnedExtension, LCExtensionVector, LCExtensionList,... Definition at line 430 of file LCRTRelations.h. |
|
|
The description string. A comma separated list of pairs of type identifier, one of 'i','f','d' followed by ':' and an attribute name, e.g. "i:cellId,f:offset,f:gain". Implemented in IMPL::LCGenericObjectImpl. Referenced by SIO::SIOLCGenericObjectHandler::init(). |
|
|
Returns the double value for the given index. Implemented in IMPL::LCGenericObjectImpl. Referenced by UTIL::LCTOOLS::printLCGenericObjects(), and SIO::SIOLCGenericObjectHandler::write(). |
|
|
Returns the float value for the given index. Implemented in IMPL::LCGenericObjectImpl. Referenced by UTIL::LCTOOLS::printLCGenericObjects(), and SIO::SIOLCGenericObjectHandler::write(). |
|
|
Returns the integer value for the given index. Implemented in IMPL::LCGenericObjectImpl. Referenced by UTIL::LCTOOLS::printLCGenericObjects(), and SIO::SIOLCGenericObjectHandler::write(). |
|
|
Number of double values stored in this object. Implemented in IMPL::LCGenericObjectImpl. Referenced by SIO::SIOLCGenericObjectHandler::init(), UTIL::LCTOOLS::printLCGenericObjects(), and SIO::SIOLCGenericObjectHandler::write(). |
|
|
Number of float values stored in this object. Implemented in IMPL::LCGenericObjectImpl. Referenced by SIO::SIOLCGenericObjectHandler::init(), UTIL::LCTOOLS::printLCGenericObjects(), and SIO::SIOLCGenericObjectHandler::write(). |
|
|
Number of integer values stored in this object. Implemented in IMPL::LCGenericObjectImpl. Referenced by SIO::SIOLCGenericObjectHandler::init(), UTIL::LCTOOLS::printLCGenericObjects(), and SIO::SIOLCGenericObjectHandler::write(). |
|
|
The type name of the user class (typically the class name) This type name is stored as a collection parameter "TypeName" with every collection of LCGenericObject subclasses. Implemented in IMPL::LCGenericObjectImpl. Referenced by SIO::SIOLCGenericObjectHandler::init(). |
|
|
Provide default implementation for id Implements EVENT::LCObject. Reimplemented in IMPL::LCGenericObjectImpl. Definition at line 83 of file LCGenericObject.h. Referenced by UTIL::LCTOOLS::printLCGenericObjects(). |
|
|
True if objects of the implementation class have a fixed size, i.e getNInt, getNFloat and getNDouble will return values that are constant during the lifetime of the object. Implemented in IMPL::LCGenericObjectImpl. Referenced by SIO::SIOLCGenericObjectHandler::init(). |
|
|||||||||
|
Returns the reference to the pointer to the extension/relation object Definition at line 508 of file LCRTRelations.h. |
|
|||||||||
|
Provides read access to relations - the object types and their connectivity are defined by the class V which has to be a subtype of either LC1To1Relation, LC1ToNRelation or LCNToNRelation. Definition at line 444 of file LCRTRelations.h. |
1.3.9.1