File indexing completed on 2023-03-17 10:42:48
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006 import HLTrigger.HLTfilters.hltHighLevel_cfi
0007 from Calibration.HcalAlCaRecoProducers.alcaisotrk_cfi import *
0008
0009 isoHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
0010
0011 eventSetupPathsKey='HcalCalIsoTrk',
0012 throw = False
0013
0014 )
0015
0016 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
0017 TkAlIsoProd = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone()
0018 TkAlIsoProd.filter = False
0019 TkAlIsoProd.applyBasicCuts = False
0020 TkAlIsoProd.applyMultiplicityFilter = False
0021 TkAlIsoProd.applyNHighestPt = False
0022 TkAlIsoProd.applyIsolationCut = False
0023 TkAlIsoProd.applyChargeCheck = False
0024
0025
0026 seqALCARECOHcalCalIsoTrk = cms.Sequence(isoHLT*alcaisotrk*TkAlIsoProd)
0027
0028
0029
0030