1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import FWCore.ParameterSet.Config as cms
#------------------------------------------------
#AlCaReco filtering for HCAL HO:
#------------------------------------------------
from Calibration.HcalAlCaRecoProducers.alcahomuon_cfi import *
import HLTrigger.HLTfilters.hltHighLevel_cfi
#
#here we specify triggers for two different menues
#this is possible since throw=False
#
ALCARECOHcalCalHOHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
# HLTPaths = ['HLT_IsoMu3', #for 8E29
# 'HLT_IsoMu9'], #for 1E30
eventSetupPathsKey='HcalCalHO',
throw = False #dont throw except on unknown path name
)
seqALCARECOHcalCalHO = cms.Sequence(ALCARECOHcalCalHOHLT*hoCalibProducer)
|