Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
LArHVCorrMaker.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 //Dear emacs, this is -*-c++-*-
6 
7 #ifndef LARHVCORRMAKER_H
8 #define LARHVCORRMAKER_H
9 
10 // Include files
15 
16 
17 //-----------------------------------------------------------------------
19 //------`-----------------------------------------------------------------
20 {
21  public:
22 
23  //Delgate constructor
25 
26 
27  // Destructor
28  virtual ~LArHVCorrMaker();
29 
30  // Algorithm initialization
31  virtual StatusCode initialize() override;
32 
33  // Algorithm execution
34  virtual StatusCode execute() override;
35 
36  // Algorithm finalization
37  virtual StatusCode stop() override;
38  virtual StatusCode finalize() override {return StatusCode::SUCCESS;}
39 
40  private:
41 
42  Gaudi::Property<std::string> m_folderName{this,"folderName", "/LAR/ElecCalibFlat/HVScaleCorr",
43  "Folder to store the CondAttrListCollection containing the HVScale correction"};
44  BooleanProperty m_isSC{this, "SuperCell", false, "Runnning for SC ?"};
45 
47  { this, "LArHVScaleCorr", "LArHVScaleCorrRecomputed", "" };
49  { this, "CablingKey", "LArOnOffIdMap", "SG Key of LArOnOffIdMapping object" };
50 
51 };
52 
53 #endif
LArHVCorrMaker::initialize
virtual StatusCode initialize() override
Definition: LArHVCorrMaker.cxx:27
LArHVCorrMaker::finalize
virtual StatusCode finalize() override
Definition: LArHVCorrMaker.h:38
LArHVCorrMaker::m_scaleCorrKey
SG::ReadCondHandleKey< ILArHVScaleCorr > m_scaleCorrKey
Definition: LArHVCorrMaker.h:47
AthAlgorithm.h
LArHVCorrMaker
Definition: LArHVCorrMaker.h:20
LArOnOffIdMapping.h
LArHVCorrMaker::m_cablingKey
SG::ReadCondHandleKey< LArOnOffIdMapping > m_cablingKey
Definition: LArHVCorrMaker.h:49
ILArHVScaleCorr.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgorithm
Definition: AthAlgorithm.h:47
ReadCondHandleKey.h
LArHVCorrMaker::m_isSC
BooleanProperty m_isSC
Definition: LArHVCorrMaker.h:44
SG::ReadCondHandleKey< ILArHVScaleCorr >
LArHVCorrMaker::m_folderName
Gaudi::Property< std::string > m_folderName
Definition: LArHVCorrMaker.h:42
AthAlgorithm::AthAlgorithm
AthAlgorithm()
Default constructor:
LArHVCorrMaker::stop
virtual StatusCode stop() override
Definition: LArHVCorrMaker.cxx:44
LArHVCorrMaker::execute
virtual StatusCode execute() override
Definition: LArHVCorrMaker.cxx:37
LArHVCorrMaker::~LArHVCorrMaker
virtual ~LArHVCorrMaker()