ATLAS Offline Software
Loading...
Searching...
No Matches
mc.MGPy8EG_Toponium_Singlet_2L.py
Go to the documentation of this file.
1# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2
3from EvgenJobTransforms.EvgenCAConfig import EvgenConfig
4
5class Sample(EvgenConfig):
6
7 def setupFlags(self, flags):
8 self.description = "Toponium production with 2L, singlet part, showering only, m_t = 173 GeV"
9 self.keywords = ["SM", "top"]
10 self.contact = ["spyros.argyropoulos@cern.ch"]
11 self.nEventsPerJob = 1000
12 # This uses LHE produced by MG
13 self.MEgenerator = "MadGraph"
15
16
17 def setupProcess(self, flags):
18 from Pythia8_i.Pythia8Config import (
19 Pythia8_MadGraph_Cfg,
20 Pythia8_A14_NNPDF23LO_EvtGen_Common_Cfg,
21 )
22
23 # Set up MadGraph + Pythia8
24 sampleConfig = Pythia8_MadGraph_Cfg(
25 flags,
26 # Specify tune and EvtGen
27 ShowerCfg=Pythia8_A14_NNPDF23LO_EvtGen_Common_Cfg,
28 )
29
30 return sampleConfig