The Gaudi Framework  v29r0 (ff2e7097)
EvtCollectionStream.cpp
Go to the documentation of this file.
1 // ====================================================================
2 // EvtCollectionStream.cpp
3 // --------------------------------------------------------------------
4 //
5 // Package : GaudiSvc/PersistencySvc
6 //
7 // Author : Markus Frank
8 //
9 // ====================================================================
10 #define GAUDISVC_PERSISTENCYSVC_EVTCOLLECTIONSTREAM_CPP
11 
12 // Framework include files
14 #include "GaudiKernel/INTupleSvc.h"
15 #include "GaudiKernel/MsgStream.h"
16 
17 #include "EvtCollectionStream.h"
19 
20 // Define the algorithm factory for the standard output data writer
22 
23 // initialize data writer
25 {
26  // Use the Job options service to set the Algorithm's parameters
27  setProperties();
28  // Get access to the DataManagerSvc
29  m_pTupleSvc = serviceLocator()->service( m_storeName );
30  if ( !m_pTupleSvc ) {
31  fatal() << "Unable to locate IDataManagerSvc interface" << endmsg;
32  return StatusCode::FAILURE;
33  }
34  // Clear the item list
35  clearItems();
36  // Take the new item list from the properties.
37  for ( const auto& i : m_itemNames ) addItem( i );
38  info() << "Data source: " << m_storeName.value() << endmsg;
39  return StatusCode::SUCCESS;
40 }
41 
42 // terminate data writer
44 {
45  m_pTupleSvc = nullptr; // release
46  clearItems();
47  return StatusCode::SUCCESS;
48 }
49 
50 // Work entry point
52 {
54  if ( status.isSuccess() ) {
55  for ( const auto& i : m_itemList ) {
56  StatusCode iret = m_pTupleSvc->writeRecord( i->path() );
57  if ( !iret.isSuccess() ) status = iret;
58  }
59  }
60  return status;
61 }
62 
63 // Remove all items from the output streamer list;
65 
66 // Add item to output streamer list
67 void EvtCollectionStream::addItem( const std::string& descriptor )
68 {
69  auto sep = descriptor.rfind( "#" );
70  int level = 0;
71  std::string obj_path = descriptor.substr( 0, sep );
72  if ( sep != std::string::npos ) {
73  std::string slevel = descriptor.substr( sep + 1 );
74  if ( slevel == "*" ) {
75  level = 9999999;
76  } else {
77  level = std::stoi( slevel );
78  }
79  }
80  m_itemList.emplace_back( new DataStoreItem( obj_path, level ) );
81  const auto& item = m_itemList.back();
82  info() << "Adding OutputStream item " << item->path() << " with " << item->depth() << " level(s)." << endmsg;
83 }
MsgStream & info() const
shortcut for the method msgStream(MSG::INFO)
SmartIF< INTupleSvc > m_pTupleSvc
Reference to Tuple service for event collection (may or may not be NTuple service) ...
bool isSuccess() const
Test for a status code of SUCCESS.
Definition: StatusCode.h:75
T rfind(T...args)
Description of the DataStoreItem class.
Definition: DataStoreItem.h:17
#define DECLARE_COMPONENT(type)
Definition: PluginService.h:33
STL class.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:28
virtual StatusCode writeRecord(NTuple::Tuple *tuple)=0
Write single record to N tuple.
std::vector< std::unique_ptr< DataStoreItem > > m_itemList
Vector of items to be saved to this stream.
T clear(T...args)
void clearItems()
Clear item list.
void addItem(const std::string &descriptor)
Add item to output streamer list.
StatusCode finalize() override
Terminate EvtCollectionStream.
T back(T...args)
T substr(T...args)
StatusCode execute() override
Working entry point.
A small to stream Data I/O.
T stoi(T...args)
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:209
T emplace_back(T...args)