ATLAS Offline Software
SiSmearedDigitization.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef FASTSIDIGITIZATION_SISMEAREDDIGITIZATION_H
6 #define FASTSIDIGITIZATION_SISMEAREDDIGITIZATION_H
7 
8 #include "GaudiKernel/ToolHandle.h"
10 
11 class IPileUpTool;
12 
15 
16  public:
17 
19  SiSmearedDigitization(const std::string &name,ISvcLocator *pSvcLocator);
20 
22  virtual StatusCode initialize() override final;
23  virtual StatusCode execute() override final;
24 
25  private:
26  ToolHandle<IPileUpTool> m_smearTool{this, "DigitizationTool", "SiSmearedDigitizationTool", "AthAlgTool which performs the Pixel or SCT smearing"};
27 };
28 
29 #endif // FASTSIDIGITIZATION_SISMEAREDDIGITIZATION_H
AthAlgorithm.h
SiSmearedDigitization::execute
virtual StatusCode execute() override final
Definition: SiSmearedDigitization.cxx:32
SiSmearedDigitization::SiSmearedDigitization
SiSmearedDigitization(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters.
Definition: SiSmearedDigitization.cxx:11
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
IPileUpTool
Definition: IPileUpTool.h:24
SiSmearedDigitization::initialize
virtual StatusCode initialize() override final
Basic algorithm methods.
Definition: SiSmearedDigitization.cxx:19
AthAlgorithm
Definition: AthAlgorithm.h:47
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
SiSmearedDigitization::m_smearTool
ToolHandle< IPileUpTool > m_smearTool
Definition: SiSmearedDigitization.h:26
SiSmearedDigitization
Top algorithm class for Pixel digitization.
Definition: SiSmearedDigitization.h:14