Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 pfMuonSelector = cms.PSet(
0004     version            = cms.string('TOPPAG12_LJETS'),
0005     Chi2               = cms.double(10.0),
0006     minTrackerLayers   = cms.int32(6),
0007     minValidMuHits     = cms.int32(1),
0008     maxIp              = cms.double(0.2),
0009     minPixelHits       = cms.int32(1),
0010     minMatchedStations = cms.int32(2),
0011     maxPfRelIso        = cms.double(0.12),
0012     cutsToIgnore       = cms.vstring()
0013     )
0014