00001 #ifndef ECALEndcapProperties_H 00002 #define ECALEndcapProperties_H 00003 00004 #include "FastSimulation/CalorimeterProperties/interface/ECALProperties.h" 00005 00015 namespace edm { 00016 class ParameterSet; 00017 } 00018 00019 class ECALEndcapProperties : public ECALProperties 00020 { 00021 00022 public: 00023 00024 ECALEndcapProperties(const edm::ParameterSet& fastDet) ; 00025 00026 virtual ~ECALEndcapProperties() { } 00027 00029 double thickness(double eta) const { return 22.0; } 00030 00032 inline double photoStatistics() const { return 50E3; } 00033 00035 inline double lightCollectionEfficiency() const { return lightColl; } 00036 00038 inline double lightCollectionUniformity() const {return 0.003;} 00039 00040 }; 00041 00042 #endif