ATLAS Offline Software
Loading...
Searching...
No Matches
PixelDigitization.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3 */
4
5#include "PixelDigitization.h"
6
7// Constructor with parameters:
9 ISvcLocator* pSvcLocator) :
10 AthAlgorithm(name, pSvcLocator) {
11}
12
13// Initialize method:
15 ATH_MSG_DEBUG("initialize()");
17 ATH_MSG_DEBUG("Successfully retreived IPixelDigitizaitonTool.");
18 return StatusCode::SUCCESS;
19}
20
21// Execute method:
23 ATH_MSG_DEBUG("execute()");
24 return m_pixelDigitizationTool->processAllSubEvents(Gaudi::Hive::currentContext());
25}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x)
AthAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters:
virtual StatusCode execute() override final
ToolHandle< IPileUpTool > m_pixelDigitizationTool
virtual StatusCode initialize() override final
PixelDigitization(const std::string &name, ISvcLocator *pSvcLocator)