ATLAS Offline Software
Loading...
Searching...
No Matches
PixelFastDigitization.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_PIXELFASTDIGITIZATION_H
6#define FASTSIDIGITIZATION_PIXELFASTDIGITIZATION_H
7
8#include "GaudiKernel/ToolHandle.h"
10
11class IPileUpTool;
12
15
16 public:
17
19 PixelFastDigitization(const std::string &name,ISvcLocator *pSvcLocator);
20
22 virtual ~PixelFastDigitization() = default;
23
25 virtual StatusCode initialize() override final;
26 virtual StatusCode execute() override final;
27
28 private:
29 ToolHandle<IPileUpTool> m_digTool{this, "DigitizationTool", "PixelFastDigitizationTool", "AthAlgTool which performs the Pixel digitization"};
30};
31
32#endif // FASTSIDIGITIZATION_PIXELFASTDIGITIZATION_H
AthAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters:
ToolHandle< IPileUpTool > m_digTool
virtual StatusCode initialize() override final
Basic algorithm methods.
PixelFastDigitization(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters.
virtual ~PixelFastDigitization()=default
Destructor.
virtual StatusCode execute() override final
#define private