CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
alcazmumu_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # producer for Hcal Zmumu (HCAL Zmumu for ho)
4 # copied from Zmumu alignment
5 ALCARECOHcalCalZMuMu = cms.EDFilter("AlignmentMuonSelectorModule",
6  chi2nMaxSA = cms.double(9999999.0),
7  nHitMaxTO = cms.double(9999999.0),
8  nHitMaxGB = cms.double(9999999.0),
9  applyMultiplicityFilter = cms.bool(False),
10  etaMin = cms.double(-2.4),
11  minMassPair = cms.double(89.0),
12  etaMax = cms.double(2.4),
13  phiMax = cms.double(3.1416),
14  phiMin = cms.double(-3.1416),
15  ptMin = cms.double(0.0),
16  minMultiplicity = cms.int32(1),
17  applyNHighestPt = cms.bool(False),
18  nHitMaxSA = cms.double(9999999.0),
19  ptMax = cms.double(999.0),
20  # Stand Alone Muons
21  nHitMinSA = cms.double(0.0),
22  chi2nMaxTO = cms.double(9999999.0),
23  chi2nMaxGB = cms.double(9999999.0),
24  nHighestPt = cms.int32(2),
25  # copy best mass pair combination muons to result vector
26  # Criteria:
27  # a) maxMassPair != minMassPair: the two highest pt muons with mass pair inside the given mass window
28  # b) maxMassPair == minMassPair: the muon pair with mass pair closest to given mass value
29  applyMassPairFilter = cms.bool(False),
30  src = cms.InputTag("muons"), ## globalMuons
31 
32  # Global Muons
33  nHitMinGB = cms.double(0.0),
34  filter = cms.bool(True),
35  maxMassPair = cms.double(90.0),
36  # Tracker Only
37  nHitMinTO = cms.double(0.0),
38  applyBasicCuts = cms.bool(True)
39 )
40 
41