CMS 3D CMS Logo

mvaHaloVariable_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from RecoEgamma.EgammaIsolationAlgos.egammaHBHERecHitThreshold_cff import egammaHBHERecHit
3 
4 pathToHaloMVATrainingFile = "RecoEgamma/PhotonIdentification/data/beamHaloTaggerID/xgboostToTMVA_BHtagger.root"
5 mvaHaloVariable = cms.PSet(
6  #required inputs
7  trainingFileName = cms.FileInPath(pathToHaloMVATrainingFile),
8  rhoLabel = cms.InputTag("fixedGridRhoFastjetAllTmp"),
9  barrelEcalRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
10  endcapEcalRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
11  esRecHitCollection = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
12  HBHERecHitsCollection = egammaHBHERecHit.hbheRecHits,
13  recHitEThresholdHB = egammaHBHERecHit.recHitEThresholdHB,
14  recHitEThresholdHE = egammaHBHERecHit.recHitEThresholdHE,
15  noiseThrES = cms.double(0.0)
16 
17 
18 )
19 
20