The Gaudi Framework  v32r2 (46d42edc)
GaudiMP::TESSerializer Class Reference

#include <GaudiMP/TESSerializer.h>

Inheritance diagram for GaudiMP::TESSerializer:
Collaboration diagram for GaudiMP::TESSerializer:

Public Member Functions

 TESSerializer (IDataProviderSvc *svc, IAddressCreator *ac)
 Constructor. More...
 
void dumpBuffer (TBufferFile &)
 Dump TES contents listed in m_itemList/m_optItemList to a TBufferFile. More...
 
void loadBuffer (TBufferFile &)
 Rebuild TES from items in a TBufferFile. More...
 
void addItem (const std::string &path)
 add an item to the TESSerializer's list (#notation) More...
 
void addOptItem (const std::string &path)
 add an item to the TESSerializer's optional list (#notation) More...
 
bool analyse (IRegistry *dir, int level) override
 Analysis callback. More...
 
void checkItems ()
 print out the contents of m_itemList and m_optItemList (std::cout) More...
 
virtual ~TESSerializer ()
 
- Public Member Functions inherited from IDataStoreAgent
virtual ~IDataStoreAgent ()=default
 destructor More...
 

Protected Member Functions

void addItem (Items &itms, const std::string &descriptor)
 Add item to the list of items to be serialized (#notation) More...
 
DataStoreItemfindItem (const std::string &path)
 Find single item identified by its path (exact match) More...
 

Private Types

typedef std::vector< DataStoreItem * > Items
 
typedef std::vector< std::stringItemNames
 
typedef std::vector< DataObject * > Objects
 

Private Member Functions

TClass * getClass (DataObject *obj)
 caching wrapper to TClass::GetClass More...
 

Private Attributes

IDataProviderSvcm_TES
 TES pointer. More...
 
IDataManagerSvcm_TESMgr
 TES pointer. More...
 
ItemNames m_itemNames
 Vector of item names. More...
 
Items m_itemList
 Vector of items to be saved to this stream (DataStoreItem ptrs) More...
 
ItemNames m_optItemNames
 Vector of item names (std::strings) More...
 
Items m_optItemList
 Vector of optional items to be saved to this stream (DataStoreItem ptrs) More...
 
DataStoreItemm_currentItem
 Current item while traversing the TES tree. More...
 
Objects m_objects
 Selected list of Objects to be serialized (DataObject ptrs) More...
 
std::map< std::type_index, TClass * > m_classMap
 Map of gROOT class information. More...
 
bool m_verifyItems
 Boolean Flag as used by GaudiSvc/PersistencySvc/OutputStreamer. More...
 
bool m_strict
 Boolean Flag used to determine error tolerance. More...
 
IAddressCreatorm_addressCreator
 IAddress Creator for Opaque Addresses. More...
 

Detailed Description

Definition at line 32 of file TESSerializer.h.

Member Typedef Documentation

◆ ItemNames

Definition at line 34 of file TESSerializer.h.

◆ Items

Definition at line 33 of file TESSerializer.h.

◆ Objects

Definition at line 35 of file TESSerializer.h.

Constructor & Destructor Documentation

◆ TESSerializer()

GaudiMP::TESSerializer::TESSerializer ( IDataProviderSvc svc,
IAddressCreator ac 
)

Constructor.

Definition at line 51 of file TESSerializer.cpp.

52  : m_TES( svc )
53  , m_TESMgr( dynamic_cast<IDataManagerSvc*>( svc ) )
54  , m_currentItem( 0 )
55  , m_verifyItems( false )
56  , m_strict( false )
57  , m_addressCreator( ac ) {}
bool m_verifyItems
Boolean Flag as used by GaudiSvc/PersistencySvc/OutputStreamer.
Definition: TESSerializer.h:97
IAddressCreator * m_addressCreator
IAddress Creator for Opaque Addresses.
bool m_strict
Boolean Flag used to determine error tolerance.
Definition: TESSerializer.h:99
IDataManagerSvc * m_TESMgr
TES pointer.
Definition: TESSerializer.h:80
DataStoreItem * m_currentItem
Current item while traversing the TES tree.
Definition: TESSerializer.h:90
IDataProviderSvc * m_TES
TES pointer.
Definition: TESSerializer.h:78

◆ ~TESSerializer()

virtual GaudiMP::TESSerializer::~TESSerializer ( )
inlinevirtual

Definition at line 59 of file TESSerializer.h.

59 {}

Member Function Documentation

◆ addItem() [1/2]

void GaudiMP::TESSerializer::addItem ( const std::string path)

add an item to the TESSerializer's list (#notation)

Add item to serialization list; ie append to std::vector of DataStoreItems.

Definition at line 336 of file TESSerializer.cpp.

336  {
337  // #notation supported
338  addItem( m_itemList, path );
339 }
Items m_itemList
Vector of items to be saved to this stream (DataStoreItem ptrs)
Definition: TESSerializer.h:84
void addItem(const std::string &path)
add an item to the TESSerializer's list (#notation)

◆ addItem() [2/2]

void GaudiMP::TESSerializer::addItem ( Items itms,
const std::string descriptor 
)
protected

Add item to the list of items to be serialized (#notation)

Add item to output streamer list (protected)

Definition at line 290 of file TESSerializer.cpp.

290  {
291  // supports # notation
292  int level = 0;
293 
294  std::string slevel;
295  std::string obj_path;
296 
297  // Process the incoming string
298  size_t sep = descriptor.rfind( "#" );
299  if ( sep > descriptor.length() ) {
300  // invalid sep case (# not found in string)
301  obj_path = descriptor;
302  slevel = "1";
303  } else {
304  // valid sep case
305  obj_path = descriptor.substr( 0, sep );
306  slevel = descriptor.substr( sep + 1 );
307  }
308 
309  // Convert the level string to an integer
310  if ( slevel == "*" ) {
311  level = 9999999;
312  } else {
313  level = std::stoi( slevel );
314  }
315 
316  // Are we verifying?
317  if ( m_verifyItems ) {
318  size_t idx = obj_path.find( "/", 1 );
319  while ( idx != std::string::npos ) {
320  std::string sub_item = obj_path.substr( 0, idx );
321  if ( 0 == findItem( sub_item ) ) {
322  cout << "... calling addItem with arg : " << sub_item << endl;
323  addItem( itms, sub_item );
324  }
325  idx = obj_path.find( "/", idx + 1 );
326  }
327  }
328  DataStoreItem* item = new DataStoreItem( obj_path, level );
329  // cout << "Adding TESSerializer item " << item->path()
330  // << " with " << item->depth()
331  // << " level(s)." << endl;
332  itms.push_back( item );
333 }
T rfind(T... args)
T endl(T... args)
bool m_verifyItems
Boolean Flag as used by GaudiSvc/PersistencySvc/OutputStreamer.
Definition: TESSerializer.h:97
Description of the DataStoreItem class.
Definition: DataStoreItem.h:17
STL class.
void addItem(const std::string &path)
add an item to the TESSerializer's list (#notation)
T find(T... args)
T length(T... args)
T substr(T... args)
DataStoreItem * findItem(const std::string &path)
Find single item identified by its path (exact match)
T stoi(T... args)

◆ addOptItem()

void GaudiMP::TESSerializer::addOptItem ( const std::string path)

add an item to the TESSerializer's optional list (#notation)

Add optional item to output streamer list.

Definition at line 342 of file TESSerializer.cpp.

342  {
343  // #notation supported
345 }
Items m_optItemList
Vector of optional items to be saved to this stream (DataStoreItem ptrs)
Definition: TESSerializer.h:88
void addItem(const std::string &path)
add an item to the TESSerializer's list (#notation)

◆ analyse()

bool GaudiMP::TESSerializer::analyse ( IRegistry dir,
int  level 
)
overridevirtual

Analysis callback.

Implements IDataStoreAgent.

Definition at line 40 of file TESSerializer.cpp.

40  {
41  if ( level < m_currentItem->depth() ) {
42  if ( dir->object() != 0 ) {
43  m_objects.push_back( dir->object() );
44  return true;
45  }
46  }
47  return false;
48 }
T push_back(T... args)
virtual DataObject * object() const =0
Retrieve object behind the link.
Objects m_objects
Selected list of Objects to be serialized (DataObject ptrs)
Definition: TESSerializer.h:92

◆ checkItems()

void GaudiMP::TESSerializer::checkItems ( )

print out the contents of m_itemList and m_optItemList (std::cout)

Uses cout to print the contents of the mandatory and optional item lists.

Definition at line 348 of file TESSerializer.cpp.

348  {
349  cout << "TESSerializer m_itemList : " << m_itemList.size() << " Items" << endl;
350  for ( Items::const_iterator i = m_itemList.begin(); i != m_itemList.end(); ++i ) {
351  cout << "\tItem : " << ( *i )->path() << endl;
352  }
353  cout << "TESSerializer m_optItemList : " << m_optItemList.size() << " Items" << endl;
354  for ( Items::const_iterator i = m_optItemList.begin(); i != m_optItemList.end(); ++i ) {
355  cout << "\tItem : " << ( *i )->path() << endl;
356  }
357 }
T endl(T... args)
Items m_optItemList
Vector of optional items to be saved to this stream (DataStoreItem ptrs)
Definition: TESSerializer.h:88
T end(T... args)
Items m_itemList
Vector of items to be saved to this stream (DataStoreItem ptrs)
Definition: TESSerializer.h:84
T size(T... args)
T begin(T... args)

◆ dumpBuffer()

void GaudiMP::TESSerializer::dumpBuffer ( TBufferFile &  buffer)

Dump TES contents listed in m_itemList/m_optItemList to a TBufferFile.

Serialize contents of TES to a TBufferFile.

Definition at line 60 of file TESSerializer.cpp.

60  {
61  //
62  // Write all valid objects to the TBufferFile provided in the argument
63  // As objects are collected, the member variable m_classMap is filled
64  // with ROOT Class data, and is kept by the Serializer for future
65  // reference
66  //
67  // @paramTBufferFile& buffer : TBufferFile passed by reference
68  // Cannot be declared inside the method, as repeated calls
69  // can cause confusion and buffer wiping.
70  //
71  StatusCode status;
72  DataObject* obj;
73 
74  // Clear current selection
75  m_objects.clear();
76 
77  // Traverse the tree and collect the requested objects
78  for ( Items::iterator i = m_itemList.begin(); i != m_itemList.end(); i++ ) {
79  m_currentItem = ( *i );
80  // cout << "Retrieving Mandatory Object : " << m_currentItem->path() << endl;
81  status = m_TES->retrieveObject( m_currentItem->path(), obj );
82  if ( status.isSuccess() ) {
83  m_TESMgr->traverseSubTree( obj, this );
84  } else {
85  string text( "WARNING: Cannot retrieve TES object(s) for serialisation: " );
86  text += m_currentItem->path();
87  if ( m_strict ) {
88  throw GaudiException( text + m_currentItem->path(), "", status );
89  } else {
90  cout << text << endl;
91  // return StatusCode::FAILURE;
92  }
93  }
94  }
95  // Traverse the tree and collect the requested objects (tolerate missing items here)
96  for ( Items::iterator i = m_optItemList.begin(); i != m_optItemList.end(); i++ ) {
97  m_currentItem = ( *i );
98  // cout << "Retrieving Optional Object : " << m_currentItem->path() << endl;
99  status = m_TES->retrieveObject( m_currentItem->path(), obj );
100  if ( status.isSuccess() ) { m_TESMgr->traverseSubTree( obj, this ); }
101  }
102 
103  // Prepare for serialization:
104  // - find all TClass pointers needed and ignore objects without dictionaries
106  objects.reserve( m_objects.size() );
107  for_each( begin( m_objects ), end( m_objects ), [this, &objects]( auto obj ) {
108  if ( auto cl = getClass( obj ) ) objects.emplace_back( obj, cl );
109  } );
110 
111  // cout << "TESSerializer : Beginning loop to write to TBufferFile for nObjects : " << m_objects.size() << endl;
112  buffer.WriteInt( objects.size() );
113 
114  for ( auto& [pObj, cl] : objects ) {
115  DataObjectPush p( pObj ); /* add the data object to the list... */
116 
117  // write object to buffer in order location-name-object
118  std::string loc = pObj->registry()->identifier();
119  buffer.WriteString( loc.c_str() );
120  buffer.WriteString( cl->GetName() );
121  cl->Streamer( pObj, buffer );
122 
123  /* take care of links */
124  LinkManager* linkMgr = pObj->linkMgr();
125  int numLinks = linkMgr->size();
126  buffer.WriteInt( numLinks );
127  // now write each link
128  for ( int it = 0; it != numLinks; it++ ) {
129  const string& link = linkMgr->link( it )->path();
130  buffer.WriteString( link.c_str() );
131  }
132 
133  // now do the thing with the opaqueAddress
134  // to go from string->object when recovering, will need svc_type, and clid, aswell as the string version
135  IOpaqueAddress* iop = pObj->registry()->address();
136  if ( iop ) {
137  buffer.WriteInt( 1 );
138  const string* par = iop->par();
139  long svcType = iop->svcType();
140  long clid = iop->clID();
141  buffer.WriteLong( svcType );
142  buffer.WriteLong( clid );
143  buffer.WriteString( par->c_str() );
144  } else {
145  buffer.WriteInt( 0 );
146  }
147  // object complete, continue in for-loop
148  }
149 
150  // Final Actions
151  // Write the End Flag, to avoid potential SegFaults on loadBuffer
152  buffer.WriteString( SERIALIZER_END );
153  // return StatusCode::SUCCESS;
154 }
virtual const std::string * par() const =0
Retrieve String parameters.
Define general base for Gaudi exception.
virtual StatusCode traverseSubTree(std::string_view sub_tree_path, IDataStoreAgent *pAgent)=0
Analyse by traversing all data objects below the sub tree identified by its full path name.
T endl(T... args)
Items m_optItemList
Vector of optional items to be saved to this stream (DataStoreItem ptrs)
Definition: TESSerializer.h:88
T end(T... args)
virtual long svcType() const =0
Retrieve service type.
Items m_itemList
Vector of items to be saved to this stream (DataStoreItem ptrs)
Definition: TESSerializer.h:84
bool m_strict
Boolean Flag used to determine error tolerance.
Definition: TESSerializer.h:99
STL class.
IDataManagerSvc * m_TESMgr
TES pointer.
Definition: TESSerializer.h:80
virtual const CLID & clID() const =0
Retrieve class information from link.
virtual IRegistry * registry() const =0
Update branch name.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
TClass * getClass(DataObject *obj)
caching wrapper to TClass::GetClass
Definition: TESSerializer.h:70
def end
Definition: IOTest.py:113
T clear(T... args)
bool isSuccess() const
Definition: StatusCode.h:267
virtual IOpaqueAddress * address() const =0
Retrieve opaque storage address.
T size(T... args)
STL class.
virtual StatusCode retrieveObject(IRegistry *pDirectory, std::string_view path, DataObject *&pObject)=0
Retrieve object identified by its directory entry.
T begin(T... args)
Objects m_objects
Selected list of Objects to be serialized (DataObject ptrs)
Definition: TESSerializer.h:92
T c_str(T... args)
AttribStringParser::Iterator begin(const AttribStringParser &parser)
Opaque address interface definition.
DataStoreItem * m_currentItem
Current item while traversing the TES tree.
Definition: TESSerializer.h:90
T for_each(T... args)
#define SERIALIZER_END
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30
IDataProviderSvc * m_TES
TES pointer.
Definition: TESSerializer.h:78
const std::string & path() const
Accessor: Retrieve load path.
Definition: DataStoreItem.h:55
T reserve(T... args)
T emplace_back(T... args)

◆ findItem()

DataStoreItem * GaudiMP::TESSerializer::findItem ( const std::string path)
protected

Find single item identified by its path (exact match)

Definition at line 360 of file TESSerializer.cpp.

360  {
361  for ( Items::const_iterator i = m_itemList.begin(); i != m_itemList.end(); ++i ) {
362  if ( ( *i )->path() == path ) return ( *i );
363  }
364  for ( Items::const_iterator j = m_optItemList.begin(); j != m_optItemList.end(); ++j ) {
365  if ( ( *j )->path() == path ) return ( *j );
366  }
367  return 0;
368 }
Items m_optItemList
Vector of optional items to be saved to this stream (DataStoreItem ptrs)
Definition: TESSerializer.h:88
T end(T... args)
Items m_itemList
Vector of items to be saved to this stream (DataStoreItem ptrs)
Definition: TESSerializer.h:84
T begin(T... args)

◆ getClass()

TClass* GaudiMP::TESSerializer::getClass ( DataObject obj)
inlineprivate

caching wrapper to TClass::GetClass

Definition at line 70 of file TESSerializer.h.

70  {
71  auto& id = typeid( *obj );
72  auto pos = m_classMap.find( id );
73  if ( pos == end( m_classMap ) ) { return m_classMap[id] = TClass::GetClass( id ); }
74  return pos->second;
75  }
std::map< std::type_index, TClass * > m_classMap
Map of gROOT class information.
Definition: TESSerializer.h:95
def end
Definition: IOTest.py:113
T find(T... args)

◆ loadBuffer()

void GaudiMP::TESSerializer::loadBuffer ( TBufferFile &  buffer)

Rebuild TES from items in a TBufferFile.

Reconstruct the TES from a given TBufferFile.

The next is equivalent to ReadObjectAny(cl) except of the 'magic!!'

Definition at line 157 of file TESSerializer.cpp.

157  {
158 
159  // reverse mechanism of dumps
160  // buffer is: length of DataObjects vector
161  // location string
162  // type name string
163  // the object itself
164  // count of links
165  // list of links (conditional on count)
166  // flag indicating Opaque Address presence
167  // Opaque Address svcType (conditional on flag)
168  // Opaque Address clID (conditional on flag)
169  // Opaque Address par (conditional on flag)
170 
171  int nObjects;
172  // 3 StatusCodes... for :
173  // general use : registering objects : creating OpaqueAddresses
174  StatusCode sc, registerStat, createAddressStat;
175 
176  // Prepare for Reading
177  buffer.SetReadMode();
178  buffer.SetBufferOffset();
179 
180  buffer.ReadInt( nObjects );
181  for ( int i = 0; i < nObjects; ++i ) {
182  char text[4096];
183  buffer.ReadString( text, sizeof( text ) );
184  string location( text );
185  if ( !location.compare( "EOF" ) ) {
186  /* There was an error in serialization, but the EOF
187  flag marks the endpoint in any case */
188  break;
189  }
190  buffer.ReadString( text, sizeof( text ) );
191  TClass* cl = gROOT->GetClass( text );
192  if ( cl == 0 ) {
193  if ( m_strict ) {
194  throw GaudiException( "gROOT->GetClass cannot find clName", text, StatusCode::FAILURE );
195  } else {
196  cout << "TESSerializer WARNING : gROOT->GetClass fails for clname : " << location.c_str() << endl;
197  continue;
198  }
199  }
200 
202  DataObject* obj = (DataObject*)cl->New();
203  DataObjectPush push( obj ); // This is magic!
204  cl->Streamer( obj, buffer );
205 
206  // now restore links
207  if ( obj ) {
208  int nlink = 0;
209  LinkManager* lnkMgr = obj->linkMgr();
210  buffer.ReadInt( nlink );
211 
212  for ( int j = 0; j < nlink; ++j ) {
213  buffer.ReadString( text, sizeof( text ) );
214  lnkMgr->addLink( text, 0 );
215  }
216  }
217 
218  // Re-register...
219  registerStat = m_TES->registerObject( location, obj );
220  if ( registerStat.isFailure() ) {
221  DataObject* dummy = NULL;
222  if ( location == "/Event" ) {
223  sc = m_TESMgr->setRoot( location, obj );
224  if ( sc.isFailure() ) throw GaudiException( "Cannot set root at location " + location, "", sc );
225  } else {
226  m_TES->findObject( location, dummy );
227  if ( !dummy )
228  m_TES->registerObject( location, obj );
229  else {
230  // skipping to the next object
231  // (flush the remaining metadata in the buffer)
232  int flag( 0 );
233  buffer.ReadInt( flag );
234  if ( flag ) {
235  long svcType;
236  buffer.ReadLong( svcType );
237  long clid;
238  buffer.ReadLong( clid );
239  buffer.ReadString( text, sizeof( text ) );
240  }
241  continue;
242  }
243  }
244  }
245  // next is the opaque address information
246  // create Generic Address using the info from the TBufferFile,
247  // then create an IOpaqueAddress object using the Persistency Svc
248  // IOpaque Address pointer (blank... pass the ref to the createAddress Fn)
249 
250  int flag( 0 );
251  buffer.ReadInt( flag );
252  // flag will be 0 or 1 to indicate OpaqueAddress Info
253  if ( flag == 1 ) {
254  // will need an IOpaqueAddress and its ref
255  IOpaqueAddress* iop;
256  IOpaqueAddress*& iopref = iop;
257  // Read svcType, clID and par from buffer
258  long svcType;
259  buffer.ReadLong( svcType );
260 
261  long clid;
262  buffer.ReadLong( clid );
263  const CLID classid( clid );
264 
265  char* cp;
266  cp = buffer.ReadString( text, sizeof( text ) );
267  const string opaque( cp );
268  // create Generic address
269  // already have svcType, clID, par1.. just make dummy variables for par2, and ipar1 and 2
270  const string& p2 = "";
271  unsigned long ip1( 0 );
272  unsigned long ip2( 0 );
273  GenericAddress gadd( svcType, classid, opaque, p2, ip1, ip2 );
274 
275  // now create the address
276  createAddressStat =
277  m_addressCreator->createAddress( gadd.svcType(), gadd.clID(), gadd.par(), gadd.ipar(), iopref );
278  if ( createAddressStat.isFailure() ) {
279  throw GaudiException( "Failure in creating OpaqueAddress for reconstructed registry", "", createAddressStat );
280  }
281  // And finally, set this address
282  obj->registry()->setAddress( iop );
283  }
284  // all done
285  }
286 }
Define general base for Gaudi exception.
IRegistry * registry() const
Get pointer to Registry.
Definition: DataObject.h:72
virtual StatusCode createAddress(long svc_type, const CLID &clid, const std::string *par, const unsigned long *ipar, IOpaqueAddress *&refpAddress)=0
Create a Generic address using explicit arguments to identify a single object.
LinkManager * linkMgr() const
Retrieve Link manager.
Definition: DataObject.h:74
virtual StatusCode setRoot(std::string root_name, DataObject *pObject)=0
Initialize data store for new event by giving new event path.
T endl(T... args)
Generic Transient Address.
IAddressCreator * m_addressCreator
IAddress Creator for Opaque Addresses.
virtual StatusCode findObject(IRegistry *pDirectory, std::string_view path, DataObject *&pObject)=0
Find object identified by its directory entry.
bool m_strict
Boolean Flag used to determine error tolerance.
Definition: TESSerializer.h:99
IDataManagerSvc * m_TESMgr
TES pointer.
Definition: TESSerializer.h:80
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
StatusCode registerObject(std::string_view fullPath, DataObject *pObject)
Register object with the data store.
virtual void setAddress(IOpaqueAddress *pAddress)=0
Set/Update Opaque storage address.
constexpr static const auto FAILURE
Definition: StatusCode.h:86
bool isFailure() const
Definition: StatusCode.h:130
Opaque address interface definition.
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30
IDataProviderSvc * m_TES
TES pointer.
Definition: TESSerializer.h:78

Member Data Documentation

◆ m_addressCreator

IAddressCreator* GaudiMP::TESSerializer::m_addressCreator
private

IAddress Creator for Opaque Addresses.

Definition at line 101 of file TESSerializer.h.

◆ m_classMap

std::map<std::type_index, TClass*> GaudiMP::TESSerializer::m_classMap
private

Map of gROOT class information.

Definition at line 95 of file TESSerializer.h.

◆ m_currentItem

DataStoreItem* GaudiMP::TESSerializer::m_currentItem
private

Current item while traversing the TES tree.

Definition at line 90 of file TESSerializer.h.

◆ m_itemList

Items GaudiMP::TESSerializer::m_itemList
private

Vector of items to be saved to this stream (DataStoreItem ptrs)

Definition at line 84 of file TESSerializer.h.

◆ m_itemNames

ItemNames GaudiMP::TESSerializer::m_itemNames
private

Vector of item names.

Definition at line 82 of file TESSerializer.h.

◆ m_objects

Objects GaudiMP::TESSerializer::m_objects
private

Selected list of Objects to be serialized (DataObject ptrs)

Definition at line 92 of file TESSerializer.h.

◆ m_optItemList

Items GaudiMP::TESSerializer::m_optItemList
private

Vector of optional items to be saved to this stream (DataStoreItem ptrs)

Definition at line 88 of file TESSerializer.h.

◆ m_optItemNames

ItemNames GaudiMP::TESSerializer::m_optItemNames
private

Vector of item names (std::strings)

Definition at line 86 of file TESSerializer.h.

◆ m_strict

bool GaudiMP::TESSerializer::m_strict
private

Boolean Flag used to determine error tolerance.

Definition at line 99 of file TESSerializer.h.

◆ m_TES

IDataProviderSvc* GaudiMP::TESSerializer::m_TES
private

TES pointer.

Definition at line 78 of file TESSerializer.h.

◆ m_TESMgr

IDataManagerSvc* GaudiMP::TESSerializer::m_TESMgr
private

TES pointer.

Definition at line 80 of file TESSerializer.h.

◆ m_verifyItems

bool GaudiMP::TESSerializer::m_verifyItems
private

Boolean Flag as used by GaudiSvc/PersistencySvc/OutputStreamer.

Definition at line 97 of file TESSerializer.h.


The documentation for this class was generated from the following files: