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
|
(run){
% general setting
EVENTS 1M; ERROR 0.99;
% scales, tags for scale variations
FSF:=1.; RSF:=1.; QSF:=1.;
SCALES METS{FSF*MU_F2}{RSF*MU_R2}{QSF*MU_Q2};
% tags for process setup
NJET:=2; LJET:=2; QCUT:=20.;
% me generator settings
ME_SIGNAL_GENERATOR Comix Amegic LOOPGEN;
EVENT_GENERATION_MODE Weighted;
LOOPGEN:=BlackHat;
% exclude tau from lepton container
MASSIVE[15] 1;
% collider setup
BEAM_1 2212; BEAM_ENERGY_1 = 6500.;
BEAM_2 2212; BEAM_ENERGY_2 = 6500.;
}(run)
(processes){
Process 93 93 -> 90 91 93{NJET};
Order (*,2); CKKW sqr(QCUT/E_CMS);
NLO_QCD_Mode MC@NLO {LJET};
ME_Generator Amegic {LJET};
RS_ME_Generator Comix {LJET};
Loop_Generator LOOPGEN {LJET};
Integration_Error 0.02 {4};
Integration_Error 0.02 {5};
Integration_Error 0.05 {6};
Integration_Error 0.08 {7};
Integration_Error 0.10 {8};
Scales LOOSE_METS{FSF*MU_F2}{RSF*MU_R2}{QSF*MU_Q2} {7,8};
End process;
}(processes)
(selector){
Mass 11 -12 1. E_CMS
Mass 13 -14 1. E_CMS
Mass -11 12 1. E_CMS
Mass -13 14 1. E_CMS
}(selector)
|