CMS 3D CMS Logo

softMuonTagInfos_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 import RecoBTag.SoftLepton.muonSelection_cff as muonSelection
3 
4 # SoftLeptonTagInfo producer for tagging caloJets with global muons
5 softMuonTagInfos = cms.EDProducer("SoftLepton",
6  primaryVertex = cms.InputTag("offlinePrimaryVertices"),
7  jets = cms.InputTag("ak4PFJetsCHS"),
8  leptons = cms.InputTag("muons"),
9  leptonCands = cms.InputTag(""), # optional
10  leptonId = cms.InputTag(""), # optional
11 
12  refineJetAxis = cms.uint32(0), # use calorimetric jet direction by default
13 
14  leptonDeltaRCut = cms.double(0.4), # lepton distance from jet axis
15  leptonChi2Cut = cms.double(9999.0), # no cut on lepton's track's chi2/ndof
16 
17  muonSelection = muonSelection.AllGlobalMuons
18 )