ATLAS Offline Software
Loading...
Searching...
No Matches
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
27 using AthReentrantAlgorithm::AthReentrantAlgorithm;
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
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid from which a WriteHandle is made.
An algorithm that can be simultaneously executed in multiple threads.
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid from which a WriteHandle is made.
This algorithm applies noise filter tools to input Tile raw channel container.
ToolHandleArray< ITileRawChannelTool > m_noiseFilterTools
SG::ReadHandleKey< TileRawChannelContainer > m_inputRawChannelContainerKey
virtual StatusCode execute(const EventContext &ctx) const override
SG::WriteHandleKey< TileRawChannelContainer > m_outputRawChannelContainerKey
virtual StatusCode initialize() override
virtual ~TileRawChannelCorrectionAlg() override=default