ATLAS Offline Software
DeadMaterialTool.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef DEADMATERIAL_DEADMATERIALTOOL_H
6 #define DEADMATERIAL_DEADMATERIALTOOL_H
7 
8 // Base class header
10 
11 // STL library
12 #include <string>
13 
20 {
21 public:
22  // Basic constructor and destructor
23  DeadMaterialTool(const std::string& type, const std::string& name, const IInterface *parent);
24  ~DeadMaterialTool() = default;
25 
27  virtual void BuildGeometry() override final;
28 
29 private:
30  Gaudi::Property<double> m_zLength{this, "ZLength", 0.};
31  Gaudi::Property<double> m_yLength{this, "YLength", 0.};
32  Gaudi::Property<double> m_xLength{this, "XLength", 0.};
33 };
34 
35 #endif //DEADMATERIAL_DEADMATERIALTOOL_H
DeadMaterialTool::m_yLength
Gaudi::Property< double > m_yLength
Definition: DeadMaterialTool.h:31
Property
Support class for PropertyMgr.
Definition: Property.h:23
DeadMaterialTool::~DeadMaterialTool
~DeadMaterialTool()=default
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
test_pyathena.parent
parent
Definition: test_pyathena.py:15
columnar::final
CM final
Definition: ColumnAccessor.h:106
DeadMaterialTool::DeadMaterialTool
DeadMaterialTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition: DeadMaterialTool.cxx:22
DetectorGeometryBase.h
DeadMaterialTool::BuildGeometry
virtual void BuildGeometry() override final
virtual methods being implemented here
Definition: DeadMaterialTool.cxx:27
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
DeadMaterialTool::m_xLength
Gaudi::Property< double > m_xLength
Definition: DeadMaterialTool.h:32
DetectorGeometryBase
Definition: DetectorGeometryBase.h:26
Gaudi
=============================================================================
Definition: CaloGPUClusterAndCellDataMonitorOptions.h:273
private
#define private
Definition: xAODTruthCnvAlg.h:20
DeadMaterialTool::m_zLength
Gaudi::Property< double > m_zLength
Definition: DeadMaterialTool.h:30
DeadMaterialTool
Definition: DeadMaterialTool.h:20