ATLAS Offline Software
Loading...
Searching...
No Matches
mc.SFGenPy8_MuMu_SDA.py
Go to the documentation of this file.
1evgenConfig.description = "SFGen MC gamma + gamma pp collisions at 13000 GeV to 2 muons with dissociation on single side"
2evgenConfig.keywords = ["2photon","2muon","dissociation"]
3evgenConfig.contact = ["lucian.harland-lang@physics.ox.ac.uk"]
4
5from SFGen_i.SFGenUtils import SFGenConfig, SFGenRun
6
7#class with the sfgen initialization parameters. Please see SFGenUtils for a complete list of tunable parameters.
8scConfig = SFGenConfig(runArgs)
9
10scConfig.PDFname = 'SF_MSHT20qed_nnlo' # PDF set name
11scConfig.PDFmember = 0 # PDF member
12scConfig.proc = 2 # Process number, see SFGen Manual for labelling at https://sfgen.hepforge.org/
13
14scConfig.diff = 'sda' # interaction: elastic ('el'), single ('sd','sda','sdb') and double ('dd') dissociation.
15scConfig.genunw = True
16scConfig.ymin = -5.0 # Minimum dilepton rapidity
17scConfig.ymax = 5.0 # Maximum dilepton rapidity
18scConfig.mmin = 20 # Minimum dilepton mass
19scConfig.mmax = 2000 # Maximum dilepton mass
20scConfig.gencuts = True # Generate cuts below
21
22scConfig.ptamin = 10.0 # Minimum pT of outgoing object a
23scConfig.ptbmin = 10. # Minimum pT of outgoing object b
24scConfig.etaamin = -2.5 # Minimum eta of outgoing object a
25scConfig.etaamax = 2.5 # Maximum eta of outgoing object a
26scConfig.etabmin = -2.5 # Minimum eta of outgoing object b
27scConfig.etabmax = 2.5 # Maximum eta of outgoing object b
28
29
30SFGenRun(scConfig, genSeq)
31include('SFGen_i/Pythia8_SD_Common.py')