/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FastSimulation/CalorimeterProperties/interface/HCALEndcapProperties.h
30 строк
735 B
Cms Build
Clang-Format
16 май 2019, 15:48
16 май 2019, 15:48
12a0cf0
Код
Авторство
О чём код?
#ifndef HCALEndcapProperties_H #define HCALEndcapProperties_H #include "FastSimulation/CalorimeterProperties/interface/HCALProperties.h" /** * Functions to return atomic properties of the material * A_eff and Z_eff are computed as the A-weighted sums * of the A's and the Z's of Pb, W and O * * \author Patrick Janot * \date: 25-Jan-2004 */ #include <cmath> class HCALEndcapProperties : public HCALProperties { public: HCALEndcapProperties(const edm::ParameterSet& fastDet) : HCALProperties(fastDet) { ; } ~HCALEndcapProperties() override {} double getHcalDepth(double); double thickness(const double eta) const override { return HCALProperties::getHcalDepth(eta) * interactionLength(); } private: }; #endif