/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimMuon/GEMDigitizer/interface/ME0PreRecoGaussianModel.h
55 строк
1 KB
Cms Build
Clang-Format
20 май 2019, 13:02
20 май 2019, 13:02
a5e57e4
Код
Авторство
О чём код?
#ifndef SimMuon_GEMDigitizer_ME0PreRecoGaussianModel_h #define SimMuon_GEMDigitizer_ME0PreRecoGaussianModel_h /** * \class ME0PreRecoGaussianModel * * Class for the ME0 Gaussian response simulation as pre-reco step */ #include "SimMuon/GEMDigitizer/interface/ME0DigiPreRecoModel.h" class ME0Geometry; namespace CLHEP { class HepRandomEngine; } class ME0PreRecoGaussianModel : public ME0DigiPreRecoModel { public: ME0PreRecoGaussianModel(const edm::ParameterSet&); ~ME0PreRecoGaussianModel() override; void simulateSignal(const ME0EtaPartition*, const edm::PSimHitContainer&, CLHEP::HepRandomEngine*) override; void simulateNoise(const ME0EtaPartition*, CLHEP::HepRandomEngine*) override; double correctSigmaU(const ME0EtaPartition*, double); void setup() override {} private: double sigma_t; double sigma_u; double sigma_v; double error_u; double error_v; bool gaussianSmearing_; double constPhiSmearing_; bool corr; bool etaproj; bool digitizeOnlyMuons_; double averageEfficiency_; // bool simulateIntrinsicNoise_; // not implemented // double averageNoiseRate_; // not implemented bool simulateElectronBkg_; bool simulateNeutralBkg_; int minBunch_; int maxBunch_; double instLumi_; double rateFact_; double referenceInstLumi_; // params for the simple pol6 model of neutral bkg for ME0: std::vector<double> neuBkg, eleBkg; }; #endif