Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v28r2p1 (f1a77ff4)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
ContainedObject.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_CONTAINEDOBJECT_H
2 #define GAUDIKERNEL_CONTAINEDOBJECT_H
3 
4 // Include files
5 #include "GaudiKernel/Kernel.h"
8 #include <iostream>
9 
10 // Forward declarations
11 template <class TYPE> class ObjectVector;
12 template <class TYPE> class ObjectList;
13 
14 // Typedefs
17 
18 // Definition of the CLID for this class
19 static const CLID CLID_ContainedObject = 190;
20 
30 
33  friend class ObjectList<ContainedObject>;
34 
35 protected:
37  ContainedObject() = default;
41  virtual ~ContainedObject();
42 
43 public:
45  virtual const CLID& clID() const { return classID(); }
46  static const CLID& classID() { return CLID_ContainedObject; }
47 
49  const ObjectContainerBase* parent () const { return m_parent; }
51  void setParent (ObjectContainerBase* value) { m_parent = value; }
52 
54  virtual long index() const
55  {
56  return m_parent ? m_parent->index(this) : -1;
57  }
59  virtual StreamBuffer& serialize( StreamBuffer& s ) const { return s; }
61  virtual StreamBuffer& serialize( StreamBuffer& s ) { return s; }
63  virtual std::ostream& fillStream( std::ostream& s ) const { return s; }
66  return obj.fillStream(s);
67  }
68 
69 private:
71  ObjectContainerBase* m_parent = nullptr;
72 };
73 
74 #endif // GAUDIKERNEL_CONTAINEDOBJECT_H
ObjectList< ContainedObject > ContainedObjectList
virtual StreamBuffer & serialize(StreamBuffer &s)
Serialize the object for reading.
The stream buffer is a small object collecting object data.
Definition: StreamBuffer.h:41
ObjectVector< ContainedObject > ContainedObjectVector
ObjectVector is one of the basic Gaudi container classes capable of being registered in Data Stores...
virtual const CLID & clID() const
Retrieve pointer to class identifier.
virtual long index() const
Distance in the parent container.
ContainedObject(const ContainedObject &)
Copy constructor – do NOT copy the parent reference...
virtual StreamBuffer & serialize(StreamBuffer &s) const
Serialize the object for writing.
static const CLID & classID()
const ObjectContainerBase * parent() const
Access to parent object.
ObjectList is one of the basic Gaudi container classes capable of being registered in Data Stores...
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
static const CLID & classID()
Definition: ObjectList.h:76
All classes that their objects may be contained in an LHCb ObjectContainer (e.g.
void setParent(ObjectContainerBase *value)
Update parent member.
string s
Definition: gaudirun.py:245
ObjectContainerBase is the base class for Gaudi container classes.
virtual std::ostream & fillStream(std::ostream &s) const
Fill the output stream (ASCII)
#define GAUDI_API
Definition: Kernel.h:107
STL class.
std::ostream & operator<<(std::ostream &str, const GaudiAlg::ID &id)
Operator overloading for ostream.
Definition: GaudiHistoID.h:144