CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_cff.py

Go to the documentation of this file.
00001 # AlCaReco for muon based Alignment using any individual muon tracks
00002 import FWCore.ParameterSet.Config as cms
00003 
00004 import HLTrigger.HLTfilters.hltHighLevel_cfi
00005 ALCARECOMuAlCalIsolatedMuHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
00006     andOr = True, ## choose logical OR between Triggerbits
00007     eventSetupPathsKey = 'MuAlCalIsolatedMu',
00008     throw = False # tolerate triggers not available
00009     )
00010 
00011 import Alignment.CommonAlignmentProducer.AlignmentMuonSelector_cfi
00012 ALCARECOMuAlCalIsolatedMu = Alignment.CommonAlignmentProducer.AlignmentMuonSelector_cfi.AlignmentMuonSelector.clone(
00013     src = cms.InputTag("muons"),
00014     filter = True, # not strictly necessary, but provided for symmetry with MuAlStandAloneCosmics
00015 # DT calibration needs as many muons with DIGIs as possible, which in cosmic ray runs means standAloneMuons
00016 #    nHitMinGB = 1, # muon collections now merge globalMuons, standAlone, and trackerMuons: this stream has always assumed globalMuons
00017     ptMin=cms.double(0.),
00018     pMin=cms.double(10.)
00019     )
00020 
00021 seqALCARECOMuAlCalIsolatedMu = cms.Sequence(ALCARECOMuAlCalIsolatedMuHLT + ALCARECOMuAlCalIsolatedMu)