Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 from RecoEgamma.EgammaIsolationAlgos.egammaHBHERecHitThreshold_cff import egammaHBHERecHit
0003 
0004 pathToHaloMVATrainingFile = "RecoEgamma/PhotonIdentification/data/beamHaloTaggerID/xgboostToTMVA_BHtagger.root"
0005 mvaHaloVariable = cms.PSet(
0006     #required inputs
0007     trainingFileName = cms.FileInPath(pathToHaloMVATrainingFile),
0008     rhoLabel = cms.InputTag("fixedGridRhoFastjetAllTmp"),
0009     barrelEcalRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
0010     endcapEcalRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
0011     esRecHitCollection = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
0012     HBHERecHitsCollection = egammaHBHERecHit.hbheRecHits,
0013     recHitEThresholdHB = egammaHBHERecHit.recHitEThresholdHB,
0014     recHitEThresholdHE = egammaHBHERecHit.recHitEThresholdHE,
0015     noiseThrES = cms.double(0.0)
0016     
0017     
0018 )
0019 
0020