ATLAS Offline Software
TileRawChannelCorrectionAlg.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef TILERECUTILS_TILERAWCHANNELCORRECTIONALG_H
6 #define TILERECUTILS_TILERAWCHANNELCORRECTIONALG_H
7 
8 // Tile includes
11 
12 // Athena includes
16 
17 // Gaudi includes
18 #include "GaudiKernel/ToolHandle.h"
19 
25  public:
26 
28 
29  virtual ~TileRawChannelCorrectionAlg() override = default;
30 
31  virtual StatusCode initialize() override;
32  virtual StatusCode execute(const EventContext& ctx) const override;
33 
34  private:
35 
37  "InputRawChannelContainer", "TileRawChannelCnt", "Input Tile raw channels container key"};
38 
40  "OutputRawChannelContainer", "TileRawChannelCntCorrected", "Output Tile digits container key"};
41 
42  ToolHandleArray<ITileRawChannelTool> m_noiseFilterTools{this,
43  "NoiseFilterTools", {}, "Tile noise filter tools"};
44 };
45 
46 #endif // TILERECUTILS_TILERAWCHANNELCORRECTIONALG_H
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
TileRawChannelCorrectionAlg::m_outputRawChannelContainerKey
SG::WriteHandleKey< TileRawChannelContainer > m_outputRawChannelContainerKey
Definition: TileRawChannelCorrectionAlg.h:39
TileRawChannelCorrectionAlg::m_noiseFilterTools
ToolHandleArray< ITileRawChannelTool > m_noiseFilterTools
Definition: TileRawChannelCorrectionAlg.h:42
ITileRawChannelTool.h
SG::ReadHandleKey< TileRawChannelContainer >
TileRawChannelCorrectionAlg::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition: TileRawChannelCorrectionAlg.cxx:33
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:83
TileRawChannelContainer.h
AthReentrantAlgorithm::AthReentrantAlgorithm
AthReentrantAlgorithm()
Default constructor:
TileRawChannelCorrectionAlg
This algorithm applies noise filter tools to input Tile raw channel container.
Definition: TileRawChannelCorrectionAlg.h:24
SG::WriteHandleKey< TileRawChannelContainer >
TileRawChannelCorrectionAlg::m_inputRawChannelContainerKey
SG::ReadHandleKey< TileRawChannelContainer > m_inputRawChannelContainerKey
Definition: TileRawChannelCorrectionAlg.h:36
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthReentrantAlgorithm.h
WriteHandleKey.h
Property holding a SG store/key/clid from which a WriteHandle is made.
TileRawChannelCorrectionAlg::initialize
virtual StatusCode initialize() override
Definition: TileRawChannelCorrectionAlg.cxx:16
TileRawChannelCorrectionAlg::~TileRawChannelCorrectionAlg
virtual ~TileRawChannelCorrectionAlg() override=default