ATLAS Offline Software
Loading...
Searching...
No Matches
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#--------------------------------------------------------------
12evgenConfig.description = "POWHEG+Pythia8 Z production in Standard Model Effective Field Theory with A14 NNPDF2.3 tune."
13evgenConfig.keywords = ["SM", "Z", "BSM"]
14evgenConfig.contact = ["stefan.richter@cern.ch"]
15
16# --------------------------------------------------------------
17# Load ATLAS defaults for the Powheg Z_SMEFT process
18# --------------------------------------------------------------
19include("PowhegControl/PowhegControl_Z_SMEFT_Common.py")
20
21# --------------------------------------------------------------
22# Generate events
23# --------------------------------------------------------------
24
25# Enable dimension-6 operators
26PowhegConfig.dim6 = 1
27
28# Engable flavour-changing neutral currents
29PowhegConfig.fcnc = 1
30
31# Set scale of new physics (in GeV)
32PowhegConfig.LambdaNP = 1000.0
33
34# Set dimension-6 operator coefficients
35PowhegConfig.ReGUw_uu = 0.0
36PowhegConfig.ReGUe_uu = 0.0
37PowhegConfig.ImGUw_uu = 0.0
38PowhegConfig.ImGUe_uu = 0.0
39PowhegConfig.ReGDw_ds = 0.0
40PowhegConfig.ReGDe_dd = 0.0
41PowhegConfig.ImGDw_dd = 0.0
42PowhegConfig.ImGDe_dd = 0.0
43PowhegConfig.QLu_uu = 0.001
44PowhegConfig.QLd_dd = 0.001
45PowhegConfig.Ceu_uu = 0.001
46PowhegConfig.Ced_dd = 0.001
47PowhegConfig.CLu_uu = 0.001
48PowhegConfig.CLd_dd = 0.001
49PowhegConfig.Qe_dd = 0.1
50PowhegConfig.ReLedQ_dd = 0.001
51PowhegConfig.ReLeQu_uu = 0.001
52PowhegConfig.ReLeQu3_uu = 0.001
53PowhegConfig.ReLeQu_uc = 0.01
54PowhegConfig.ReLedQ_ds = 0.01
55PowhegConfig.ReLeQu3_uc = 0.01
56PowhegConfig.QLd_sb = 0.01
57PowhegConfig.CLd_sb = 0.01
58
59PowhegConfig.generate()
60
61#--------------------------------------------------------------
62# Pythia8 showering with the A14 NNPDF2.3 tune, main31 routine
63#--------------------------------------------------------------
64include("Pythia8_i/Pythia8_A14_NNPDF23LO_EvtGen_Common.py")
65include("Pythia8_i/Pythia8_Powheg_Main31.py")