Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:47

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