Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ####################################################################################################################  
0004 full_74x_wp  = cms.PSet(
0005                 #4 Eta Categories  0-2.5 2.5-2.75 2.75-3.0 3.0-5.0
0006 
0007                 #Tight Id
0008                 Pt010_Tight    = cms.vdouble(-0.83,-0.81,-0.74,-0.81),
0009                 Pt1020_Tight   = cms.vdouble(-0.83,-0.81,-0.74,-0.81),
0010                 Pt2030_Tight   = cms.vdouble( 0.73, 0.05,-0.26,-0.42),
0011                 Pt3050_Tight   = cms.vdouble( 0.73, 0.05,-0.26,-0.42),
0012 
0013                 #Medium Id
0014                 Pt010_Medium   = cms.vdouble(-0.83,-0.92,-0.90,-0.92),
0015                 Pt1020_Medium  = cms.vdouble(-0.83,-0.92,-0.90,-0.92),
0016                 Pt2030_Medium  = cms.vdouble( 0.10,-0.36,-0.54,-0.54),
0017                 Pt3050_Medium  = cms.vdouble( 0.10,-0.36,-0.54,-0.54),
0018 
0019                 #Loose Id
0020                 Pt010_Loose    = cms.vdouble(-0.95,-0.96,-0.94,-0.95),
0021                 Pt1020_Loose   = cms.vdouble(-0.95,-0.96,-0.94,-0.95),
0022                 Pt2030_Loose   = cms.vdouble(-0.63,-0.60,-0.55,-0.45),
0023                 Pt3050_Loose   = cms.vdouble(-0.63,-0.60,-0.55,-0.45),
0024 
0025                 )
0026 
0027 
0028 full_74x = cms.PSet(
0029  impactParTkThreshold = cms.double(1.) ,
0030  cutBased = cms.bool(False),
0031  tmvaWeights = cms.FileInPath("RecoJets/JetProducers/data/MVAJetPuID.weights_newNames.xml.gz"),
0032  tmvaMethod  = cms.string("BDTG"),
0033  version = cms.int32(-1),
0034  tmvaVariables = cms.vstring(
0035     "rho"     ,
0036     "nParticles"     , 
0037     "nCharged" , 
0038     "majW" , 
0039     "minW", 
0040     "frac01",
0041     "frac02",
0042     "frac03",
0043     "frac04",        
0044     "ptD"      , 
0045     "beta"   , 
0046     "betaStar"   , 
0047     "dR2Mean"   , 
0048     "pull"   , 
0049     "jetR"   , 
0050     "jetRchg"   
0051     ),
0052  tmvaSpectators = cms.vstring(
0053     "jetEta",
0054     "jetPt",
0055     ),
0056  JetIdParams = full_74x_wp,
0057  label = cms.string("CATEv0")
0058  )
0059 
0060 
0061 
0062