1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
def customise(process):
process.generator.PythiaParameters.hydjetPythiaDefault = cms.vstring('MSEL=0 ! user processes',
'CKIN(3)=6.',# ! ptMin
'MSTP(81)=0'
)
process.generator.PythiaParameters.parameterSets = cms.vstring('pythiaUESettings',
'hydjetPythiaDefault',
'pythiaJets',
'pythiaPromptPhotons',
'pythiaZjets',
'pythiaBottomoniumNRQCD',
'pythiaCharmoniumNRQCD',
'pythiaQuarkoniaSettings',
'pythiaWeakBosons'
)
return process
|