/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
GeneratorInterface/ExhumeInterface/plugins/DiPhoton.h
34 строки
700 B
Matti Kortelainen
Move contents of ExhumeHadronizer.{h,cc} to ExhumeGeneratorFilter
16 мар 2026, 11:45
16 мар 2026, 11:45
c901e15
Код
Авторство
О чём код?
//-*-c++-*- //-*-DiPhoton.h-*- // Written by James Monk and Andrew Pilkington ///////////////////////////////////////////////////////////////////////////// #ifndef DI_PHOTON_HH #define DI_PHOTON_HH #include "TwoSpace.h" namespace Exhume { class DiPhoton : public TwoSpace { public: DiPhoton(const edm::ParameterSet&); //declare inherited functions double SubProcess() override; void LIPS2Amp() override; void Amp2LIPS() override; private: double MatrixElement(); //internal functions //internal Parameters double t_; //internal double PI2, Inv64PI2; int Nc; double MatFact; int Nup; int Ndown; }; } // namespace Exhume #endif