CMS 3D CMS Logo

ALCARECOHcalCalNoise_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
5 noiseHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
6  eventSetupPathsKey='HcalCalNoise',
7  throw = False #dont throw except on unknown path name
8 )
9 
10 prescaler = cms.EDFilter("PrescalerFHN",
11  TriggerResultsTag = cms.InputTag("TriggerResults", "", "HLT"),
12 
13  # Will select OR of all specified HLTs
14  # And increment if HLT is seen, regardless if
15  # others cause selection
16 
17  Prescales = cms.VPSet(
18  cms.PSet(
19 # HLTName = cms.string("HLT_PFMET130"),
20  PrescaleFactor = cms.uint32(1)
21  )
22  # cms.PSet(
23  # name = cms.string("HLTPath2"),
24  # factor = cms.uint32(100)
25  # )
26  ))
27 
29 
30 #seqALCARECOHcalCalNoise = cms.Sequence(noiseHLT*prescaler*HcalNoiseProd)
31 seqALCARECOHcalCalNoise = cms.Sequence(noiseHLT*HcalNoiseProd)