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 # Generic jetTag configuration
0004 bTagGenericAnalysisBlock = cms.PSet(
0005     parameters = cms.PSet(
0006         discriminatorStart = cms.double(-0.01),
0007         nBinEffPur = cms.int32(200),
0008         # the constant b-efficiency for the differential plots versus pt and eta
0009         effBConst = cms.double(0.5),
0010         endEffPur = cms.double(1.005),
0011         discriminatorEnd = cms.double(1.011),
0012         startEffPur = cms.double(0.005)
0013     )
0014 )
0015 
0016