CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
distMuonMETValueMapProducer_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
5 
6 distmuonMETValueMapProducer = cms.EDProducer("MuonMETValueMapProducer",
7  TrackAssociatorParameterBlock,
8  muonInputTag = cms.InputTag("distortedMuons"),
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.4), #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 distmuonMETValueMapProducer.TrackAssociatorParameters.useEcal = False
23 distmuonMETValueMapProducer.TrackAssociatorParameters.useHcal = False
24 distmuonMETValueMapProducer.TrackAssociatorParameters.useHO = False
25 distmuonMETValueMapProducer.TrackAssociatorParameters.useCalo = True
26 distmuonMETValueMapProducer.TrackAssociatorParameters.useMuon = False
27 distmuonMETValueMapProducer.TrackAssociatorParameters.truthMatch = False