ATLAS Offline Software
FillParamsCondAlg.h
Go to the documentation of this file.
1 // This file's extension implies that it's C, but it's really -*- C++ -*-.
2 /*
3  * Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration.
4  */
13 #ifndef COOLLUMIUTILITIES_FILLPARAMSCONDALG_H
14 #define COOLLUMIUTILITIES_FILLPARAMSCONDALG_H
15 
16 
22 
23 
28  : public AthReentrantAlgorithm
29 {
30 public:
33 
34 
36  virtual StatusCode initialize() override final;
37 
38 
40  virtual StatusCode execute (const EventContext& ctx) const override final;
41  virtual bool isReEntrant() const override final { return false; }
42 
43 private:
46  { this, "FillParamsFolderInputKey", "", "" };
47 
50  {this, "FillParamsOutputKey", "FillParamsCondData", "" };
51 };
52 
53 
54 #endif // not COOLLUMIUTILITIES_FILLPARAMSCONDALG_H
WriteCondHandleKey.h
FillParamsCondAlg::initialize
virtual StatusCode initialize() override final
Gaudi initialize method.
Definition: FillParamsCondAlg.cxx:30
const
bool const RAWDATA *ch2 const
Definition: LArRodBlockPhysicsV0.cxx:562
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:83
AthReentrantAlgorithm::AthReentrantAlgorithm
AthReentrantAlgorithm()
Default constructor:
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
FillParamsCondData.h
Holds fill parameters data.
FillParamsCondAlg::execute
virtual StatusCode execute(const EventContext &ctx) const override final
Algorithm execute method.
Definition: FillParamsCondAlg.cxx:43
ReadCondHandleKey.h
AthReentrantAlgorithm.h
AthenaAttributeList.h
An AttributeList represents a logical row of attributes in a metadata table. The name and type of eac...
SG::ReadCondHandleKey< AthenaAttributeList >
FillParamsCondAlg::m_fillParamsFolderInputKey
SG::ReadCondHandleKey< AthenaAttributeList > m_fillParamsFolderInputKey
Input conditions object.
Definition: FillParamsCondAlg.h:46
SG::WriteCondHandleKey< FillParamsCondData >
FillParamsCondAlg
Conditions algorithm to unpack fill parameters from COOL.
Definition: FillParamsCondAlg.h:29
FillParamsCondAlg::m_fillParamsOutputKey
SG::WriteCondHandleKey< FillParamsCondData > m_fillParamsOutputKey
Output conditions object.
Definition: FillParamsCondAlg.h:50
FillParamsCondAlg::isReEntrant
virtual bool isReEntrant() const override final
Definition: FillParamsCondAlg.h:41