ATLAS Offline Software
Loading...
Searching...
No Matches
mergingDJRs_example.py
Go to the documentation of this file.
1# Check Pythia8 README for more details and the full steps on how to generate the lhe file.
2# In this example, we considered the production of Z+2jets where Z decays to e+e-
3
4include("Pythia8_i/Pythia8_A14_NNPDF23LO_EvtGen_Common.py")
5
6
7evgenConfig.description = 'Example UserHook for computing CKKWL merging DJRs'
8evgenConfig.keywords+=['Z','jets']
9evgenConfig.generators += ['MadGraph', 'EvtGen', 'Pythia8']
10
11include("Pythia8_i/Pythia8_LHEF.py")
12
13PYTHIA8_nJetMax=2
14PYTHIA8_Process='pp>e-e+'
15PYTHIA8_Dparameter=0.4
16PYTHIA8_TMS=20.0
17PYTHIA8_nQuarksMerge=4
18
19# Include to activate the CKKWL merging
20include("Pythia8_i/Pythia8_CKKWL_kTMerge.py")
21
22# Include to compute the DJRs and save them in ROOT file
23include("Pythia8_i/Pythia8_mergingDJRs.py")
24