Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
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>
55 class SmartRefVector : public std::vector<SmartRef<TYPE>> {
56 protected:
63 
65  mutable const DataObject* m_data;
67  mutable const ContainedObject* m_contd;
68 
70  void _setEnvironment( const DataObject* pObj, const ContainedObject* pContd ) const {
71  m_data = pObj;
72  m_contd = pContd;
73  for ( _BaseConstIter i = _Base::begin(); i != _Base::end(); i++ ) { ( *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 ), m_data( 0 ), m_contd( 0 ) {}
87  SmartRefVector( const SmartRefVector& copy ) : std::vector<SmartRef<TYPE>>( copy ) { *this = copy; }
89  // virtual ~SmartRefVector() {
90  //}
91 
94  _setEnvironment( ( 0 == pObj ) ? 0 : pObj->parent(), pObj );
95  return *this;
96  }
98  const SmartRefVector<TYPE>& operator()( const ContainedObject* pObj ) const {
99  _setEnvironment( ( 0 == pObj ) ? 0 : pObj->parent(), pObj );
100  return *this;
101  }
104  _setEnvironment( pObj, 0 );
105  return *this;
106  }
108  const SmartRefVector<TYPE>& operator()( const DataObject* pObj ) const {
109  _setEnvironment( pObj, 0 );
110  return *this;
111  }
114  _Base::operator=( copy );
115  // Harms.... MF
116  // on copy we MUST make a 1 to 1 copy
117  // _setEnvironment( copy.m_data, copy.m_contd );
118  // use instead:
119  m_data = copy.m_data;
120  m_contd = copy.m_contd;
121  return *this;
122  }
124  const std::type_info* type() const { return &typeid( TYPE ); }
128  StreamBuffer& writeRefs( StreamBuffer& s ) const;
130  // MCl: it is "_s" instead of the most common "s" to avoid a fake icc remark #1599
131  friend StreamBuffer& operator<<( StreamBuffer& _s, const SmartRefVector<TYPE>& ptr ) { return ptr.writeRefs( _s ); }
133  // MCl: it is "_s" instead of the most common "s" to avoid a fake icc remark #1599
134  friend StreamBuffer& operator>>( StreamBuffer& _s, SmartRefVector<TYPE>& ptr ) { return ptr.readRefs( _s ); }
135 };
136 
137 template <class TYPE>
139  long len = _Base::size();
140  s << len;
141  for ( _BaseConstIter i = _Base::begin(); i != _Base::end(); i++ ) {
142  ( *i )._setEnvironment( m_data, m_contd );
143  ( *i ).writeRef( s );
144  }
145  return s;
146 }
147 
148 template <class TYPE>
150  long len;
152  s >> len;
153  for ( long i = 0; i < len; i++ ) {
154  _BaseValueType entry;
155  entry._setEnvironment( m_data, m_contd );
156  entry.readRef( s );
157  _Base::push_back( entry );
158  }
159  return s;
160 }
161 
162 #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:66
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.
SmartRefVector< TYPE > & operator()(DataObject *pObj)
operator(): assigns parent object for serialisation
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)
const SmartRefVector< TYPE > & operator()(const DataObject *pObj) const
operator() const: assigns parent object for serialisation
std::vector< _Entry > _Base
Object types: typedef myself as Base.
string s
Definition: gaudirun.py:312
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.
const SmartRefVector< TYPE > & operator()(const ContainedObject *pObj) const
operator() const: assigns parent object for serialisation
StreamBuffer & writeRefs(StreamBuffer &s) const
Helper to write references.
SmartRefVector< TYPE > & operator=(const SmartRefVector< TYPE > &copy)
Assignment.