ATLAS Offline Software
CylindricalEnvelope.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 G4ATLASTOOLS_CylindricalEnvelope_H
6 #define G4ATLASTOOLS_CylindricalEnvelope_H
7 
8 // Base classes
10 
11 // CLHEP includes
12 #include "CLHEP/Units/SystemOfUnits.h"
13 
14 // STL library
15 #include <string>
16 #include <vector>
17 
21 {
22  public:
24  CylindricalEnvelope(const std::string& type, const std::string& name, const IInterface *parent);
25 
26  ~CylindricalEnvelope() = default;
27 
30  virtual void BuildGeometry();
31 
32  private:
33  Gaudi::Property<std::string> m_materialName{this, "Material", "Air", "Envelope Material"};
34  Gaudi::Property<double> m_innerRadius{this, "InnerRadius", 0., "Envelope inner radius"};
35  Gaudi::Property<double> m_outerRadius{this, "OuterRadius", 0., "Envelope outer radius"};
36  Gaudi::Property<double> m_dZ{this, "dZ", 0., "Envelope dZ"};
37  Gaudi::Property<double> m_startphi{this, "StartPhi", 0., ""};
38  Gaudi::Property<double> m_deltaphi{this, "DeltaPhi", 360.*CLHEP::deg, ""};
39 };
40 
41 #endif
deg
#define deg
Definition: SbPolyhedron.cxx:17
CylindricalEnvelope::m_deltaphi
Gaudi::Property< double > m_deltaphi
Definition: CylindricalEnvelope.h:38
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
CylindricalEnvelope::m_innerRadius
Gaudi::Property< double > m_innerRadius
Definition: CylindricalEnvelope.h:34
CylindricalEnvelope
Definition: CylindricalEnvelope.h:21
CylindricalEnvelope::~CylindricalEnvelope
~CylindricalEnvelope()=default
test_pyathena.parent
parent
Definition: test_pyathena.py:15
columnar::final
CM final
Definition: ColumnAccessor.h:106
DetectorGeometryBase.h
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
CylindricalEnvelope::m_startphi
Gaudi::Property< double > m_startphi
Definition: CylindricalEnvelope.h:37
DetectorGeometryBase
Definition: DetectorGeometryBase.h:26
CylindricalEnvelope::m_dZ
Gaudi::Property< double > m_dZ
Definition: CylindricalEnvelope.h:36
CylindricalEnvelope::m_materialName
Gaudi::Property< std::string > m_materialName
Definition: CylindricalEnvelope.h:33
CylindricalEnvelope::BuildGeometry
virtual void BuildGeometry()
virtual methods being implemented here
Definition: CylindricalEnvelope.cxx:21
CylindricalEnvelope::CylindricalEnvelope
CylindricalEnvelope(const std::string &type, const std::string &name, const IInterface *parent)
Basic constructor and destructor.
Definition: CylindricalEnvelope.cxx:15
CylindricalEnvelope::m_outerRadius
Gaudi::Property< double > m_outerRadius
Definition: CylindricalEnvelope.h:35