ATLAS Offline Software
mc.PhPy8EG_A14NNPDF23_DY_VLQ_example.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2 
3 #--------------------------------------------------------------
4 # This is an example joboption to generate events with Powheg
5 # using ATLAS' interface. Users should optimise and carefully
6 # validate the settings before making an official sample request.
7 #--------------------------------------------------------------
8 
9 #--------------------------------------------------------------
10 # EVGEN configuration
11 #--------------------------------------------------------------
12 evgenConfig.description = "POWHEG+Pythia8 Drell-Yan Vector LeptoQuark production with A14 NNPDF2.3 tune."
13 evgenConfig.keywords = ["BSM", "leptoquark"]
14 evgenConfig.contact = ["tpelzer@cern.ch"]
15 
16 # --------------------------------------------------------------
17 # Load ATLAS defaults for the Powheg Drell-Yan Vector LeptoQuark process
18 # --------------------------------------------------------------
19 include("PowhegControl/PowhegControl_DY_VLQ_Common.py")
20 
21 # --------------------------------------------------------------
22 # Relevant parameters for this process
23 # --------------------------------------------------------------
24 # 4321 Model Parameters
25 PowhegConfig.g4 = 1.0 # SU(4) coupling strength g4
26 PowhegConfig.betaL3x3 = 1.0 # Relative coupling strength to left-handed fermions (3rd generation)
27 PowhegConfig.betaR3x3 = 1.0 # Relative coupling strength to right-handed fermions (3rd generation)
28 PowhegConfig.MU1 = 2e3 # Mass of vector leptoquark U1
29 PowhegConfig.MGp = 2e3 # Mass of the coloron Gp
30 # General Leptoquark (LQ) Parameters
31 PowhegConfig.SM = 1 # Include SM contribution
32 PowhegConfig.LQ = 0 # Include basic LQ contributions
33 PowhegConfig.LQ_Int = 0 # Include the interference between the SM and the LQ contributions
34 PowhegConfig.mass_t = 172.5 # top-quark (running) mass
35 PowhegConfig.mass_low = 2000 # lower limit for dilepton mass
36 PowhegConfig.mass_high = 2100 # upper limit for dilepton mass
37 #PowhegConfig.runningscale = 1
38 #PowhegConfig.new_damp = 1
39 #PowhegConfig.hnew_damp = 0.5
40 #PowhegConfig.hdamp = 1.0
41 
42 # --------------------------------------------------------------
43 # Integration settings
44 # --------------------------------------------------------------
45 PowhegConfig.ncall1 = 10000
46 PowhegConfig.ncall2 = 10000
47 PowhegConfig.nubound = 10000
48 
49 
50 # --------------------------------------------------------------
51 # Generate events
52 # --------------------------------------------------------------
53 PowhegConfig.generate()
54 
55 #--------------------------------------------------------------
56 # Pythia8 showering with the A14 NNPDF2.3 tune, main31 routine
57 #--------------------------------------------------------------
58 include("Pythia8_i/Pythia8_A14_NNPDF23LO_EvtGen_Common.py")
59 include("Pythia8_i/Pythia8_Powheg_Main31.py")
60 # Setting the appropriate number of final state particles for the main31 routine
61 genSeq.Pythia8.Commands += [ 'Powheg:NFinal = 2' ]
python.Include.include
include
Definition: Include.py:318