The Gaudi Framework  v30r3 (a5ef0a68)
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 
10 #include "GaudiKernel/Property.h"
11 
13 {
14 public:
19 
20  /*****************************
21  ** Public Function Members **
22  *****************************/
23 
24  StatusCode initialize() override;
25  StatusCode execute() override;
26  StatusCode finalize() override;
27 
28  // BH: concurrency additions
29  virtual const std::vector<std::string> get_inputs();
30  virtual const std::vector<std::string> get_outputs();
31 
32 private:
33  /**************************
34  ** Private Data Members **
35  **************************/
36 
40  int m_total = 0;
41 
42  Gaudi::Property<std::vector<std::string>> m_inputs{this, "Input", {}, "List of required inputs"};
43  Gaudi::Property<std::vector<std::string>> m_outputs{this, "Output", {}, "List of provided outputs"};
44 
47 };
std::vector< DataObjectHandle< DataObject > * > m_outputHandles
Implementation of property with value of concrete type.
Definition: Property.h:381
StatusCode initialize() override
standard initialization method
Header file for class GaudiAlgorithm.
StatusCode execute() override
standard execution method
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:51
StatusCode finalize() override
standard finalization method
The useful base class for data processing algorithms.
std::vector< InputHandle_t< In > > m_inputs
std::vector< DataObjectHandle< DataObject > * > m_inputHandles
#define GAUDI_API
Definition: Kernel.h:104
GaudiAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Standard constructor.