CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_1/src/Calibration/HcalAlCaRecoProducers/python/ALCARECOHcalCalNoise_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 
00004 import HLTrigger.HLTfilters.hltHighLevel_cfi
00005 noiseHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
00006     HLTPaths = ['HLT_MET25'],
00007 #    eventSetupPathsKey='HcalCalNoise',
00008     throw = False #dont throw except on unknown path name
00009 )
00010 
00011 prescaler = cms.EDFilter("PrescalerFHN",
00012 TriggerResultsTag = cms.InputTag("TriggerResults", "", "HLT"),
00013 
00014 # Will select OR of all specified HLTs
00015 # And increment if HLT is seen, regardless if
00016 # others cause selection
00017 
00018 Prescales = cms.VPSet(
00019     cms.PSet(
00020     HLTName = cms.string("HLT_MET25"),
00021     PrescaleFactor = cms.uint32(1)
00022     )
00023 #    cms.PSet(
00024 #    name = cms.string("HLTPath2"),
00025 #    factor = cms.uint32(100)
00026 #    )
00027 ))
00028 
00029 from Calibration.HcalAlCaRecoProducers.alcahcalnoise_cfi import *
00030 
00031 seqALCARECOHcalCalNoise = cms.Sequence(noiseHLT*prescaler*HcalNoiseProd)
00032 
00033