CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Calibration/HcalAlCaRecoProducers/python/ALCARECOHcalCalIsoTrk_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #------------------------------------------------
00004 #AlCaReco filtering for HCAL isotrk:
00005 #------------------------------------------------
00006 import HLTrigger.HLTfilters.hltHighLevel_cfi
00007 from Calibration.HcalAlCaRecoProducers.alcaisotrk_cfi import *
00008 
00009 isoHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
00010 #    HLTPaths = ['HLT_IsoTrack'],
00011     eventSetupPathsKey='HcalCalIsoTrk',
00012     throw = False #dont throw except on unknown path name
00013 
00014 )
00015 
00016 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
00017 TkAlIsoProd = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone()
00018 TkAlIsoProd.filter = False
00019 TkAlIsoProd.applyBasicCuts = False
00020 TkAlIsoProd.applyMultiplicityFilter = False
00021 TkAlIsoProd.applyNHighestPt = False
00022 TkAlIsoProd.applyIsolationCut = False
00023 TkAlIsoProd.applyChargeCheck = False
00024 TkAlIsoProd.src = 'IsoProd:IsoTrackTracksCollection'
00025 
00026 seqALCARECOHcalCalIsoTrk = cms.Sequence(isoHLT*IsoProd*TkAlIsoProd)
00027 
00028 
00029 
00030