Skip to content
Snippets Groups Projects
Commit 23b8862f authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'master' into 'master'

Removed references to eleBDT

See merge request atlas/athena!37940
parents 9d58d066 6edcf06e
No related branches found
No related tags found
No related merge requests found
......@@ -318,19 +318,11 @@ def tauMonitoringConfig(inputFlags):
igroup.defineHistogram(namer('JetBDTBkgMedium','JetBDTBkgMedium','Identification',postfix), title='Loose EleBDT',path=folder+"Identification",
xbins=2, xmin=-0.5, xmax=1.5, xlabels=["False","True"])
igroup.defineHistogram(namer('BDTEleScoreSigTrans','BDTEleScoreSigTrans','Identification',postfix), title=' Flattened Signal Transformed BDT for Ele Rejection;Boosted Decision Tree Score',path=folder+"Identification",
xbins=24, xmin=-0.1, xmax=1.1 )
igroup.defineHistogram(namer('BDTJetScoreSigTrans','BDTJetScoreSigTrans','Identification',postfix), title='Flattened signal Transformed BDT Score for Jet Rejection;Boosted Decision Tree Score',path=folder+"Identification",
xbins=48, xmin=0, xmax=1.1 )
igroup.defineHistogram(namer('eleBDTMedium','eleBDTMedium','Identification',postfix), title='Medium EleBDT',path=folder+"Identification",
xbins=2, xmin=-0.5, xmax=1.5, xlabels=["False","True"])
igroup.defineHistogram(namer('eleBDTTight','eleBDTTight','Identification',postfix), title='Tight EleBDT',path=folder+"Identification",
xbins=2, xmin=-0.5, xmax=1.5, xlabels=["False","True"])
igroup.defineHistogram(namer('muonVeto','muonVeto','Identification',postfix), title='Muon Veto',path=folder+"Identification",
xbins=2, xmin=-0.5, xmax=1.5, xlabels=["False","True"] )
......
......@@ -99,13 +99,10 @@ StatusCode tauMonitorAlgorithm::fillHistograms( const EventContext& ctx ) const
auto jetSeedPhi = Monitored::Scalar<float>("jetSeedPhi",0.0);
auto jetSeedPt = Monitored::Scalar<float>("jetSeedPt",0.0);
auto BDTEleScoreSigTrans = Monitored::Scalar<float>("BDTEleScoreSigTrans",0.0);
auto BDTJetScore = Monitored::Scalar<float>("BDTJetScore",0.0);
auto BDTJetScoreSigTrans = Monitored::Scalar<float>("BDTJetScoreSigTrans",0.0);
auto JetBDTBkgMedium = Monitored::Scalar<float>("JetBDTBkgMedium",0.0);
auto eleBDTMedium = Monitored::Scalar<float>("eleBDTMedium",0.0);
auto eleBDTTight = Monitored::Scalar<float>("eleBDTTight",0.0);
auto muonVeto = Monitored::Scalar<float>("muonVeto",0.0);
......@@ -216,10 +213,7 @@ StatusCode tauMonitorAlgorithm::fillHistograms( const EventContext& ctx ) const
JetBDTBkgMedium = tau->isTau(xAOD::TauJetParameters::JetBDTBkgMedium);
BDTEleScoreSigTrans = tau->auxdata<float>("BDTEleScoreSigTrans");
eleBDTMedium = tau->isTau(xAOD::TauJetParameters::EleBDTMedium);
eleBDTTight = tau->isTau(xAOD::TauJetParameters::EleBDTTight);
muonVeto = tau->isTau(xAOD::TauJetParameters::MuonVeto);
tauBDTLoose = tau->isTau(xAOD::TauJetParameters::JetBDTSigLoose);
tauBDTMedium = tau->isTau(xAOD::TauJetParameters::JetBDTSigMedium);
......@@ -466,13 +460,10 @@ StatusCode tauMonitorAlgorithm::fillHistograms( const EventContext& ctx ) const
,etEMAtEMScale
,etHadAtEMScale
,tauCharge
,BDTEleScoreSigTrans
,BDTJetScore
,BDTJetScoreSigTrans
,JetBDTBkgMedium
,RNNJetScore
,eleBDTMedium
,eleBDTTight
,muonVeto
,tauBDTLoose
,tauBDTMedium
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment