/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
GeneratorInterface/ExhumeInterface/plugins/QQ.h
47 строк
1 KB
Matti Kortelainen
Move contents of ExhumeHadronizer.{h,cc} to ExhumeGeneratorFilter
16 мар 2026, 11:45
16 мар 2026, 11:45
c901e15
Код
Авторство
О чём код?
//-*-c++-*- //-*-QQ.h-*- // Written by James Monk and Andrew Pilkington ///////////////////////////////////////////////////////////////////////////// #ifndef QQ_HH #define QQ_HH #include "TwoSpace.h" namespace Exhume { class QQ : public TwoSpace { public: QQ(const edm::ParameterSet&); //declare inherited functions double SubProcess() override; void LIPS2Amp() override; void Amp2LIPS() override; void SetQuarkType(const int&); private: double InvSinTheta; /* void SetPartons(); void SetSubParameters(); double SubParameterWeight(); void MaximiseSubParameters(); double SubParameterRange(); //declare sub-process specific functions void SetThetaMin(const double&); void SetQuarkType(const int&); private: //internal functions double WeightFunc(const double&); //internal Parameters double qMass,qMassSq; double CosTheta,CosThetaMin,CosThetaMax; double ThetaMin,ThetaMax, SinThetaMin; double Theta,SinTheta,InvSinTheta; double E,P,Px,Py,Pz,Phi; double SubWgt; */ }; } // namespace Exhume #endif