ATLAS Offline Software
LArBadFebCondAlg.h
Go to the documentation of this file.
1 //Dear emacs, this is -*- c++ -*-
2 
3 /*
4  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 #ifndef LARBADFEBCONDALG_H
8 #define LARBADFEBCONDALG_H
9 
15 
17  public:
18  //Delegate to base-class ctor
20  virtual ~LArBadFebCondAlg()=default;
21 
22  virtual StatusCode initialize() override final;
23  virtual StatusCode execute(const EventContext& ctx) const override final;
24  virtual StatusCode finalize() override final{return StatusCode::SUCCESS;}
25  virtual bool isReEntrant() const override final { return false; }
26 
27  private:
28  SG::ReadCondHandleKey<AthenaAttributeList> m_BCInputKey{this,"ReadKey","/LAR/BadFebsOfl/BadFebs",
29  "Key of input CDO (AttributeList)"};
30  SG::WriteCondHandleKey<LArBadFebCont> m_BCOutputKey{this,"WriteKey","LArBadFeb","Key of output CDO"};
31 
32  Gaudi::Property<std::string> m_inputFileName{this,"InputFileName","",
33  "Optional file containing (supplemental) bad Febs"};
34 };
35 
36 
37 
38 #endif
LArBadFebCondAlg::m_BCOutputKey
SG::WriteCondHandleKey< LArBadFebCont > m_BCOutputKey
Definition: LArBadFebCondAlg.h:30
LArBadFebCondAlg::m_BCInputKey
SG::ReadCondHandleKey< AthenaAttributeList > m_BCInputKey
Definition: LArBadFebCondAlg.h:28
LArBadFebCondAlg::~LArBadFebCondAlg
virtual ~LArBadFebCondAlg()=default
WriteCondHandleKey.h
const
bool const RAWDATA *ch2 const
Definition: LArRodBlockPhysicsV0.cxx:562
LArBadFebCondAlg::finalize
virtual StatusCode finalize() override final
Definition: LArBadFebCondAlg.h:24
AthenaAttributeList.h
LArBadFebCondAlg::execute
virtual StatusCode execute(const EventContext &ctx) const override final
Definition: LArBadFebCondAlg.cxx:21
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:83
LArBadChannelCont.h
AthReentrantAlgorithm::AthReentrantAlgorithm
AthReentrantAlgorithm()
Default constructor:
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
LArBadFebCondAlg::m_inputFileName
Gaudi::Property< std::string > m_inputFileName
Definition: LArBadFebCondAlg.h:32
ReadCondHandleKey.h
AthReentrantAlgorithm.h
LArBadFebCondAlg::initialize
virtual StatusCode initialize() override final
Definition: LArBadFebCondAlg.cxx:11
SG::ReadCondHandleKey< AthenaAttributeList >
LArBadFebCondAlg
Definition: LArBadFebCondAlg.h:16
LArBadFebCondAlg::isReEntrant
virtual bool isReEntrant() const override final
Definition: LArBadFebCondAlg.h:25
SG::WriteCondHandleKey
Definition: WriteCondHandleKey.h:20