Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:47

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # TrackIP tag info configuration
0004 bTagTrackIPAnalysisBlock = cms.PSet(
0005     parameters = cms.PSet(
0006         QualityPlots = cms.bool(False),
0007         endEffPur = cms.double(1.005),
0008         nBinEffPur = cms.int32(200),
0009         startEffPur = cms.double(0.005),
0010         LowerIPSBound = cms.double(-35.0),
0011         UpperIPSBound = cms.double(35.0),
0012         LowerIPBound = cms.double(-0.1),
0013         UpperIPBound = cms.double(0.1),
0014         LowerIPEBound = cms.double(0.0),
0015         UpperIPEBound = cms.double(0.04),
0016         NBinsIPS = cms.int32(100),
0017         NBinsIP = cms.int32(100),
0018         NBinsIPE = cms.int32(100),
0019         MinDecayLength = cms.double(-9999.0),
0020         MaxDecayLength = cms.double(5.0),
0021         MinJetDistance = cms.double(0.0),
0022         MaxJetDistance = cms.double(0.07),
0023     )
0024 )
0025 
0026