The Gaudi Framework  v29r0 (ff2e7097)
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 
23  ~HiveTestAlgorithm() override = default;
24 
25  /*****************************
26  ** Public Function Members **
27  *****************************/
28 
29  StatusCode initialize() override;
30  StatusCode execute() override;
31  StatusCode finalize() override;
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  ** Private Data Members **
40  **************************/
41 
45  int m_total = 0;
46 
47  Gaudi::Property<std::vector<std::string>> m_inputs{this, "Input", {}, "List of required inputs"};
48  Gaudi::Property<std::vector<std::string>> m_outputs{this, "Output", {}, "List of provided outputs"};
49 
52 };
std::vector< DataObjectHandle< DataObject > * > m_outputHandles
Implementation of property with value of concrete type.
Definition: Property.h:319
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:28
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:110