File indexing completed on 2024-04-06 12:06:47
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process('RERECO')
0004
0005
0006 process.options = cms.untracked.PSet(
0007 IgnoreCompletely = cms.untracked.vstring('Configuration')
0008
0009 )
0010
0011
0012
0013 process.add_(
0014 cms.Service("ISpyService",
0015 outputFileName = cms.untracked.string('Ispy.ig'),
0016 outputMaxEvents = cms.untracked.int32 (1000),
0017 online = cms.untracked.bool(True),
0018 debug = cms.untracked.bool(True)
0019 )
0020 )
0021
0022
0023
0024 process.load('Configuration/StandardSequences/Services_cff')
0025 process.load('FWCore/MessageService/MessageLogger_cfi')
0026 process.load('Configuration/StandardSequences/GeometryIdeal_cff')
0027 process.load('Configuration/StandardSequences/MagneticField_AutoFromDBCurrent_cff')
0028 process.load('Configuration/StandardSequences/RawToDigi_Data_cff')
0029 process.load('Configuration/StandardSequences/Reconstruction_cff')
0030 process.load('DQMOffline/Configuration/DQMOffline_cff')
0031 process.load('Configuration/StandardSequences/EndOfProcess_cff')
0032 process.load('Configuration/StandardSequences/FrontierConditions_GlobalTag_cff')
0033 process.load('Configuration/EventContent/EventContent_cff')
0034 process.load('ISpy/Analyzers/ISpy_Producer_cff')
0035
0036
0037
0038
0039
0040
0041 process.hltHighLevel = cms.EDFilter("HLTHighLevel",
0042 TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
0043
0044 HLTPaths = cms.vstring('HLT_MinBiasBSC'),
0045 eventSetupPathsKey = cms.string(''),
0046 andOr = cms.bool(True),
0047 throw = cms.bool(True),
0048 saveTags = cms.bool(False)
0049 )
0050
0051
0052 process.skimming = cms.EDFilter("BeamSplash",
0053 energycuttot = cms.untracked.double(1000.0),
0054 energycutecal = cms.untracked.double(700.0),
0055 energycuthcal = cms.untracked.double(700.0),
0056 ebrechitcollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
0057 eerechitcollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
0058 hbherechitcollection = cms.InputTag("hbhereco"),
0059 applyfilter = cms.untracked.bool(False)
0060 )
0061
0062
0063
0064 process.load("HLTrigger.special.HLTTriggerTypeFilter_cfi")
0065
0066 process.hltTriggerTypeFilter.SelectedTriggerType = 1
0067
0068
0069 process.load('L1TriggerConfig.L1GtConfigProducers.L1GtTriggerMaskTechTrigConfig_cff')
0070 process.load('HLTrigger/HLTfilters/hltLevel1GTSeed_cfi')
0071 process.hltLevel1GTSeed.L1TechTriggerSeeding = cms.bool(True)
0072 process.hltLevel1GTSeed.L1SeedsLogicalExpression = cms.string('32 OR 33 OR 40 OR 41')
0073
0074
0075 process.physdecl = cms.EDFilter("PhysDecl",
0076 applyfilter = cms.untracked.bool(False),
0077 debugOn = cms.untracked.bool(True)
0078 )
0079
0080
0081 process.configurationMetadata = cms.untracked.PSet(
0082 version = cms.untracked.string('$Revision: 1.2 $'),
0083 annotation = cms.untracked.string('promptReco nevts:1'),
0084 name = cms.untracked.string('PyReleaseValidation')
0085 )
0086 process.maxEvents = cms.untracked.PSet(
0087 input = cms.untracked.int32(NUMEVENTS)
0088 )
0089 process.options = cms.untracked.PSet(
0090 Rethrow = cms.untracked.vstring('ProductNotFound'),
0091 wantSummary = cms.untracked.bool(True)
0092 )
0093
0094 process.source = cms.Source("EventStreamHttpReader",
0095
0096
0097
0098
0099
0100
0101
0102
0103
0104
0105
0106
0107 sourceURL = SOURCE,
0108 consumerName = cms.untracked.string('Event Display'),
0109
0110
0111
0112
0113
0114
0115
0116
0117
0118
0119
0120
0121
0122
0123 consumerPriority = cms.untracked.string('normal'),
0124 max_event_size = cms.int32(7000000),
0125 SelectHLTOutput = SELECTHLT,
0126
0127
0128 max_queue_depth = cms.int32(5),
0129 maxEventRequestRate = cms.untracked.double(2.0),
0130 SelectEvents = cms.untracked.PSet(
0131
0132 SelectEvents = cms.vstring('*')
0133
0134 ),
0135 headerRetryInterval = cms.untracked.int32(3)
0136 )
0137
0138
0139
0140
0141
0142
0143
0144
0145
0146
0147
0148
0149
0150
0151
0152
0153 process.FEVT = cms.OutputModule("PoolOutputModule",
0154 maxSize = cms.untracked.int32(1000),
0155 fileName = cms.untracked.string('EVDISPSM_DIR/EVDISPSM_SUFFIX.root'),
0156 outputCommands = cms.untracked.vstring('keep *','drop *_MEtoEDMConverter_*_*'),
0157 dataset = cms.untracked.PSet(
0158 dataTier = cms.untracked.string('RAW-RECO'),
0159
0160 filterName = cms.untracked.string('EVDISP')),
0161 SelectEvents = cms.untracked.PSet(
0162 SelectEvents = cms.vstring('fullpath')
0163 )
0164 )
0165
0166
0167
0168 process.GlobalTag.globaltag = 'GR10_P_V2::All'
0169
0170 process.fifthCkfTrajectoryFilter.filterPset.minimumNumberOfHits = 2
0171 process.fifthCkfTrajectoryFilter.filterPset.maxLostHits = 4
0172 process.fifthCkfTrajectoryFilter.filterPset.maxConsecLostHits = 2
0173 process.fifthCkfInOutTrajectoryFilter.filterPset.minimumNumberOfHits = 2
0174 process.fifthCkfInOutTrajectoryFilter.filterPset.maxLostHits = 4
0175 process.fifthCkfInOutTrajectoryFilter.filterPset.maxConsecLostHits = 2
0176 process.fifthCkfTrajectoryBuilder.minNrOfHitsForRebuild = 2
0177 process.fifthRKTrajectorySmoother.minHits = 2
0178 process.fifthRKTrajectoryFitter.minHits = 2
0179 process.fifthFittingSmootherWithOutlierRejection.MinNumberOfHits = 2
0180 process.tobtecStepLoose.minNumberLayers = 2
0181 process.tobtecStepLoose.maxNumberLostLayers = 2
0182 process.tobtecStepLoose.dz_par1 = cms.vdouble(10.5, 4.0)
0183 process.tobtecStepLoose.dz_par2 = cms.vdouble(10.5, 4.0)
0184 process.tobtecStepLoose.d0_par1 = cms.vdouble(10.5, 4.0)
0185 process.tobtecStepLoose.d0_par2 = cms.vdouble(10.5, 4.0)
0186 process.tobtecStepLoose.chi2n_par = cms.double(100.0)
0187 process.fifthSeeds.RegionFactoryPSet.RegionPSet.originHalfLength = 100
0188 process.fifthSeeds.RegionFactoryPSet.RegionPSet.originRadius = 10
0189 process.Chi2MeasurementEstimator.MaxChi2 = 100
0190
0191
0192
0193
0194
0195
0196
0197
0198
0199
0200
0201
0202 process.fullpath = cms.Path(process.RawToDigi+process.physdecl+process.reconstruction+process.skimming+process.iSpy_sequence)
0203
0204 process.out_step = cms.EndPath(process.FEVT)
0205
0206
0207
0208 process.schedule = cms.Schedule(process.fullpath,process.out_step)
0209
0210
0211
0212