ATLAS Offline Software
Loading...
Searching...
No Matches
StripDigitization.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
5#include "StripDigitization.h"
7
8namespace ITk
9{
10
11//----------------------------------------------------------------------
12// Constructor with parameters:
13//----------------------------------------------------------------------
14StripDigitization::StripDigitization(const std::string& name, ISvcLocator* pSvcLocator) :
15 AthAlgorithm(name, pSvcLocator)
16{
17}
18
19//----------------------------------------------------------------------
20// Initialize method:
21//----------------------------------------------------------------------
23 ATH_MSG_DEBUG("StripDigitization::initialize()");
24 return StatusCode::SUCCESS ;
25}
26
27//----------------------------------------------------------------------
28// Execute method:
29//----------------------------------------------------------------------
30
32 ATH_MSG_DEBUG("execute()");
33 return m_stripDigitizationTool->processAllSubEvents(Gaudi::Hive::currentContext());
34}
35
36} // namespace ITk
#define ATH_MSG_DEBUG(x)
a call-back interface for tools that merge pileup events information An IPileUpTool is called back fo...
Header file for StripDigitization class.
AthAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters:
ToolHandle< IPileUpTool > m_stripDigitizationTool
virtual StatusCode execute() override final
StripDigitization(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters.
virtual StatusCode initialize() override final
Basic algorithm methods.