ATLAS Offline Software
Loading...
Searching...
No Matches
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#--------------------------------------------------------------
12evgenConfig.description = "POWHEG+Pythia8 Drell-Yan Vector LeptoQuark production with A14 NNPDF2.3 tune."
13evgenConfig.keywords = ["BSM", "leptoquark"]
14evgenConfig.contact = ["tpelzer@cern.ch"]
15
16# --------------------------------------------------------------
17# Load ATLAS defaults for the Powheg Drell-Yan Vector LeptoQuark process
18# --------------------------------------------------------------
19include("PowhegControl/PowhegControl_DY_VLQ_Common.py")
20
21# --------------------------------------------------------------
22# Relevant parameters for this process
23# --------------------------------------------------------------
24# 4321 Model Parameters
25PowhegConfig.g4 = 1.0 # SU(4) coupling strength g4
26PowhegConfig.betaL3x3 = 1.0 # Relative coupling strength to left-handed fermions (3rd generation)
27PowhegConfig.betaR3x3 = 1.0 # Relative coupling strength to right-handed fermions (3rd generation)
28PowhegConfig.MU1 = 2e3 # Mass of vector leptoquark U1
29PowhegConfig.MGp = 2e3 # Mass of the coloron Gp
30# General Leptoquark (LQ) Parameters
31PowhegConfig.SM = 1 # Include SM contribution
32PowhegConfig.LQ = 0 # Include basic LQ contributions
33PowhegConfig.LQ_Int = 0 # Include the interference between the SM and the LQ contributions
34PowhegConfig.mass_t = 172.5 # top-quark (running) mass
35PowhegConfig.mass_low = 2000 # lower limit for dilepton mass
36PowhegConfig.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# --------------------------------------------------------------
45PowhegConfig.ncall1 = 10000
46PowhegConfig.ncall2 = 10000
47PowhegConfig.nubound = 10000
48
49
50# --------------------------------------------------------------
51# Generate events
52# --------------------------------------------------------------
53PowhegConfig.generate()
54
55#--------------------------------------------------------------
56# Pythia8 showering with the A14 NNPDF2.3 tune, main31 routine
57#--------------------------------------------------------------
58include("Pythia8_i/Pythia8_A14_NNPDF23LO_EvtGen_Common.py")
59include("Pythia8_i/Pythia8_Powheg_Main31.py")
60# Setting the appropriate number of final state particles for the main31 routine
61genSeq.Pythia8.Commands += [ 'Powheg:NFinal = 2' ]