/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FastSimulation/CalorimeterProperties/interface/HCALBarrelProperties.h
34 строки
775 B
Cms Build
Clang-Format
16 май 2019, 15:48
16 май 2019, 15:48
12a0cf0
Код
Авторство
О чём код?
#ifndef HCALBarrelProperties_H #define HCALBarrelProperties_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> namespace edm { class ParameterSet; } class HCALBarrelProperties : public HCALProperties { public: HCALBarrelProperties(const edm::ParameterSet& fastDet) : HCALProperties(fastDet) { ; } ~HCALBarrelProperties() override {} double getHcalDepth(double); double thickness(const double eta) const override { return HCALProperties::getHcalDepth(eta) * interactionLength(); } private: }; #endif