| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

In This Package:

ContainedObject Class Reference

All classes that their objects may be contained in an LHCb ObjectContainer (e.g. More...

#include <GaudiKernel/ContainedObject.h>

Inheritance diagram for ContainedObject:

[legend]
Collaboration diagram for ContainedObject:
[legend]
List of all members.

Public Member Functions

virtual const CLIDclID () const
 Retrieve pointer to class identifier.
const ObjectContainerBaseparent () const
 Access to parent object.
void setParent (ObjectContainerBase *value)
 Update parent member.
virtual long index () const
 Distance in the parent container.
virtual StreamBufferserialize (StreamBuffer &s) const
 Serialize the object for writing.
virtual StreamBufferserialize (StreamBuffer &s)
 Serialize the object for reading.
virtual std::ostream & fillStream (std::ostream &s) const
 Fill the output stream (ASCII).

Static Public Member Functions

static const CLIDclassID ()

Protected Member Functions

 ContainedObject ()
 Constructors.
 ContainedObject (const ContainedObject &)
 Copy constructor.
virtual ~ContainedObject ()
 Destructor.

Private Attributes

ObjectContainerBasem_parent
 Pointer to the parent.

Friends

class ObjectVector< ContainedObject >
 Allow the container classes access to protected members.
class ObjectList< ContainedObject >
std::ostream & operator<< (std::ostream &s, const ContainedObject &obj)
 Output operator (ASCII).

Detailed Description

All classes that their objects may be contained in an LHCb ObjectContainer (e.g.

ObjectVector, or ObjectList), have to inherit from the class ContainedObject. It guarantees the navigability from the contained object back to its container.

Author:
Pavel Binko

Definition at line 30 of file ContainedObject.h.


Constructor & Destructor Documentation

ContainedObject::ContainedObject (  )  [inline, protected]

Constructors.

Definition at line 38 of file ContainedObject.h.

00038 : m_parent(0)  { }

ContainedObject::ContainedObject ( const ContainedObject  )  [inline, protected]

Copy constructor.

Definition at line 40 of file ContainedObject.h.

00040 : m_parent(0)  { }

virtual ContainedObject::~ContainedObject (  )  [protected, virtual]

Destructor.


Member Function Documentation

virtual const CLID& ContainedObject::clID (  )  const [inline, virtual]

Retrieve pointer to class identifier.

Definition at line 46 of file ContainedObject.h.

00046 { return ContainedObject::classID(); }

static const CLID& ContainedObject::classID (  )  [inline, static]

Definition at line 47 of file ContainedObject.h.

00047 { return CLID_ContainedObject; }

const ObjectContainerBase* ContainedObject::parent (  )  const [inline]

Access to parent object.

Definition at line 50 of file ContainedObject.h.

00050 { return m_parent;        }

void ContainedObject::setParent ( ObjectContainerBase value  )  [inline]

Update parent member.

Definition at line 52 of file ContainedObject.h.

00052 { m_parent = value;       }

virtual long ContainedObject::index (  )  const [inline, virtual]

Distance in the parent container.

Reimplemented in KeyedObject< KEY >.

Definition at line 55 of file ContainedObject.h.

00056   { 
00057     return (m_parent) ? m_parent->index(this) : -1;  
00058   }

virtual StreamBuffer& ContainedObject::serialize ( StreamBuffer s  )  const [inline, virtual]

Serialize the object for writing.

Reimplemented in KeyedObject< KEY >.

Definition at line 60 of file ContainedObject.h.

00060 { return s; }

virtual StreamBuffer& ContainedObject::serialize ( StreamBuffer s  )  [inline, virtual]

Serialize the object for reading.

Reimplemented in KeyedObject< KEY >.

Definition at line 62 of file ContainedObject.h.

00062 { return s; }

virtual std::ostream& ContainedObject::fillStream ( std::ostream &  s  )  const [inline, virtual]

Fill the output stream (ASCII).

Definition at line 64 of file ContainedObject.h.

00064 { return s; }


Friends And Related Function Documentation

friend class ObjectVector< ContainedObject > [friend]

Allow the container classes access to protected members.

Definition at line 33 of file ContainedObject.h.

friend class ObjectList< ContainedObject > [friend]

Definition at line 34 of file ContainedObject.h.

std::ostream& operator<< ( std::ostream &  s,
const ContainedObject obj 
) [friend]

Output operator (ASCII).

Definition at line 66 of file ContainedObject.h.

00066                                                                               {
00067     return obj.fillStream(s);
00068   }


Member Data Documentation

ObjectContainerBase* ContainedObject::m_parent [private]

Pointer to the parent.

Definition at line 72 of file ContainedObject.h.


The documentation for this class was generated from the following file:
| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

Generated on Mon Apr 11 19:57:06 2011 for GaudiKernel by doxygen 1.4.7