The Gaudi Framework  v30r3 (a5ef0a68)
InputCopyStream.cpp
Go to the documentation of this file.
1 // Framework include files
2 #include "InputCopyStream.h"
10 #include "GaudiKernel/MsgStream.h"
11 
12 // Define the algorithm factory for the standard output data writer
14 
15 // Standard Constructor
16 InputCopyStream::InputCopyStream( const std::string& name, ISvcLocator* pSvcLocator )
17  : OutputStream( name, pSvcLocator )
18 {
19  m_doPreLoad = false;
20  m_doPreLoadOpt = false;
21 }
22 
23 // Initialize the instance.
25 {
27  if ( sc.isFailure() ) return sc;
28 
29  sc = toolSvc()->retrieveTool( "DataSvcFileEntriesTool", "InputCopyStreamTool", m_leavesTool );
30  return sc;
31 }
32 
33 // Finalize the instance.
35 {
37  m_leavesTool = nullptr;
38  return OutputStream::finalize();
39 }
40 
43 {
44  // Get the objects in the same file as the root node
45  try {
46  // Get all the leaves on the input stream
48 
49  // Do we need to veto anything ?
50  if ( UNLIKELY( !m_tesVetoList.empty() ) ) {
51  // Veto out locations
52  IDataStoreLeaves::LeavesList filteredLeaves;
53  filteredLeaves.reserve( leaves.size() );
54  std::copy_if( leaves.begin(), leaves.end(), std::back_inserter( filteredLeaves ),
55  [&]( IDataStoreLeaves::LeavesList::const_reference i ) {
56  return i && i->registry() &&
57  std::find( m_tesVetoList.begin(), m_tesVetoList.end(), i->registry()->identifier() ) ==
58  m_tesVetoList.end();
59 
60  } );
61  // save the veto'ed list
62  m_objects.assign( filteredLeaves.begin(), filteredLeaves.end() );
63 
64  } else {
65  // no veto'ing, so save everything
66  m_objects.assign( leaves.begin(), leaves.end() );
67  }
68  } catch ( const GaudiException& e ) {
69  error() << e.message() << endmsg;
70  return StatusCode::FAILURE;
71  }
72 
73  // Collect the other objects from the transient store (mandatory and optional)
75 }
virtual const LeavesList & leaves() const =0
Return the list of leaves.
virtual const std::string & message() const
error message to be printed
#define UNLIKELY(x)
Definition: Kernel.h:122
constexpr static const auto FAILURE
Definition: StatusCode.h:88
Extension of OutputStream to copy the content of the main input file.
T copy_if(T...args)
StatusCode initialize() override
Initialize the instance.
Define general base for Gaudi exception.
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
IDataSelector m_objects
Collection of objects being selected.
Definition: OutputStream.h:93
StatusCode finalize() override
Terminate OutputStream.
SmartIF< IToolSvc > & toolSvc() const
The standard ToolSvc service, Return a pointer to the service if present.
Definition: Algorithm.cpp:828
STL namespace.
T end(T...args)
bool isFailure() const
Definition: StatusCode.h:139
StatusCode retrieveTool(const std::string &type, T *&tool, const IInterface *parent=nullptr, bool createIf=true)
Retrieve specified tool sub-type with tool dependent part of the name automatically assigned...
Definition: IToolSvc.h:139
A small to stream Data I/O.
Definition: OutputStream.h:29
#define DECLARE_COMPONENT(type)
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
StatusCode initialize() override
Initialize OutputStream.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:51
IDataStoreLeaves * m_leavesTool
Pointer to the (public) tool used to retrieve the objects in a file.
Gaudi::Property< std::vector< std::string > > m_tesVetoList
T find(T...args)
T size(T...args)
T assign(T...args)
T begin(T...args)
T back_inserter(T...args)
const StatusCode & ignore() const
Ignore/check StatusCode.
Definition: StatusCode.h:165
StatusCode finalize() override
Finalize the instance.
virtual StatusCode releaseTool(IAlgTool *tool)=0
Release the tool.
StatusCode collectObjects() override
Collect all objects to be written to the output stream.
virtual StatusCode collectObjects()
Collect all objects to be written to the output stream.
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:209
T reserve(T...args)