ATLAS Offline Software
Loading...
Searching...
No Matches
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#--------------------------------------------------------------
12evgenConfig.description = "POWHEG+Pythia8 W production in Standard Model Effective Field Theory with A14 NNPDF2.3 tune."
13evgenConfig.keywords = ["SM", "W", "BSM"]
14evgenConfig.contact = ["tpelzer@cern.ch"]
15
16# --------------------------------------------------------------
17# Load ATLAS defaults for the Powheg W_SMEFT process
18# --------------------------------------------------------------
19include("PowhegControl/PowhegControl_W_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.ImGUw_uu = 0.0
37PowhegConfig.ReGDw_ds = 0.0
38PowhegConfig.ImGDw_dd = 0.0
39PowhegConfig.QLu_uu = 0.001
40PowhegConfig.QLd_dd = 0.001
41PowhegConfig.ReLedQ_dd = 0.001
42PowhegConfig.ReLeQu_uu = 0.001
43PowhegConfig.ReLeQu3_uu = 0.001
44PowhegConfig.ReLeQu_uc = 0.01
45PowhegConfig.ReLedQ_ds = 0.01
46PowhegConfig.ReLeQu3_uc = 0.01
47PowhegConfig.QLd_sb = 0.01
48
49PowhegConfig.generate()
50
51#--------------------------------------------------------------
52# Pythia8 showering with the A14 NNPDF2.3 tune, main31 routine
53#--------------------------------------------------------------
54include("Pythia8_i/Pythia8_A14_NNPDF23LO_EvtGen_Common.py")
55include("Pythia8_i/Pythia8_Powheg_Main31.py")