Skip to content

Commit cf8a4bb

Browse files
pbuehlergconesab
authored andcommitted
added cdiff as option for -proc
cdiff enables non-zero cross section for the central diffractive process
1 parent a40b8c0 commit cf8a4bb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

MC/config/common/pythia8/utils/mkpy8cfg.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
parser.add_argument('--eCM', type=float, default='-1',
2727
help='Centre-of-mass energy (careful!, better use beam energy)')
2828

29-
parser.add_argument('--process', default='inel', choices=['none', 'inel', 'ccbar', 'bbbar', 'heavy', 'jets', 'dirgamma'],
29+
parser.add_argument('--process', default='inel', choices=['none', 'inel', 'ccbar', 'bbbar', 'heavy', 'jets', 'dirgamma', 'cdiff'],
3030
help='Process to switch on')
3131

3232
parser.add_argument('--ptHatMin', type=float,
@@ -105,6 +105,10 @@
105105
fout.write('HardQCD:all = on \n')
106106
if args.process == 'dirgamma':
107107
fout.write('PromptPhoton:all = on \n')
108+
if args.process == 'cdiff':
109+
fout.write('SoftQCD:inelastic = on \n')
110+
# enable non-zero cross section for CEP
111+
fout.write('SigmaTotal:zeroAXB = off \n')
108112
fout.write('\n')
109113

110114
### heavy ion settings (valid for Pb-Pb 5520 only)

0 commit comments

Comments
 (0)