Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:36

0001 import FWCore.ParameterSet.Config as cms
0002 import RecoBTag.SoftLepton.muonSelection_cff as muonSelection
0003 
0004 # SoftLeptonTagInfo producer for tagging caloJets with global muons
0005 softMuonTagInfos = cms.EDProducer("SoftLepton",
0006     primaryVertex = cms.InputTag("offlinePrimaryVertices"),
0007     jets = cms.InputTag("ak4PFJetsCHS"),
0008     leptons = cms.InputTag("muons"),
0009     leptonCands = cms.InputTag(""),         # optional
0010     leptonId = cms.InputTag(""),            # optional
0011 
0012     refineJetAxis = cms.uint32(0),          # use calorimetric jet direction by default
0013 
0014     leptonDeltaRCut = cms.double(0.4),      # lepton distance from jet axis
0015     leptonChi2Cut = cms.double(9999.0),     # no cut on lepton's track's chi2/ndof
0016 
0017     muonSelection = muonSelection.AllGlobalMuons
0018 )