CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ALCARECOMuAlCalIsolatedMu_cff.py
Go to the documentation of this file.
1 # AlCaReco for muon based alignment using any individual muon tracks
2 import FWCore.ParameterSet.Config as cms
3 
5 ALCARECOMuAlCalIsolatedMuHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
6  andOr = True, ## choose logical OR between Triggerbits
7  eventSetupPathsKey = 'MuAlCalIsolatedMu',
8  throw = False # tolerate triggers not available
9  )
10 
11 import Alignment.CommonAlignmentProducer.AlignmentMuonSelector_cfi
12 ALCARECOMuAlCalIsolatedMu = Alignment.CommonAlignmentProducer.AlignmentMuonSelector_cfi.AlignmentMuonSelector.clone(
13  src = cms.InputTag("muons"),
14  filter = True, # not strictly necessary, but provided for symmetry with MuAlStandAloneCosmics
15 # DT calibration needs as many muons with DIGIs as possible, which in cosmic ray runs means standAloneMuons
16 # nHitMinGB = 1, # muon collections now merge globalMuons, standAlone, and trackerMuons: this stream has always assumed globalMuons
17  ptMin=cms.double(0.),
18  pMin=cms.double(10.)
19  )
20 
21 seqALCARECOMuAlCalIsolatedMu = cms.Sequence(ALCARECOMuAlCalIsolatedMuHLT + ALCARECOMuAlCalIsolatedMu)