ATLAS Offline Software
CaloCellTimeCorrTool.h
Go to the documentation of this file.
1 //Dear emacs, this is -*-c++-*-
2 /*
3  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
4 */
5 
6 
7 
8 #ifndef CALOCELLCORRECTION_CALOCELLTIMECORRTOOL_H
9 #define CALOCELLCORRECTION_CALOCELLTIMECORRTOOL_H
13 
14 class CaloCellContainer;
15 
21  : public extends<AthAlgTool, ICaloCellMakerTool>
22 {
23 public:
24 
25  CaloCellTimeCorrTool (const std::string& type, const std::string& name,
26  const IInterface* parent);
27 
29  virtual StatusCode initialize() override;
30 
31  virtual StatusCode process (CaloCellContainer* theCellContainer,
32  const EventContext& ctx) const override;
33 
34 private:
35  SG::ReadCondHandleKey<AthenaAttributeList> m_timeShiftFldr{this,"Folder","/CALO/Ofl/CellTimeCorr","Key (=foldername) of AttrListCollection"};
36 
37 };
38 
39 #endif
CaloCellTimeCorrTool::m_timeShiftFldr
SG::ReadCondHandleKey< AthenaAttributeList > m_timeShiftFldr
Definition: CaloCellTimeCorrTool.h:35
AthenaAttributeList.h
CaloCellTimeCorrTool::process
virtual StatusCode process(CaloCellContainer *theCellContainer, const EventContext &ctx) const override
Definition: CaloCellTimeCorrTool.cxx:25
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgTool.h
test_pyathena.parent
parent
Definition: test_pyathena.py:15
CaloCellTimeCorrTool::~CaloCellTimeCorrTool
~CaloCellTimeCorrTool()
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
CaloCellContainer
Container class for CaloCell.
Definition: CaloCellContainer.h:55
ICaloCellMakerTool.h
SG::ReadCondHandleKey< AthenaAttributeList >
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
CaloCellTimeCorrTool
Tool to shift cell time values.
Definition: CaloCellTimeCorrTool.h:22
CaloCellTimeCorrTool::initialize
virtual StatusCode initialize() override
Definition: CaloCellTimeCorrTool.cxx:18
CaloCellTimeCorrTool::CaloCellTimeCorrTool
CaloCellTimeCorrTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition: CaloCellTimeCorrTool.cxx:10