CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/RecoMET/METProducers/python/MuonMETValueMapProducer_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from TrackingTools.TrackAssociator.default_cfi import *
00004 from TrackingTools.TrackAssociator.DetIdAssociatorESProducer_cff import *
00005 
00006 MuonMETValueMapProducer = cms.EDProducer("MuonMETValueMapProducer",
00007      TrackAssociatorParameterBlock,      
00008      muonInputTag     = cms.InputTag("muons"),
00009      beamSpotInputTag = cms.InputTag("offlineBeamSpot"),
00010      useTrackAssociatorPositions = cms.bool(True),
00011      useRecHits        = cms.bool(False), #if True, will use deposits in 3x3 recHits
00012      useHO             = cms.bool(False), #if True, will correct for deposits in HO
00013      isAlsoTkMu        = cms.bool(True),  #does the mu have to be a tracker mu?
00014      towerEtThreshold  = cms.double(0.3), #default MET calculated using towers with Et > 0.5 GeV only
00015      minPt             = cms.double(10.0),#min global Mu Pt is 10 GeV
00016      maxEta            = cms.double(2.5), #max global |Eta| is 2.4
00017      maxNormChi2       = cms.double(10.0),#max global chi2/ndof
00018      maxd0             = cms.double(0.2), #max global d0
00019      minnHits          = cms.int32(11),   #minimum # of si hits
00020      minnValidStaHits  = cms.int32(1)     #minimum # of valid hits in the muon system used in the global muon fit
00021 )
00022 MuonMETValueMapProducer.TrackAssociatorParameters.useEcal = False
00023 MuonMETValueMapProducer.TrackAssociatorParameters.useHcal = False
00024 MuonMETValueMapProducer.TrackAssociatorParameters.useHO = False
00025 MuonMETValueMapProducer.TrackAssociatorParameters.useCalo = True
00026 MuonMETValueMapProducer.TrackAssociatorParameters.useMuon = False
00027 MuonMETValueMapProducer.TrackAssociatorParameters.truthMatch = False