Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:16

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 AlignmentMuonSelector = cms.EDFilter("AlignmentMuonSelectorModule",
0004     src = cms.InputTag("muons"),
0005     filter = cms.bool(True),
0006 
0007     applyBasicCuts = cms.bool(True),
0008 
0009     pMin = cms.double(0.0),
0010     pMax = cms.double(999999.0),
0011     ptMin = cms.double(10.0),
0012     ptMax = cms.double(999999.0),
0013     etaMin = cms.double(-2.4),
0014     etaMax = cms.double(2.4),
0015     phiMin = cms.double(-3.1416),
0016     phiMax = cms.double(3.1416),
0017 
0018     # Stand Alone Muons
0019     nHitMinSA = cms.double(0.0),
0020     nHitMaxSA = cms.double(9999999.0),
0021     chi2nMaxSA = cms.double(9999999.0),
0022 
0023     # Global Muons
0024     nHitMinGB = cms.double(0.0),
0025     nHitMaxGB = cms.double(9999999.0),
0026     chi2nMaxGB = cms.double(9999999.0),
0027 
0028     # Tracker Only
0029     nHitMinTO = cms.double(0.0),
0030     nHitMaxTO = cms.double(9999999.0),
0031     chi2nMaxTO = cms.double(9999999.0),
0032 
0033     applyNHighestPt = cms.bool(False),
0034     nHighestPt = cms.int32(2),
0035 
0036     applyMultiplicityFilter = cms.bool(False),
0037     minMultiplicity = cms.int32(1),
0038 
0039     # copy best mass pair combination muons to result vector
0040     # Criteria: 
0041     # a) maxMassPair != minMassPair: the two highest pt muons with mass pair inside the given mass window
0042     # b) maxMassPair == minMassPair: the muon pair with mass pair closest to given mass value
0043     applyMassPairFilter = cms.bool(False),
0044     minMassPair = cms.double(89.0),
0045     maxMassPair = cms.double(90.0)
0046 )