ATLAS Offline Software
mc.PhPy8EG_A14NNPDF23_Z_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 Z production in Standard Model Effective Field Theory with A14 NNPDF2.3 tune."
13 evgenConfig.keywords = ["SM", "Z", "BSM"]
14 evgenConfig.contact = ["stefan.richter@cern.ch"]
15 
16 # --------------------------------------------------------------
17 # Load ATLAS defaults for the Powheg Z_SMEFT process
18 # --------------------------------------------------------------
19 include("PowhegControl/PowhegControl_Z_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.ReGUe_uu = 0.0
37 PowhegConfig.ImGUw_uu = 0.0
38 PowhegConfig.ImGUe_uu = 0.0
39 PowhegConfig.ReGDw_ds = 0.0
40 PowhegConfig.ReGDe_dd = 0.0
41 PowhegConfig.ImGDw_dd = 0.0
42 PowhegConfig.ImGDe_dd = 0.0
43 PowhegConfig.QLu_uu = 0.001
44 PowhegConfig.QLd_dd = 0.001
45 PowhegConfig.Ceu_uu = 0.001
46 PowhegConfig.Ced_dd = 0.001
47 PowhegConfig.CLu_uu = 0.001
48 PowhegConfig.CLd_dd = 0.001
49 PowhegConfig.Qe_dd = 0.1
50 PowhegConfig.ReLedQ_dd = 0.001
51 PowhegConfig.ReLeQu_uu = 0.001
52 PowhegConfig.ReLeQu3_uu = 0.001
53 PowhegConfig.ReLeQu_uc = 0.01
54 PowhegConfig.ReLedQ_ds = 0.01
55 PowhegConfig.ReLeQu3_uc = 0.01
56 PowhegConfig.QLd_sb = 0.01
57 PowhegConfig.CLd_sb = 0.01
58 
59 PowhegConfig.generate()
60 
61 #--------------------------------------------------------------
62 # Pythia8 showering with the A14 NNPDF2.3 tune, main31 routine
63 #--------------------------------------------------------------
64 include("Pythia8_i/Pythia8_A14_NNPDF23LO_EvtGen_Common.py")
65 include("Pythia8_i/Pythia8_Powheg_Main31.py")
python.Include.include
include
Definition: Include.py:318