CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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  HLTPaths = ['HLT_MET25'],
7 # eventSetupPathsKey='HcalCalNoise',
8  throw = False #dont throw except on unknown path name
9 )
10 
11 prescaler = cms.EDFilter("PrescalerFHN",
12 TriggerResultsTag = cms.InputTag("TriggerResults", "", "HLT"),
13 
14 # Will select OR of all specified HLTs
15 # And increment if HLT is seen, regardless if
16 # others cause selection
17 
18 Prescales = cms.VPSet(
19  cms.PSet(
20  HLTName = cms.string("HLT_MET25"),
21  PrescaleFactor = cms.uint32(1)
22  )
23 # cms.PSet(
24 # name = cms.string("HLTPath2"),
25 # factor = cms.uint32(100)
26 # )
27 ))
28 
30 
31 seqALCARECOHcalCalNoise = cms.Sequence(noiseHLT*prescaler*HcalNoiseProd)
32 
33