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