-
Notifications
You must be signed in to change notification settings - Fork 1
/
FlatQCD-TuneCP5-Pythia8-7000GeV_cfg_CP5-CR1.py
163 lines (141 loc) · 6.59 KB
/
FlatQCD-TuneCP5-Pythia8-7000GeV_cfg_CP5-CR1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import FWCore.ParameterSet.Config as cms
import os
process = cms.Process('GEN')
# import of standard configurations
process.load('Configuration.StandardSequences.Services_cff')
process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
process.load('FWCore.MessageService.MessageLogger_cfi')
process.load('Configuration.EventContent.EventContent_cff')
process.load('SimGeneral.MixingModule.mixNoPU_cfi')
process.load('Configuration.StandardSequences.GeometryDB_cff')
process.load('Configuration.StandardSequences.MagneticField_38T_cff')
process.load('Configuration.StandardSequences.Generator_cff')
process.load('IOMC.EventVertexGenerators.VtxSmearedRealistic7TeV2011Collision_cfi')
process.load('GeneratorInterface.Core.genFilterSummary_cff')
process.load('Configuration.StandardSequences.EndOfProcess_cff')
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(700000)
)
# Input source
process.source = cms.Source("EmptySource")
process.options = cms.untracked.PSet(
)
# Production Info
process.configurationMetadata = cms.untracked.PSet(
version = cms.untracked.string('$Revision: 1.3 $'),
annotation = cms.untracked.string('PYTHIA6-MinBias TuneZ2 at 7TeV'),
name = cms.untracked.string('$Source: /local/reps/CMSSW/CMSSW/Configuration/GenProduction/python/Attic/MinBias_TuneZ2_7TeV_pythia6_cff.py,v $')
)
# Output definition
process.RAWSIMoutput = cms.OutputModule("PoolOutputModule",
splitLevel = cms.untracked.int32(0),
eventAutoFlushCompressedSize = cms.untracked.int32(5242880),
outputCommands = process.RAWSIMEventContent.outputCommands,
fileName = cms.untracked.string('MinBias_TuneZ2_7TeV_pythia6_cff_py_GEN.root'),
dataset = cms.untracked.PSet(
filterName = cms.untracked.string(''),
dataTier = cms.untracked.string('GEN-SIM-RAW')
),
SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('generation_step')
)
)
# Additional output definition
process.MessageLogger.cerr.FwkReport.reportEvery = 700000
# Other statements
process.GlobalTag.globaltag = 'MCRUN2_74_V9A'
pythia8CommonSettingsBlock = cms.PSet(
pythia8CommonSettings = cms.vstring(
'Tune:preferLHAPDF = 2',
'Main:timesAllowErrors = 10000',
'Check:epTolErr = 0.01',
'Beams:setProductionScalesFromLHEF = off',
'SLHA:keepSM = on',
'SLHA:minMassSM = 1000.',
'ParticleDecays:limitTau0 = on',
'ParticleDecays:tau0Max = 10',
'ParticleDecays:allowPhotonRadiation = on',
)
)
pythia8CP5SettingsBlock = cms.PSet(
pythia8CP5Settings = cms.vstring(
'Tune:pp 14',
'Tune:ee 7',
'MultipartonInteractions:ecmPow=0.03283',
'PDF:pSet=20',
'MultipartonInteractions:bProfile=2',
'MultipartonInteractions:pT0Ref=1.375',
'MultipartonInteractions:coreRadius=0.6046',
'MultipartonInteractions:coreFraction=0.4446',
'ColourReconnection:mode=1',
'BeamRemnants:remnantMode=1',
'ColourReconnection:junctionCorrection=0.238',
'ColourReconnection:timeDilationPar=8.58',
'ColourReconnection:m0=1.721',
'StringZ:aLund=0.38',
'StringZ:bLund=0.64',
'StringFlav:probQQtoQ=0.078',
'StringFlav:probStoUD=0.2',
'SpaceShower:alphaSorder=2',
'SpaceShower:alphaSvalue=0.118', # 0.118
'SigmaProcess:alphaSvalue=0.118',
'SigmaProcess:alphaSorder=2',
'MultipartonInteractions:alphaSvalue=0.118',
'MultipartonInteractions:alphaSorder=2',
'TimeShower:alphaSorder=2',
'TimeShower:alphaSvalue=0.118', # 0.118
)
)
process.generator = cms.EDFilter("Pythia8GeneratorFilter",
comEnergy = cms.double(7000.0),
crossSection = cms.untracked.double(1.0),
filterEfficiency = cms.untracked.double(1.0),
maxEventsToPrint = cms.untracked.int32(1),
pythiaHepMCVerbosity = cms.untracked.bool(False),
pythiaPylistVerbosity = cms.untracked.int32(1),
PythiaParameters = cms.PSet(
pythia8CommonSettingsBlock,
pythia8CP5SettingsBlock,
processParameters = cms.vstring(
'HardQCD:all = on',
'PhaseSpace:pTHatMin = 8',
'PhaseSpace:pTHatMax = 3500',
'PhaseSpace:bias2Selection = on',
'PhaseSpace:bias2SelectionPow = 4.5',
'PhaseSpace:bias2SelectionRef = 15.',
),
parameterSets = cms.vstring('pythia8CommonSettings',
'pythia8CP5Settings',
'processParameters',
)
)
)
process.ProductionFilterSequence = cms.Sequence(process.generator)
# Path and EndPath definitions
process.generation_step = cms.Path(process.pgen)
process.genfiltersummary_step = cms.EndPath(process.genFilterSummary)
process.endjob_step = cms.EndPath(process.endOfProcess)
process.RAWSIMoutput_step = cms.EndPath(process.RAWSIMoutput)
# Schedule definition
process.schedule = cms.Schedule(process.generation_step,process.genfiltersummary_step,process.endjob_step,process.RAWSIMoutput_step)
# filter all path with the production filter sequence
for path in process.paths:
getattr(process,path)._seq = process.ProductionFilterSequence * getattr(process,path)._seq
# customisation of the process.
process.load('GeneratorInterface.RivetInterface.rivetAnalyzer_cfi')
# Automatic addition of the customisation function from Configuration.GenProduction.rivet_customize
#from Configuration.GenProduction.rivet_customize import customise
def customise(process):
process.load('GeneratorInterface.RivetInterface.rivetAnalyzer_cfi')
process.rivetAnalyzer.AnalysisNames = cms.vstring('CMS_2013_I1224539_DIJET','ATLAS_2011_I929691','ATLAS_2011_S8924791','ATLAS_2012_I1094564','ATLAS_2012_I1119557','CMS_2012_I1111014')
process.rivetAnalyzer.CrossSection = cms.double(1.0)
process.rivetAnalyzer.OutputFile = cms.string('QCD-7TeV.yoda')
process.rivetAnalyzer.UseExternalWeight = cms.bool(True)
process.rivetAnalyzer.useGENweights = cms.bool(True)
process.generation_step+=process.rivetAnalyzer
process.schedule.remove(process.RAWSIMoutput_step)
return(process)
#call to customisation function customise imported from Configuration.GenProduction.rivet_customize
process = customise(process)
# End of customisation functions