ATLAS Offline Software
Loading...
Searching...
No Matches
jobOptions.Superchic_UPC_yyMuMu.py
Go to the documentation of this file.
1evgenConfig.description = "Superchic gamma + gamma UPC collisions at 5020 GeV"
2evgenConfig.keywords = ["2photon","2lepton"]
3#evgenConfig.weighting = 0
4evgenConfig.contact = ["prabhakar.palni@cern.ch"]
5evgenConfig.generators += ["Superchic"]
6
7from Superchic_i.SuperChicUtils import SuperChicConfig, SuperChicRun
8
9#class with the superchic initialization parameters. Please see SuperChicUtils for a complete list of tunable parameters.
10scConfig = SuperChicConfig(runArgs)
11
12scConfig.isurv = 4 # Model of soft survival (from 1 -> 4, corresponding to arXiv:1306.2149)
13scConfig.PDFname = 'MMHT2014lo68cl' # PDF set name
14scConfig.PDFmember = 0 # PDF member
15scConfig.proc = 59 # Process number (59 = gg->gg, 56 = gg->ee, 68 = gg->a->gg ); Please consult Superchic Manual https://superchic.hepforge.org/
16scConfig.beam = 'ion' # Beam type ('prot', 'ion')
17scConfig.sfaci = False # Include soft survival effects
18scConfig.ncall = 100000 # Number of calls for preconditioning
19scConfig.itmx = 1 # Number of iterations for preconditioning
20scConfig.prec = 1.0 # precision
21
22SuperChicRun(scConfig, genSeq)
23
24import Superchic_i.EventFiller as EF
25ef = EF.LheEVNTFiller()
26ef.fileName = scConfig.outputLHEFile()
27outputFileName = "outputs/output"+scConfig.outtg+".dat"
28ef.outputFileName = outputFileName
29genSeq += ef