/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/HcalCommonData/interface/HcalSimulationConstants.h
26 строк
671 B
Sunanda
Change names to state which are not dependent on DDD
04 июн 2020, 20:47
04 июн 2020, 20:47
fcb9deb
Код
Авторство
О чём код?
#ifndef Geometry_HcalCommonData_HcalSimulationConstants_h #define Geometry_HcalCommonData_HcalSimulationConstants_h /** \class HcalSimulationConstants * * this class reads the constant section of * the xml-files related to HF for HCAL simulation * * \author Sunanda Banerjee, FNAL <sunanda.banerjee@cern.ch> * */ #include "CondFormats/GeometryObjects/interface/HcalSimulationParameters.h" class HcalSimulationConstants { public: HcalSimulationConstants(const HcalSimulationParameters* hps); ~HcalSimulationConstants(); const HcalSimulationParameters* hcalsimpar() const { return hspar_; } private: const HcalSimulationParameters* hspar_; }; #endif