|
25 | 25 | parser.add_argument('-ini',help='generator init parameters file, for example: ${O2DPG_ROOT}/MC/config/PWGHF/ini/GeneratorHF.ini', default='') |
26 | 26 | parser.add_argument('-confKey',help='generator or trigger configuration key values, for example: GeneratorPythia8.config=pythia8.cfg', default='') |
27 | 27 |
|
28 | | -parser.add_argument('-eCMS',help='CMS energy', default=-1) |
29 | | -parser.add_argument('-eBeamA',help='Beam A energy', default=6499.) #6369 PbPb, 2.510 pp 5 TeV, 4 pPb |
30 | | -parser.add_argument('-eBeamB',help='Beam B energy', default=-1) |
| 28 | +parser.add_argument('-eCM',help='CMS energy', default=-1) |
| 29 | +parser.add_argument('-eA',help='Beam A energy', default=6499.) #6369 PbPb, 2.510 pp 5 TeV, 4 pPb |
| 30 | +parser.add_argument('-eB',help='Beam B energy', default=-1) |
31 | 31 | parser.add_argument('-col',help='collision sytem: pp, PbPb, pPb, Pbp, ...', default='pp') |
32 | 32 | parser.add_argument('-ptHatBin',help='pT hard bin number', default=-1) |
33 | 33 | parser.add_argument('-ptHatMin',help='pT hard minimum when no bin requested', default=0) |
@@ -162,9 +162,9 @@ def getDPL_global_options(bigshm=False,nosmallrate=False): |
162 | 162 | # function encapsulating the signal sim part |
163 | 163 | # first argument is timeframe id |
164 | 164 | RNDSEED=args.seed # 0 means random seed ! |
165 | | - ECMS=float(args.eCMS) |
166 | | - EBEAMA=float(args.eBeamA) |
167 | | - EBEAMB=float(args.eBeamB) |
| 165 | + ECMS=float(args.eCM) |
| 166 | + EBEAMA=float(args.eA) |
| 167 | + EBEAMB=float(args.eB) |
168 | 168 | NSIGEVENTS=args.ns |
169 | 169 | GENERATOR=args.gen |
170 | 170 | INIFILE='' |
|
0 commit comments