CMS 3D CMS Logo

ALCARECOHcalCalIsoTrk_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #------------------------------------------------
4 #AlCaReco filtering for HCAL isotrk:
5 #------------------------------------------------
8 
9 isoHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
10 # HLTPaths = ['HLT_IsoTrack'],
11  eventSetupPathsKey='HcalCalIsoTrk',
12  throw = False #dont throw except on unknown path name
13 
14 )
15 
17 TkAlIsoProd = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone()
18 TkAlIsoProd.filter = False
19 TkAlIsoProd.applyBasicCuts = False
20 TkAlIsoProd.applyMultiplicityFilter = False
21 TkAlIsoProd.applyNHighestPt = False
22 TkAlIsoProd.applyIsolationCut = False
23 TkAlIsoProd.applyChargeCheck = False
24 #TkAlIsoProd.src = 'generalTracks'
25 
26 seqALCARECOHcalCalIsoTrk = cms.Sequence(isoHLT*alcaisotrk*TkAlIsoProd)
27 
28 
29 
30 
dont throw on unknown path names