ATLAS Offline Software
mc.PhPy8EG_A14NNPDF23_W_SMEFT_example.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2021 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 W production in Standard Model Effective Field Theory with A14 NNPDF2.3 tune."
13 evgenConfig.keywords = ["SM", "W", "BSM"]
14 evgenConfig.contact = ["tpelzer@cern.ch"]
15 
16 # --------------------------------------------------------------
17 # Load ATLAS defaults for the Powheg W_SMEFT process
18 # --------------------------------------------------------------
19 include("PowhegControl/PowhegControl_W_SMEFT_Common.py")
20 
21 # --------------------------------------------------------------
22 # Generate events
23 # --------------------------------------------------------------
24 
25 # Enable dimension-6 operators
26 PowhegConfig.dim6 = 1
27 
28 # Engable flavour-changing neutral currents
29 PowhegConfig.fcnc = 1
30 
31 # Set scale of new physics (in GeV)
32 PowhegConfig.LambdaNP = 1000.0
33 
34 # Set dimension-6 operator coefficients
35 PowhegConfig.ReGUw_uu = 0.0
36 PowhegConfig.ImGUw_uu = 0.0
37 PowhegConfig.ReGDw_ds = 0.0
38 PowhegConfig.ImGDw_dd = 0.0
39 PowhegConfig.QLu_uu = 0.001
40 PowhegConfig.QLd_dd = 0.001
41 PowhegConfig.ReLedQ_dd = 0.001
42 PowhegConfig.ReLeQu_uu = 0.001
43 PowhegConfig.ReLeQu3_uu = 0.001
44 PowhegConfig.ReLeQu_uc = 0.01
45 PowhegConfig.ReLedQ_ds = 0.01
46 PowhegConfig.ReLeQu3_uc = 0.01
47 PowhegConfig.QLd_sb = 0.01
48 
49 PowhegConfig.generate()
50 
51 #--------------------------------------------------------------
52 # Pythia8 showering with the A14 NNPDF2.3 tune, main31 routine
53 #--------------------------------------------------------------
54 include("Pythia8_i/Pythia8_A14_NNPDF23LO_EvtGen_Common.py")
55 include("Pythia8_i/Pythia8_Powheg_Main31.py")
python.Include.include
include
Definition: Include.py:318