File indexing completed on 2024-04-06 12:11:13
0001 #ifndef HCALEndcapProperties_H
0002 #define HCALEndcapProperties_H
0003
0004 #include "FastSimulation/CalorimeterProperties/interface/HCALProperties.h"
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #include <cmath>
0016
0017 class HCALEndcapProperties : public HCALProperties {
0018 public:
0019 HCALEndcapProperties(const edm::ParameterSet& fastDet) : HCALProperties(fastDet) { ; }
0020
0021 ~HCALEndcapProperties() override {}
0022
0023 double getHcalDepth(double);
0024
0025 double thickness(const double eta) const override { return HCALProperties::getHcalDepth(eta) * interactionLength(); }
0026
0027 private:
0028 };
0029
0030 #endif