ATLAS Offline Software
DED_Technology.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef DED_H
6 #define DED_H
7 
9 
10 #include <string>
11 
12 namespace MuonGM {
13 
14  class MYSQL;
15 
16  class DED : public Technology {
17  public:
18  double AlThickness{0.};
19  double HoneyCombThickness{0.};
20 
21  DED(MYSQL& mysql, std::string s);
22 
23  bool hasAlHoneyComb() const { return false; };
24  bool hasPaperHoneyComb() const { return true; };
25  };
26 } // namespace MuonGM
27 
28 #endif
MuonGM
Ensure that the Athena extensions are properly loaded.
Definition: GeoMuonHits.h:27
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
MuonGM::DED::HoneyCombThickness
double HoneyCombThickness
Definition: DED_Technology.h:19
MuonGM::DED::hasAlHoneyComb
bool hasAlHoneyComb() const
Definition: DED_Technology.h:23
MuonGM::MYSQL
Definition: MYSQL.h:43
MuonGM::Technology
Definition: Technology.h:15
MuonGM::DED::AlThickness
double AlThickness
Definition: DED_Technology.h:18
MuonGM::DED::hasPaperHoneyComb
bool hasPaperHoneyComb() const
Definition: DED_Technology.h:24
MuonGM::DED
Definition: DED_Technology.h:16
MuonGM::DED::DED
DED(MYSQL &mysql, std::string s)
Definition: DED_Technology.cxx:22
Technology.h