Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ##################################################################
0004 # AlCaReco for track based calibration using single muon events
0005 ##################################################################
0006 from HLTrigger.HLTfilters.hltHighLevel_cfi import *
0007 ALCARECOSiPixelCalSingleMuonHLTFilter = hltHighLevel.clone()
0008 ALCARECOSiPixelCalSingleMuonHLTFilter.andOr = True ## choose logical OR between Triggerbits
0009 ALCARECOSiPixelCalSingleMuonHLTFilter.throw = False ## dont throw on unknown path names
0010 ALCARECOSiPixelCalSingleMuonHLTFilter.eventSetupPathsKey = 'SiPixelCalSingleMuon'
0011 
0012 ##################################################################
0013 # Basic track selection
0014 ##################################################################
0015 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
0016 ALCARECOSiPixelCalSingleMuon = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone()
0017 ALCARECOSiPixelCalSingleMuon.filter         = True ##do not store empty events
0018 ALCARECOSiPixelCalSingleMuon.applyBasicCuts = True
0019 ALCARECOSiPixelCalSingleMuon.ptMin = 3.0 #GeV
0020 ALCARECOSiPixelCalSingleMuon.etaMin = -3.5
0021 ALCARECOSiPixelCalSingleMuon.etaMax = 3.5
0022 
0023 ##################################################################
0024 # Loose Sequence
0025 ##################################################################
0026 seqALCARECOSiPixelCalSingleMuon = cms.Sequence(ALCARECOSiPixelCalSingleMuonHLTFilter+ALCARECOSiPixelCalSingleMuon)
0027 
0028 ## customizations for the pp_on_AA eras
0029 from Configuration.ProcessModifiers.pp_on_AA_cff import pp_on_AA
0030 pp_on_AA.toModify(ALCARECOSiPixelCalSingleMuonHLTFilter,
0031                   eventSetupPathsKey='SiPixelCalSingleMuonHI'
0032 )