EventNodeKiller.h
Go to the documentation of this file.
1 #ifndef EVENTNODEKILLER_H
2 #define EVENTNODEKILLER_H 1
3 
4 // Include files
5 // from Gaudi
6 #include "GaudiAlg/GaudiAlgorithm.h"
7 #include <vector>
8 #include <string>
9 
18 public:
20  EventNodeKiller( const std::string& name, ISvcLocator* pSvcLocator );
21 
22  ~EventNodeKiller( ) override = default;
23 
24  StatusCode execute() override;
25 
26 private:
27  std::vector<std::string> m_nodes;
28 };
29 #endif // EVENTNODEKILLER_H
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
std::vector< std::string > m_nodes
String property "Nodes".
Algorithm to kill nodes in the event data store.
EventNodeKiller(const std::string &name, ISvcLocator *pSvcLocator)
Standard constructor.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
The useful base class for data processing algorithms.
~EventNodeKiller() override=default
Destructor.
StatusCode execute() override
Algorithm execution.