Disable HF Noise filters in HIon menu if 'hltHfreco' in %(dict)s: %(process)shltHfreco.setNoiseFlags = cms.bool( False ) """ else: self.data += """ Enable HF Noise filters in non-HIon menu if 'hltHfreco' in %(dict)s: %(process)shltHfreco.setNoiseFlags = cms.bool( True ) """.
untracked parameters with NO default in the code if 'hltHcalDataIntegrityMonitor' in %(dict)s: %(process)shltHcalDataIntegrityMonitor.RawDataLabel = cms.untracked.InputTag("rawDataCollector") if 'hltDt4DSegments' in %(dict)s: %(process)shltDt4DSegments.debug = cms.untracked.bool( False ) """ load 2015 Run-2 L1 Menu for 50ns from L1Trigger.Configuration.customise_overwriteL1Menu import L1Menu_Collisions2015_50ns_v1 as loadL1Menu s = loadL1Menu(s) """ %(procfrag,procfrag) elif '25ns14e33_v1' in self.config.type : self.data += """ load 2015 Run-2 L1 Menu for 25ns from L1Trigger.Configuration.customise_overwriteL1Menu import L1Menu_Collisions2015_25ns_v2 as loadL1menu s = loadL1menu(s) """ %(procfrag,procfrag) elif '50ns' in self.config.type : self.data += """ load 2015 Run-2 L1 Menu for 50ns from L1Trigger.Configuration.customise_overwriteL1Menu import L1Menu_Collisions2015_50ns_v4 as loadL1Menu s = loadL1Menu(s) """ %(procfrag,procfrag) elif 'HIon' in self.config.type : self.data += """ load 2015 Run-2 L1 Menu for HIon from L1Trigger.Configuration.customise_overwriteL1Menu import L1Menu_CollisionsHeavyIons2015_v0 as loadL1Menu s = loadL1Menu(s) """ %(procfrag,procfrag) elif 'LowPU' in self.config.type : self.data += """ load 2015 Run-2 L1 Menu for LowPU from L1Trigger.Configuration.customise_overwriteL1Menu import L1Menu_Collisions2015_lowPU_v4 as loadL1Menu s = loadL1Menu(s) """ %(procfrag,procfrag) else : self.data += """ load 2015 Run-2 L1 Menu for 25ns (default for GRun, PIon) from L1Trigger.Configuration.customise_overwriteL1Menu import L1Menu_Collisions2015_25ns_v2 as loadL1menu s = loadL1menu(s) """ %(procfrag,procfrag)
Definition at line 340 of file confdb.py.
344 # limit the number of events to be processed
345 %%(process)smaxEvents = cms.untracked.PSet(
346 input = cms.untracked.int32( %d )
348 """ % self.config.events
350 if not self.config.profiling:
352 # enable the TrigReport and TimeReport
353 %(process)soptions = cms.untracked.PSet(
354 wantSummary = cms.untracked.bool( True )
def addGlobalOptions
Disable HF Noise filters in HIon menu if 'hltHfreco' in %(dict)s: %(process)shltHfreco.setNoiseFlags = cms.bool( False ) """ else: self.data += """ Enable HF Noise filters in non-HIon menu if 'hltHfreco' in %(dict)s: %(process)shltHfreco.setNoiseFlags = cms.bool( True ) """.