CMS 3D CMS Logo

MuonMETValueMapProducer_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
5 
6 muonMETValueMapProducer = cms.EDProducer("MuonMETValueMapProducer",
7  TrackAssociatorParameterBlock,
8  muonInputTag = cms.InputTag("muons"),
9  beamSpotInputTag = cms.InputTag("offlineBeamSpot"),
10  useTrackAssociatorPositions = cms.bool(True),
11  useRecHits = cms.bool(False), #if True, will use deposits in 3x3 recHits
12  useHO = cms.bool(False), #if True, will correct for deposits in HO
13  isAlsoTkMu = cms.bool(True), #does the mu have to be a tracker mu?
14  towerEtThreshold = cms.double(0.3), #default MET calculated using towers with Et > 0.5 GeV only
15  minPt = cms.double(10.0),#min global Mu Pt is 10 GeV
16  maxEta = cms.double(2.5), #max global |Eta| is 2.4
17  maxNormChi2 = cms.double(10.0),#max global chi2/ndof
18  maxd0 = cms.double(0.2), #max global d0
19  minnHits = cms.int32(11), #minimum # of si hits
20  minnValidStaHits = cms.int32(1) #minimum # of valid hits in the muon system used in the global muon fit
21 )
22 muonMETValueMapProducer.TrackAssociatorParameters.useEcal = False
23 muonMETValueMapProducer.TrackAssociatorParameters.useHcal = False
24 muonMETValueMapProducer.TrackAssociatorParameters.useHO = False
25 muonMETValueMapProducer.TrackAssociatorParameters.useCalo = True
26 muonMETValueMapProducer.TrackAssociatorParameters.useMuon = False
27 muonMETValueMapProducer.TrackAssociatorParameters.truthMatch = False