1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
//-*-c++-*-
//-*-GG.h-*-
// Written by James Monk and Andrew Pilkington
/////////////////////////////////////////////////////////////////////////////
#ifndef GG_HH
#define GG_HH
#include "GeneratorInterface/ExhumeInterface/interface/TwoSpace.h"
namespace Exhume {
class GG : public TwoSpace {
public:
GG(const edm::ParameterSet&);
//declare inherited functions
double SubProcess() override;
void LIPS2Amp() override;
void Amp2LIPS() override;
private:
double EighteenPI;
double InvSinTheta;
/*
void SetPartons();
void SetSubParameters();
double SubParameterWeight();
void MaximiseSubParameters();
double SubParameterRange();
//declare sub-process specific functions
void SetThetaMin(const double&);
private:
//internal functions
double WeightFunc(const double&);
//internal Parameters
double CosTheta,CosThetaMin,CosThetaMax;
double ThetaMin,ThetaMax, SinThetaMin;
double Theta,SinTheta,InvSinTheta;
double E, Px,Py,Pz,Phi;
double SubWgt;
double EighteenPI;
*/
};
} // namespace Exhume
#endif
|