Loading [MathJax]/jax/output/HTML-CSS/config.js
The Gaudi Framework  v28r2p1 (f1a77ff4)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
SmartRefVector.h
Go to the documentation of this file.
1 // ====================================================================
2 // SmartRefVector.h
3 // --------------------------------------------------------------------
4 //
5 // Package : Kernel
6 //
7 // Author : Markus Frank
8 //
9 // ====================================================================
10 #ifndef KERNEL_SMARTREFVECTOR_H
11 #define KERNEL_SMARTREFVECTOR_H 1
12 
13 // STL include files
14 #include <vector>
15 
16 // Include files
17 #include "GaudiKernel/SmartRef.h"
18 
54 template <class TYPE> class SmartRefVector : public std::vector < SmartRef<TYPE> > {
55 protected:
62 
64  mutable const DataObject* m_data;
66  mutable const ContainedObject* m_contd;
67 
69  void _setEnvironment(const DataObject* pObj, const ContainedObject* pContd) const {
70  m_data = pObj;
71  m_contd = pContd;
72  for ( _BaseConstIter i = _Base::begin(); i != _Base::end(); i++ ) {
73  (*i)._setEnvironment(pObj, pContd);
74  }
75  }
76 public:
79  m_contd = 0;
80  m_data = 0;
81  }
83  template <class ITERATOR>
84  SmartRefVector( ITERATOR first , ITERATOR last )
85  : std::vector< SmartRef<TYPE> >( first , last )
86  , m_data ( 0 )
87  , m_contd ( 0 )
88  {
89 
90  }
93  : std::vector< SmartRef<TYPE> >(copy) {
94  *this = copy;
95  }
97  //virtual ~SmartRefVector() {
98  //}
99 
102  _setEnvironment((0==pObj) ? 0 : pObj->parent(), pObj);
103  return *this;
104  }
107  _setEnvironment((0==pObj) ? 0 : pObj->parent(), pObj);
108  return *this;
109  }
112  _setEnvironment(pObj,0);
113  return *this;
114  }
116  const SmartRefVector<TYPE>& operator() (const DataObject* pObj) const {
117  _setEnvironment(pObj,0);
118  return *this;
119  }
122  _Base::operator=(copy);
123  // Harms.... MF
124  // on copy we MUST make a 1 to 1 copy
125  // _setEnvironment( copy.m_data, copy.m_contd );
126  // use instead:
127  m_data = copy.m_data;
128  m_contd = copy.m_contd;
129  return *this;
130  }
132  const std::type_info* type() const {
133  return &typeid(TYPE);
134  }
140  // MCl: it is "_s" instead of the most common "s" to avoid a fake icc remark #1599
141  friend StreamBuffer& operator<< (StreamBuffer& _s, const SmartRefVector<TYPE>& ptr) {
142  return ptr.writeRefs(_s);
143  }
145  // MCl: it is "_s" instead of the most common "s" to avoid a fake icc remark #1599
147  return ptr.readRefs(_s);
148  }
149 };
150 
151 template <class TYPE> inline
153  long len = _Base::size();
154  s << len;
155  for ( _BaseConstIter i = _Base::begin(); i != _Base::end(); i++ ) {
156  (*i)._setEnvironment(m_data, m_contd);
157  (*i).writeRef(s);
158  }
159  return s;
160 }
161 
162 template <class TYPE> inline
164  long len;
166  s >> len;
167  for ( long i = 0; i < len; i++ ) {
168  _BaseValueType entry;
169  entry._setEnvironment(m_data, m_contd);
170  entry.readRef(s);
171  _Base::push_back( entry );
172  }
173  return s;
174 }
175 
176 #endif // KERNEL_SMARTREFVECTOR_H
std::vector< _Entry >::value_type _BaseValueType
T operator=(T...args)
const std::type_info * type() const
Access to embedded type.
The stream buffer is a small object collecting object data.
Definition: StreamBuffer.h:41
SmartRefVector< TYPE > & operator()(ContainedObject *pObj)
Standard destructor.
STL namespace.
Kernel objects: SmartRef.
Definition: SmartRef.h:62
T end(T...args)
SmartRefVector()
Standard Constructor.
const ContainedObject * m_contd
Object data: Pointer to the Contained object (if applicable)
const ObjectContainerBase * parent() const
Access to parent object.
Kernel objects: SmartRefVector.
T push_back(T...args)
std::vector< _Entry >::const_iterator _BaseConstIter
T erase(T...args)
SmartRefVector(const SmartRefVector &copy)
Copy Constructor.
StreamBuffer & readRefs(StreamBuffer &s)
Helper to read references.
All classes that their objects may be contained in an LHCb ObjectContainer (e.g.
T size(T...args)
STL class.
SmartRefVector(ITERATOR first, ITERATOR last)
templated Constructor
T begin(T...args)
std::vector< _Entry > _Base
Object types: typedef myself as Base.
string s
Definition: gaudirun.py:245
friend StreamBuffer & operator>>(StreamBuffer &_s, SmartRefVector< TYPE > &ptr)
Input Streamer operator.
const DataObject * m_data
Object data: Pointer to the identifiable object the link originates.
void _setEnvironment(const DataObject *pObj, const ContainedObject *pContd) const
Set the environment for the vector and all contained objects references.
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30
SmartRef< TYPE > _Entry
That&#39;s the type of crap I am hosting.
StreamBuffer & writeRefs(StreamBuffer &s) const
Helper to write references.
SmartRefVector< TYPE > & operator=(const SmartRefVector< TYPE > &copy)
Assignment.