Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:46

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #------------------------------------------------
0004 #AlCaReco filtering for HCAL isotrk:
0005 #------------------------------------------------
0006 import HLTrigger.HLTfilters.hltHighLevel_cfi
0007 from Calibration.HcalAlCaRecoProducers.alcaisotrk_cfi import *
0008 
0009 isoHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
0010 #    HLTPaths = ['HLT_IsoTrack'],
0011     eventSetupPathsKey='HcalCalIsoTrk',
0012     throw = False #dont throw except on unknown path name
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 #TkAlIsoProd.src = 'generalTracks'
0025 
0026 seqALCARECOHcalCalIsoTrk = cms.Sequence(isoHLT*alcaisotrk*TkAlIsoProd)
0027 
0028 
0029 
0030