All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
HiveTestAlgorithm.h
Go to the documentation of this file.
1 //
2 // HiveTestAlgorithm.h
3 //
4 //
5 // Created by Benedikt Hegner on 7/21/12.
6 // Copyright (c) 2012 __CERN__. All rights reserved.
7 //
8 
9 #include "GaudiAlg/GaudiAlgorithm.h"
10 #include "GaudiKernel/Property.h"
11 
13  public:
14 
18  HiveTestAlgorithm( const std::string& name, ISvcLocator* pSvcLocator );
19 
23  virtual ~HiveTestAlgorithm( );
24 
25  /*****************************
26  ** Public Function Members **
27  *****************************/
28 
32 
33  // BH: concurrency additions
34  virtual const std::vector<std::string> get_inputs();
35  virtual const std::vector<std::string> get_outputs();
36 
37  private:
38 
39  /**************************
40  ** Private Data Members **
41  **************************/
42 
46  int m_total;
47 
48  std::vector<std::string> m_inputs;
49  std::vector<std::string> m_outputs;
50 };
51 
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
#define GAUDI_API
Definition: Kernel.h:107
StatusCode initialize() override
standard initialization method
StatusCode execute() override
standard execution method
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
StatusCode finalize() override
standard finalization method
The useful base class for data processing algorithms.
std::vector< std::string > m_outputs
std::vector< std::string > m_inputs
int m_total
The total events seen.