ATLAS Offline Software
Loading...
Searching...
No Matches
mc.H7_Matchbox_Internal_Zee_H71-DEFAULT_Gridpack.py
Go to the documentation of this file.
1from Herwig7_i.Herwig7_iConf import Herwig7
2from Herwig7_i.Herwig7ConfigMatchbox import Hw7ConfigMatchbox
3
4genSeq += Herwig7()
5
6
7evgenConfig.generators += ["Herwig7"]
8evgenConfig.tune = "H7.1-Default"
9evgenConfig.description = "Herwig7 Zee sample with CT10 ME PDF and H7.1-Default PS and UE tune"
10evgenConfig.keywords = ["SM","Z","electron"]
11evgenConfig.contact = ["Daniel Rauch (daniel.rauch@desy.de)"]
12
13
14
15generator = Hw7ConfigMatchbox(genSeq, runArgs, run_name="HerwigMatchbox", beams="pp")
16
17
18generator.me_pdf_commands(order="NLO", name="CT10")
19generator.tune_commands()
20
21
22generator.add_commands("""
23##################################################
24## Process selection
25##################################################
26
27## Model assumptions
28read Matchbox/StandardModelLike.in
29
30## Set the hard process
31set /Herwig/MatrixElements/Matchbox/Factory:OrderInAlphaS 0
32set /Herwig/MatrixElements/Matchbox/Factory:OrderInAlphaEW 2
33do /Herwig/MatrixElements/Matchbox/Factory:Process p p -> e+ e-
34
35
36##################################################
37## Matrix element library selection
38##################################################
39
40# read Matchbox/MadGraph-MadGraph.in
41# read Matchbox/MadGraph-NJet.in
42# read Matchbox/MadGraph-OpenLoops.in
43# read Matchbox/HJets.in
44# read Matchbox/VBFNLO.in
45
46
47##################################################
48## Cut selection
49## See the documentation for more options
50##################################################
51
52set /Herwig/Cuts/ChargedLeptonPairMassCut:MinMass 60*GeV
53set /Herwig/Cuts/ChargedLeptonPairMassCut:MaxMass 120*GeV
54
55## cuts on additional jets
56
57# read Matchbox/DefaultPPJets.in
58
59# insert JetCuts:JetRegions 0 FirstJet
60# insert JetCuts:JetRegions 1 SecondJet
61# insert JetCuts:JetRegions 2 ThirdJet
62# insert JetCuts:JetRegions 3 FourthJet
63
64##################################################
65## Scale choice
66## See the documentation for more options
67##################################################
68
69cd /Herwig/MatrixElements/Matchbox
70set Factory:ScaleChoice /Herwig/MatrixElements/Matchbox/Scales/LeptonPairMassScale
71
72##################################################
73## Matching and shower selection
74## Please also see flavour scheme settings
75## towards the end of the input file.
76##################################################
77
78# read Matchbox/MCatNLO-DefaultShower.in
79# read Matchbox/Powheg-DefaultShower.in
80## use for strict LO/NLO comparisons
81read Matchbox/MCatLO-DefaultShower.in
82## use for improved LO showering
83# read Matchbox/LO-DefaultShower.in
84
85# read Matchbox/MCatNLO-DipoleShower.in
86# read Matchbox/Powheg-DipoleShower.in
87## use for strict LO/NLO comparisons
88# read Matchbox/MCatLO-DipoleShower.in
89## use for improved LO showering
90# read Matchbox/LO-DipoleShower.in
91
92# read Matchbox/LO-NoShower.in
93# read Matchbox/NLO-NoShower.in
94
95
96##################################################
97## PDF choice
98##################################################
99
100read Matchbox/FiveFlavourScheme.in
101## required for dipole shower and fixed order in five flavour scheme
102# read Matchbox/FiveFlavourNoBMassScheme.in
103""")
104
105
106generator.sampler_commands("MonacoSampler", 20000, 4, 50000, 1, 100)
107
108
109generator.run(gridpack="Internal-Zee.tar.gz")
Interface to athena.
Definition Herwig7.h:129