CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/Alignment/CommonAlignmentProducer/python/AlignmentMuonSelector_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 AlignmentMuonSelector = cms.EDFilter("AlignmentMuonSelectorModule",
00004     src = cms.InputTag("muons"),
00005     filter = cms.bool(True),
00006 
00007     applyBasicCuts = cms.bool(True),
00008 
00009     pMin = cms.double(0.0),
00010     pMax = cms.double(999999.0),
00011     ptMin = cms.double(10.0),
00012     ptMax = cms.double(999999.0),
00013     etaMin = cms.double(-2.4),
00014     etaMax = cms.double(2.4),
00015     phiMin = cms.double(-3.1416),
00016     phiMax = cms.double(3.1416),
00017 
00018     # Stand Alone muons
00019     nHitMinSA = cms.double(0.0),
00020     nHitMaxSA = cms.double(9999999.0),
00021     chi2nMaxSA = cms.double(9999999.0),
00022 
00023     # Global muons
00024     nHitMinGB = cms.double(0.0),
00025     nHitMaxGB = cms.double(9999999.0),
00026     chi2nMaxGB = cms.double(9999999.0),
00027 
00028     # Tracker Only
00029     nHitMinTO = cms.double(0.0),
00030     nHitMaxTO = cms.double(9999999.0),
00031     chi2nMaxTO = cms.double(9999999.0),
00032 
00033     applyNHighestPt = cms.bool(False),
00034     nHighestPt = cms.int32(2),
00035 
00036     applyMultiplicityFilter = cms.bool(False),
00037     minMultiplicity = cms.int32(1),
00038 
00039     # copy best mass pair combination muons to result vector
00040     # Criteria: 
00041     # a) maxMassPair != minMassPair: the two highest pt muons with mass pair inside the given mass window
00042     # b) maxMassPair == minMassPair: the muon pair with mass pair closest to given mass value
00043     applyMassPairFilter = cms.bool(False),
00044     minMassPair = cms.double(89.0),
00045     maxMassPair = cms.double(90.0)
00046 )