The Gaudi Framework  v30r4 (9b837755)
OutputStream.cpp
Go to the documentation of this file.
1 // Framework include files
11 #include "GaudiKernel/Incident.h"
12 
14 #include "GaudiKernel/DataObject.h"
16 #include "GaudiKernel/MsgStream.h"
17 #include "GaudiKernel/strcasecmp.h"
18 
19 #include "OutputStream.h"
20 
21 #include <set>
22 
23 // Define the algorithm factory for the standard output data writer
25 
26 #define ON_DEBUG if ( msgLevel( MSG::DEBUG ) )
27 
28 // initialize data writer
30 {
31 
32  // Reset the number of events written
33  m_events = 0;
34  // Get access to the DataManagerSvc
36  if ( !m_pDataManager ) {
37  fatal() << "Unable to locate IDataManagerSvc interface" << endmsg;
38  return StatusCode::FAILURE;
39  }
40  // Get access to the IncidentService
41  m_incidentSvc = serviceLocator()->service( "IncidentSvc" );
42  if ( !m_incidentSvc ) {
43  warning() << "Error retrieving IncidentSvc." << endmsg;
44  return StatusCode::FAILURE;
45  }
46  // Get access to the assigned data service
48  if ( !m_pDataProvider ) {
49  fatal() << "Unable to locate IDataProviderSvc interface of " << m_storeName << endmsg;
50  return StatusCode::FAILURE;
51  }
52  if ( hasInput() ) {
54  if ( !status.isSuccess() ) {
55  fatal() << "Unable to connect to conversion service." << endmsg;
56  if ( m_outputName != "" && m_fireIncidents )
57  m_incidentSvc->fireIncident( Incident( m_outputName, IncidentType::FailOutputFile ) );
58  return status;
59  }
60  }
61 
62  // Clear the list with optional items
64  // Clear the item list
66 
67  // Take the new item list from the properties.
68  ON_DEBUG debug() << "ItemList : " << m_itemNames.value() << endmsg;
69  for ( const auto& i : m_itemNames ) addItem( m_itemList, i );
70 
71  // Take the new item list from the properties.
72  ON_DEBUG debug() << "OptItemList : " << m_optItemNames.value() << endmsg;
73  for ( const auto& i : m_optItemNames ) addItem( m_optItemList, i );
74 
75  // prepare the algorithm selected dependent locations
76  ON_DEBUG debug() << "AlgDependentItemList : " << m_algDependentItemList.value() << endmsg;
77  for ( const auto& a : m_algDependentItemList ) {
78  // Get the algorithm pointer
79  Algorithm* theAlgorithm = decodeAlgorithm( a.first );
80  if ( theAlgorithm ) {
81  // Get the item list for this alg
82  auto& items = m_algDependentItems[theAlgorithm];
83  // Clear the list for this alg
84  clearItems( items );
85  // fill the list again
86  for ( const auto& i : a.second ) addItem( items, i );
87  }
88  }
89 
90  // Take the item list to the data service preload list.
91  if ( m_doPreLoad ) {
92  for ( auto& j : m_itemList ) m_pDataProvider->addPreLoadItem( *j ).ignore();
93  // Not working: bad reference counting! pdataSvc->release();
94  }
95 
96  if ( m_doPreLoadOpt ) {
97  for ( auto& j : m_optItemList ) m_pDataProvider->addPreLoadItem( *j ).ignore();
98  }
99  info() << "Data source: " << m_storeName.value() << " output: " << m_output.value() << endmsg;
100 
101  // Decode the accept, required and veto Algorithms. The logic is the following:
102  // a. The event is accepted if all lists are empty.
103  // b. The event is provisionally accepted if any Algorithm in the accept list
104  // has been executed and has indicated that its filter is passed. This
105  // provisional acceptance can be overridden by the other lists.
106  // c. The event is rejected unless all Algorithms in the required list have
107  // been executed and have indicated that their filter passed.
108  // d. The event is rejected if any Algorithm in the veto list has been
109  // executed and has indicated that its filter has passed.
110  m_acceptNames.useUpdateHandler();
111  m_requireNames.useUpdateHandler();
112  m_vetoNames.useUpdateHandler();
113  return StatusCode::SUCCESS;
114 }
115 
116 // terminate data writer
118 {
119  info() << "Events output: " << m_events << endmsg;
120  if ( m_fireIncidents ) m_incidentSvc->fireIncident( Incident( m_outputName, IncidentType::EndOutputFile ) );
127  return StatusCode::SUCCESS;
128 }
129 
130 // Work entry point
132 {
133  // Clear any previously existing item list
134  clearSelection();
135  // Test whether this event should be output
136  if ( isEventAccepted() ) {
137  const StatusCode sc = writeObjects();
138  clearSelection();
139  ++m_events;
140  if ( sc.isSuccess() && m_fireIncidents ) {
141  m_incidentSvc->fireIncident( Incident( m_outputName, IncidentType::WroteToOutputFile ) );
142  } else if ( m_fireIncidents ) {
143  m_incidentSvc->fireIncident( Incident( m_outputName, IncidentType::FailOutputFile ) );
144  }
145  return sc;
146  }
147  return StatusCode::SUCCESS;
148 }
149 
150 // Select the different objects and write them to file
152 {
153  // Connect the output file to the service
154  StatusCode status = collectObjects();
155  if ( status.isSuccess() ) {
157  if ( sel->begin() != sel->end() ) {
159  if ( status.isSuccess() ) {
160  // Now pass the collection to the persistency service
161  IOpaqueAddress* pAddress = nullptr;
162  for ( auto& j : *sel ) {
163  try {
164  const StatusCode iret = m_pConversionSvc->createRep( j, pAddress );
165  if ( !iret.isSuccess() ) {
166  status = iret;
167  continue;
168  }
169  IRegistry* pReg = j->registry();
170  pReg->setAddress( pAddress );
171  } catch ( const std::exception& excpt ) {
172  const std::string loc = ( j->registry() ? j->registry()->identifier() : "UnRegistered" );
173  fatal() << "std::exception during createRep for '" << loc << "' " << System::typeinfoName( typeid( *j ) )
174  << endmsg;
175  fatal() << excpt.what() << endmsg;
176  throw;
177  }
178  }
179  for ( auto& j : *sel ) {
180  try {
181  IRegistry* pReg = j->registry();
182  const StatusCode iret = m_pConversionSvc->fillRepRefs( pReg->address(), j );
183  if ( !iret.isSuccess() ) status = iret;
184  } catch ( const std::exception& excpt ) {
185  const std::string loc = ( j->registry() ? j->registry()->identifier() : "UnRegistered" );
186  fatal() << "std::exception during fillRepRefs for '" << loc << "'" << System::typeinfoName( typeid( *j ) )
187  << endmsg;
188  fatal() << excpt.what() << endmsg;
189  throw;
190  }
191  }
192  // Commit the data if there was no error; otherwise possibly discard
193  if ( status.isSuccess() ) {
194  status = m_pConversionSvc->commitOutput( m_outputName, true );
195  } else {
197  }
198  }
199  }
200  }
201  return status;
202 }
203 
204 // Place holder to create configurable data store agent
206 {
207  if ( level < m_currentItem->depth() ) {
208  if ( dir->object() ) {
209  /*
210  std::cout << "Analysing ("
211  << dir->name()
212  << ") Object:"
213  << ((dir->object()==0) ? "UNLOADED" : "LOADED")
214  << std::endl;
215  */
216  m_objects.push_back( dir->object() );
217  return true;
218  }
219  }
220  return false;
221 }
222 
225 {
227 
228  // Traverse the tree and collect the requested objects
229  for ( auto& i : m_itemList ) {
230  DataObject* obj = nullptr;
231  m_currentItem = i;
233  if ( iret.isSuccess() ) {
234  iret = collectFromSubTree( obj );
235  if ( !iret.isSuccess() ) status = iret;
236  } else {
237  error() << "Cannot write mandatory object(s) (Not found) " << m_currentItem->path() << endmsg;
238  status = iret;
239  }
240  }
241 
242  // Traverse the tree and collect the requested objects (tolerate missing items here)
243  for ( auto& i : m_optItemList ) {
244  DataObject* obj = nullptr;
245  m_currentItem = i;
247  if ( iret.isSuccess() ) iret = collectFromSubTree( obj );
248  if ( !iret.isSuccess() ) {
249  ON_DEBUG
250  debug() << "Ignore request to write non-mandatory object(s) " << m_currentItem->path() << endmsg;
251  }
252  }
253 
254  // Collect objects dependent on particular algorithms
255  for ( const auto& iAlgItems : m_algDependentItems ) {
256  Algorithm* alg = iAlgItems.first;
257  const Items& items = iAlgItems.second;
258  if ( alg->isExecuted() && alg->filterPassed() ) {
259  ON_DEBUG
260  debug() << "Algorithm '" << alg->name() << "' fired. Adding " << items << endmsg;
261  for ( const auto& i : items ) {
262  DataObject* obj = nullptr;
263  m_currentItem = i;
265  if ( iret.isSuccess() ) {
266  iret = collectFromSubTree( obj );
267  if ( !iret.isSuccess() ) status = iret;
268  } else {
269  error() << "Cannot write mandatory (algorithm dependent) object(s) (Not found) " << m_currentItem->path()
270  << endmsg;
271  status = iret;
272  }
273  }
274  }
275  }
276 
277  if ( status.isSuccess() ) {
278  // Remove duplicates from the list of objects, preserving the order in the list
279  std::set<DataObject*> unique;
280  std::vector<DataObject*> tmp; // temporary vector with the reduced list
281  tmp.reserve( m_objects.size() );
282  for ( auto& o : m_objects ) {
283  if ( !unique.count( o ) ) {
284  // if the pointer is not in the set, add it to both the set and the temporary vector
285  unique.insert( o );
286  tmp.push_back( o );
287  }
288  }
289  m_objects.swap( tmp ); // swap the data of the two vectors
290  }
291 
292  return status;
293 }
294 
295 // Clear collected object list
297 
298 // Remove all items from the output streamer list;
300 {
301  for ( auto& i : itms ) delete i;
302  itms.clear();
303 }
304 
305 // Find single item identified by its path (exact match)
307 {
308  auto matchPath = [&]( const DataStoreItem* i ) { return i->path() == path; };
309  auto i = std::find_if( m_itemList.begin(), m_itemList.end(), matchPath );
310  if ( i == m_itemList.end() ) {
311  i = std::find_if( m_optItemList.begin(), m_optItemList.end(), matchPath );
312  if ( i == m_optItemList.end() ) return nullptr;
313  }
314  return *i;
315 }
316 
317 // Add item to output streamer list
318 void OutputStream::addItem( Items& itms, const std::string& descriptor )
319 {
320  int level = 0;
321  auto sep = descriptor.rfind( "#" );
322  std::string obj_path = descriptor.substr( 0, sep );
323  if ( sep != std::string::npos ) {
324  std::string slevel = descriptor.substr( sep + 1 );
325  level = ( slevel == "*" ) ? 9999999 : std::stoi( slevel );
326  }
327  if ( m_verifyItems ) {
328  size_t idx = obj_path.find( "/", 1 );
329  while ( idx != std::string::npos ) {
330  std::string sub_item = obj_path.substr( 0, idx );
331  if ( !findItem( sub_item ) ) addItem( itms, sub_item + "#1" );
332  idx = obj_path.find( "/", idx + 1 );
333  }
334  }
335  itms.push_back( new DataStoreItem( obj_path, level ) );
336  const auto& item = itms.back();
337  ON_DEBUG
338  debug() << "Adding OutputStream item " << item->path() << " with " << item->depth() << " level(s)." << endmsg;
339 }
340 
341 // Connect to proper conversion service
343 {
344  StatusCode status = StatusCode( StatusCode::FAILURE, true );
345  // Get output file from input
346  std::string dbType, svc, shr;
347  for ( auto attrib : Gaudi::Utils::AttribStringParser( m_output ) ) {
348  const std::string& tag = attrib.tag;
349  const std::string& val = attrib.value;
350  switch (::toupper( tag[0] ) ) {
351  case 'D':
352  m_outputName = val;
353  break;
354  case 'T':
355  dbType = val;
356  break;
357  case 'S':
358  switch (::toupper( tag[1] ) ) {
359  case 'V':
360  svc = val;
361  break;
362  case 'H':
363  shr = "YES";
364  break;
365  }
366  break;
367  case 'O': // OPT='<NEW<CREATE,WRITE,RECREATE>, UPDATE>'
368  switch (::toupper( val[0] ) ) {
369  case 'R':
370  if (::strncasecmp( val.c_str(), "RECREATE", 3 ) == 0 )
371  m_outputType = "RECREATE";
372  else if (::strncasecmp( val.c_str(), "READ", 3 ) == 0 )
373  m_outputType = "READ";
374  break;
375  case 'C':
376  case 'N':
377  case 'W':
378  m_outputType = "NEW";
379  break;
380  case 'U':
381  m_outputType = "UPDATE";
382  break;
383  default:
384  m_outputType = "???";
385  break;
386  }
387  break;
388  default:
389  break;
390  }
391  }
392  if ( !shr.empty() ) m_outputType += "|SHARED";
393  // Get access to the default Persistency service
394  // The default service is the same for input as for output.
395  // If this is not desired, then a specialized OutputStream must overwrite
396  // this value.
397  if ( !dbType.empty() || !svc.empty() ) {
398  std::string typ = !dbType.empty() ? dbType : svc;
399  auto ipers = serviceLocator()->service<IPersistencySvc>( m_persName );
400  if ( !ipers ) {
401  fatal() << "Unable to locate IPersistencySvc interface of " << m_persName << endmsg;
402  return StatusCode::FAILURE;
403  }
404  IConversionSvc* cnvSvc = nullptr;
405  status = ipers->getService( typ, cnvSvc );
406  if ( !status.isSuccess() ) {
407  fatal() << "Unable to locate IConversionSvc interface of database type " << typ << endmsg;
408  return status;
409  }
410  // Increase reference count and keep service.
411  m_pConversionSvc = cnvSvc;
412  } else {
413  fatal() << "Unable to locate IConversionSvc interface (Unknown technology) " << endmsg
414  << "You either have to specify a technology name or a service name!" << endmsg
415  << "Please correct the job option \"" << name() << ".Output\" !" << endmsg;
416  return StatusCode::FAILURE;
417  }
418  return StatusCode::SUCCESS;
419 }
420 
422 {
423  Algorithm* theAlgorithm = nullptr;
424 
425  auto theAlgMgr = serviceLocator()->as<IAlgManager>();
426  if ( theAlgMgr ) {
427  // Check whether the supplied name corresponds to an existing
428  // Algorithm object.
429  SmartIF<IAlgorithm>& theIAlg = theAlgMgr->algorithm( theName );
430  if ( theIAlg ) {
431  try {
432  theAlgorithm = dynamic_cast<Algorithm*>( theIAlg.get() );
433  } catch ( ... ) {
434  // do nothing
435  }
436  }
437  } else {
438  fatal() << "Can't locate ApplicationMgr!!!" << endmsg;
439  }
440 
441  if ( !theAlgorithm ) {
442  warning() << "Failed to decode Algorithm name " << theName << endmsg;
443  }
444 
445  return theAlgorithm;
446 }
447 
449  std::vector<Algorithm*>& theAlgs )
450 {
451  // Reset the list of Algorithms
452  theAlgs.clear();
453 
454  // Build the list of Algorithms from the names list
455  for ( const auto& it : theNames.value() ) {
456 
457  Algorithm* theAlgorithm = decodeAlgorithm( it );
458  if ( theAlgorithm ) {
459  // Check that the specified algorithm doesn't already exist in the list
460  if ( std::find( std::begin( theAlgs ), std::end( theAlgs ), theAlgorithm ) == std::end( theAlgs ) ) {
461  theAlgorithm->addRef();
462  theAlgs.push_back( theAlgorithm );
463  }
464  } else {
465  info() << it << " doesn't exist - ignored" << endmsg;
466  }
467  }
468 }
469 
471 {
472  auto passed = []( const Algorithm* alg ) { return alg->isExecuted() && alg->filterPassed(); };
473 
474  // Loop over all Algorithms in the accept list to see
475  // whether any have been executed and have their filter
476  // passed flag set. Any match causes the event to be
477  // provisionally accepted.
478  bool result = m_acceptAlgs.empty() || std::any_of( std::begin( m_acceptAlgs ), std::end( m_acceptAlgs ), passed );
479 
480  // Loop over all Algorithms in the required list to see
481  // whether all have been executed and have their filter
482  // passed flag set. Any mismatch causes the event to be
483  // rejected.
484  if ( result && !m_requireAlgs.empty() ) {
485  result = std::all_of( std::begin( m_requireAlgs ), std::end( m_requireAlgs ), passed );
486  }
487 
488  // Loop over all Algorithms in the veto list to see
489  // whether any have been executed and have their filter
490  // passed flag set. Any match causes the event to be
491  // rejected.
492  if ( result && !m_vetoAlgs.empty() ) {
493  result = std::none_of( std::begin( m_vetoAlgs ), std::end( m_vetoAlgs ), passed );
494  }
495  return result;
496 }
497 
499 {
500  return !( m_itemNames.empty() && m_optItemNames.empty() && m_algDependentItemList.empty() );
501 }
502 
504 {
505  return m_pDataManager->traverseSubTree( pObj,
506  [this]( IRegistry* r, int level ) { return this->collect( r, level ); } );
507 }
Gaudi::Property< std::vector< std::string > > m_acceptNames
Definition: OutputStream.h:60
Parse attribute strings allowing iteration over the various attributes.
void decodeAlgorithms(Gaudi::Property< std::vector< std::string >> &theNames, std::vector< Algorithm * > &theAlgs)
Decode specified list of Algorithms.
bool isEventAccepted() const
Test whether this event should be output.
constexpr static const auto FAILURE
Definition: StatusCode.h:88
void clearItems(Items &itms)
Clear item list.
virtual bool hasInput() const
Tell if the instance has been configured with input items or not.
T empty(T...args)
Gaudi::Property< std::vector< std::string > > m_vetoNames
Definition: OutputStream.h:72
IDataSelector m_objects
Collection of objects being selected.
Definition: OutputStream.h:106
StatusCode finalize() override
Terminate OutputStream.
const std::string & name() const override
The identifying name of the algorithm object.
Definition: Algorithm.cpp:747
int m_events
Number of events written to this output stream.
Definition: OutputStream.h:108
Implementation of property with value of concrete type.
Definition: Property.h:383
bool isExecuted() const override
Has this algorithm been executed since the last reset?
Definition: Algorithm.cpp:757
MsgStream & info() const
shortcut for the method msgStream(MSG::INFO)
virtual StatusCode addPreLoadItem(const DataStoreItem &item)=0
Add an item to the preload list.
std::string m_outputType
Output type: NEW(NEW,CREATE,WRITE,RECREATE), UPDATE)
Definition: OutputStream.h:90
GAUDI_API const std::string typeinfoName(const std::type_info &)
Get platform independent information about the class type.
Definition: System.cpp:332
Gaudi::Property< bool > m_verifyItems
Definition: OutputStream.h:78
DataStoreItem * m_currentItem
Keep track of the current item.
Definition: OutputStream.h:98
bool isSuccess() const
Definition: StatusCode.h:287
Gaudi::Property< std::string > m_output
Definition: OutputStream.h:54
T rfind(T...args)
Gaudi::Property< std::string > m_outputName
Definition: OutputStream.h:55
sel
Definition: IOTest.py:95
The IAlgManager is the interface implemented by the Algorithm Factory in the Application Manager to s...
Definition: IAlgManager.h:27
T end(T...args)
Gaudi::Property< ItemNames > m_optItemNames
Definition: OutputStream.h:42
virtual StatusCode createRep(DataObject *pObject, IOpaqueAddress *&refpAddress)=0
Convert the transient object to the requested representation.
std::vector< Algorithm * > m_requireAlgs
Vector of Algorithms that this stream requires.
Definition: OutputStream.h:113
IDataSelector * selectedObjects()
Return the list of selected objects.
Definition: OutputStream.h:154
SmartIF< IFace > as()
Definition: ISvcLocator.h:109
SmartIF< IDataProviderSvc > m_pDataProvider
Keep reference to the data provider service.
Definition: OutputStream.h:92
Description of the DataStoreItem class.
Definition: DataStoreItem.h:17
Gaudi::Property< bool > m_doPreLoad
Definition: OutputStream.h:50
virtual StatusCode traverseSubTree(boost::string_ref sub_tree_path, IDataStoreAgent *pAgent)=0
Analyse by traversing all data objects below the sub tree identified by its full path name...
const std::string & path() const
Accessor: Retrieve load path.
Definition: DataStoreItem.h:58
A small to stream Data I/O.
Definition: OutputStream.h:28
std::vector< Algorithm * > m_acceptAlgs
Vector of Algorithms that this stream accepts.
Definition: OutputStream.h:111
STL class.
#define DECLARE_COMPONENT(type)
virtual bool collect(IRegistry *dir, int level)
Store agent&#39;s classback.
TYPE * get() const
Get interface pointer.
Definition: SmartIF.h:82
DataStoreItem * findItem(const std::string &path)
Find single item identified by its path (exact match)
StatusCode service(const Gaudi::Utils::TypeNameString &name, T *&svc, bool createIf=true)
Templated method to access a service by name.
Definition: ISvcLocator.h:79
virtual StatusCode writeObjects()
Select the different objects and write them to file.
T push_back(T...args)
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
SmartIF< IConversionSvc > m_pConversionSvc
Keep reference to the data conversion service.
Definition: OutputStream.h:96
virtual StatusCode connectOutput(const std::string &outputFile)=0
Connect the output file to the service.
StatusCode initialize() override
Initialize OutputStream.
virtual void fireIncident(const Incident &incident)=0
Fire an Incident.
virtual StatusCode connectConversionSvc()
MsgStream & warning() const
shortcut for the method msgStream(MSG::WARNING)
AlgDependentItems m_algDependentItems
Items to be saved for specific algorithms.
Definition: OutputStream.h:104
virtual StatusCode commitOutput(const std::string &outputFile, bool do_commit)=0
Commit pending output.
T what(T...args)
Gaudi::Property< std::vector< std::string > > m_requireNames
Definition: OutputStream.h:66
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:51
Items m_itemList
Vector of items to be saved to this stream.
Definition: OutputStream.h:100
void addItem(Items &itms, const std::string &descriptor)
Add item to output streamer list.
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition: IRegistry.h:22
Gaudi::Property< AlgDependentItemNames > m_algDependentItemList
Definition: OutputStream.h:44
SmartIF< IDataManagerSvc > m_pDataManager
Keep reference to the data manager service.
Definition: OutputStream.h:94
virtual StatusCode retrieveObject(IRegistry *pDirectory, boost::string_ref path, DataObject *&pObject)=0
Retrieve object identified by its directory entry.
T clear(T...args)
void clearSelection()
Clear list of selected objects.
SmartIF< IIncidentSvc > m_incidentSvc
Reference to the incident service.
Definition: OutputStream.h:87
STL class.
SmartIF< ISvcLocator > & serviceLocator() const override
The standard service locator.
Definition: Algorithm.cpp:816
constexpr static const auto SUCCESS
Definition: StatusCode.h:87
virtual DataObject * object() const =0
Retrieve object behind the link.
T count(T...args)
StatusCode execute() override
Working entry point.
T insert(T...args)
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:79
T find_if(T...args)
T size(T...args)
STL class.
Gaudi::Property< std::string > m_storeName
Definition: OutputStream.h:56
MsgStream & debug() const
shortcut for the method msgStream(MSG::DEBUG)
T begin(T...args)
virtual void setAddress(IOpaqueAddress *pAddress)=0
Set/Update Opaque storage address.
T any_of(T...args)
const StatusCode & ignore() const
Ignore/check StatusCode.
Definition: StatusCode.h:165
bool filterPassed() const override
Did this algorithm pass or fail its filter criterion for the last event?
Definition: Algorithm.cpp:771
T c_str(T...args)
Base class for all Incidents (computing events).
Definition: Incident.h:17
T back(T...args)
Gaudi::Property< bool > m_doPreLoadOpt
Definition: OutputStream.h:52
#define ON_DEBUG
Algorithm * decodeAlgorithm(const std::string &theName)
Decode a single algorithm name.
T substr(T...args)
Data persistency service interface.
void reset(TYPE *ptr=nullptr)
Set the internal pointer to the passed one disposing of the old one.
Definition: SmartIF.h:92
StatusCode collectFromSubTree(DataObject *)
Opaque address interface definition.
MsgStream & fatal() const
shortcut for the method msgStream(MSG::FATAL)
Gaudi::Property< std::string > m_persName
Definition: OutputStream.h:58
std::vector< Algorithm * > m_vetoAlgs
Vector of Algorithms that this stream is vetoed by.
Definition: OutputStream.h:115
virtual IOpaqueAddress * address() const =0
Retrieve opaque storage address.
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30
Gaudi::Property< ItemNames > m_itemNames
Definition: OutputStream.h:41
virtual StatusCode collectObjects()
Collect all objects to be written to the output stream.
virtual StatusCode fillRepRefs(IOpaqueAddress *pAddress, DataObject *pObject)=0
Resolve the references of the converted object.
T stoi(T...args)
void toupper(std::string &s)
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:209
bool m_fireIncidents
should I fire incidents for writing opening/closing etc? in the baseclass, always fire the incidents ...
Definition: OutputStream.h:84
T reserve(T...args)
Items m_optItemList
Vector of optional items to be saved to this stream.
Definition: OutputStream.h:102