/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FastSimulation/ShowerDevelopment/interface/HSParameters.h
37 строк
1 KB
Cms Build
Clang-Format
16 май 2019, 15:48
16 май 2019, 15:48
12a0cf0
Код
Авторство
О чём код?
#ifndef FastSimulation_ShowerDevelopment_HSParameters_H #define FastSimulation_ShowerDevelopment_HSParameters_H /** * Parameters used in the hadron fast simulation */ namespace edm { class ParameterSet; } class HSParameters { public: HSParameters() { ; } HSParameters(const edm::ParameterSet& params); ~HSParameters() { ; } // Methods to provide FamosHDShower with constants inline int getHDlossesOpt() const { return lossesOpt_; } inline int getHDnDepthSteps() const { return nDepthSteps_; } inline int getHDnTRsteps() const { return nTRsteps_; } inline double getHDtransParam() const { return transParam_; } inline double getHDeSpotSize() const { return eSpotSize_; } inline double getHDdepthStep() const { return depthStep_; } inline double getHDcriticalEnergy() const { return criticalEnergy_; } inline double getHDmaxTRfactor() const { return maxTRfactor_; } inline double getHDbalanceEH() const { return balanceEH_; } inline double getHDhcalDepthFactor() const { return hcalDepthFactor_; } private: //FamosHDshower-related group of parameters int lossesOpt_, nDepthSteps_, nTRsteps_; double transParam_, eSpotSize_, depthStep_, criticalEnergy_, maxTRfactor_; double balanceEH_, hcalDepthFactor_; }; #endif