Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:03

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def CandidateJetBProbabilityESProducer(*args, **kwargs):
0004   mod = cms.ESProducer('CandidateJetBProbabilityESProducer',
0005     impactParameterType = cms.int32(0),
0006     minimumProbability = cms.double(0.005),
0007     deltaR = cms.double(-1),
0008     trackIpSign = cms.int32(1),
0009     numberOfBTracks = cms.uint32(4),
0010     maximumDecayLength = cms.double(5),
0011     maximumDistanceToJetAxis = cms.double(0.07),
0012     trackQualityClass = cms.string('any'),
0013     useVariableJTA = cms.bool(False),
0014     a_dR = cms.double(-0.001053),
0015     b_dR = cms.double(0.6263),
0016     a_pT = cms.double(0.005263),
0017     b_pT = cms.double(0.3684),
0018     min_pT = cms.double(120),
0019     max_pT = cms.double(500),
0020     min_pT_dRcut = cms.double(0.5),
0021     max_pT_dRcut = cms.double(0.1),
0022     max_pT_trackPTcut = cms.double(3),
0023     appendToDataLabel = cms.string('')
0024   )
0025   for a in args:
0026     mod.update_(a)
0027   mod.update_(kwargs)
0028   return mod