Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
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 
10 #include "GaudiKernel/Property.h"
11 
13 public:
18 
19  /*****************************
20  ** Public Function Members **
21  *****************************/
22 
23  StatusCode initialize() override;
24  StatusCode execute() override;
25  StatusCode finalize() override;
26 
27  // BH: concurrency additions
28  virtual const std::vector<std::string> get_inputs();
29  virtual const std::vector<std::string> get_outputs();
30 
31 private:
32  /**************************
33  ** Private Data Members **
34  **************************/
35 
39  int m_total = 0;
40 
41  Gaudi::Property<std::vector<std::string>> m_inputs{this, "Input", {}, "List of required inputs"};
42  Gaudi::Property<std::vector<std::string>> m_outputs{this, "Output", {}, "List of provided outputs"};
43 
46 };
std::vector< DataObjectHandle< DataObject > * > m_outputHandles
Implementation of property with value of concrete type.
Definition: Property.h:352
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:50
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:71
GaudiAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Standard constructor.