/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
GeneratorInterface/Pythia6Interface/plugins/Pythia6JetGun.h
32 строки
582 B
Cms Build
Clang-Format
16 май 2019, 15:48
16 май 2019, 15:48
0847e19
Код
Авторство
О чём код?
#ifndef gen_Pythia6JetGun_h #define gen_Pythia6JetGun_h #include "Pythia6ParticleGun.h" namespace CLHEP { class HepRandomEngine; } namespace gen { class Pythia6JetGun : public Pythia6ParticleGun { public: Pythia6JetGun(const edm::ParameterSet&); ~Pythia6JetGun() override; // void produce( edm::Event&, const edm::EventSetup& ) ; protected: void generateEvent(CLHEP::HepRandomEngine*) override; private: double fMinEta; double fMaxEta; double fMinE; double fMaxE; double fMinP; double fMaxP; }; } // namespace gen #endif