Skip to content
Snippets Groups Projects
Commit 4f7f9f76 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'master' into 'master'

remove obsole variables, fix for labeling and binning

See merge request !58820
parents 03837e06 a461263e
No related branches found
No related tags found
4 merge requests!59674InDetPerformanceMonitoring with LumiBlock selection,!59383cppcheck in trigger code: Prefer prefix ++/-- operators for non-primitive types.,!58990Draft:Fixing bug in FTF config when running with Reco_tf,!58820remove obsole variables, fix for labeling and binning
......@@ -141,6 +141,8 @@ StatusCode EgammaPhysValMonitoringTool::fillHistograms()
truthParticle->status() == 1 && truthParticle->barcode() < HepMC::SIM_REGENERATION_INCREMENT) {
m_oElectronValidationPlots.m_oTruthIsoPlots.fill(*truthParticle,
*eventInfo);
m_oElectronValidationPlots.m_oTruthPromptElecPlots.fill(*truthParticle,
*eventInfo);
} //-- end electrons
//--photons
......@@ -269,10 +271,12 @@ StatusCode EgammaPhysValMonitoringTool::fillHistograms()
m_oElectronValidationPlots.m_oTruthAllPlots.fill(*truthallParticle,
*eventInfo);
if (elecPrompt)
m_oElectronValidationPlots.m_oTruthAllIsoPlots.fill(*truthallParticle,
*eventInfo);
if (elecPrompt) {
m_oElectronValidationPlots.m_oTruthAllIsoPlots.fill(*truthallParticle,
*eventInfo);
m_oElectronValidationPlots.m_oTruthAllPromptPlots.fill(*truthallParticle,
*eventInfo);
}
} //-- end electrons
//--photons
......@@ -385,10 +389,12 @@ StatusCode EgammaPhysValMonitoringTool::fillRecoElecHistograms(const xAOD::Truth
float EtLin = (electron->pt()-thePart->pt())/thePart->pt();
m_oElectronValidationPlots.res_et->Fill(thePart->pt()/GeV,EtLin,weight);
m_oElectronValidationPlots.res_eta->Fill(thePart->eta(),EtLin,weight);
if (thePart->pt()/GeV>20.) {
m_oElectronValidationPlots.res_et_cut->Fill(thePart->pt()/GeV,EtLin,weight);
m_oElectronValidationPlots.res_eta_cut->Fill(thePart->eta(),EtLin,weight);
}
if (thePart->pt()/GeV>20.) {
m_oElectronValidationPlots.res_et_cut->Fill(thePart->pt()/GeV,EtLin,weight);
m_oElectronValidationPlots.res_eta_cut->Fill(thePart->eta(),EtLin,weight);
m_oElectronValidationPlots.res_et_cut_pt_20->Fill(thePart->pt()/GeV,EtLin,weight);
m_oElectronValidationPlots.res_eta_cut_pt_20->Fill(thePart->eta(),EtLin,weight);
}
m_oElectronValidationPlots.matrix->Fill(electron->pt()/GeV,thePart->pt()/GeV);
}else {
cout<<"Truth particle associated not in egamma truth collection"<<endl;
......
......@@ -28,15 +28,32 @@ ElectronPlots::ElectronPlots(PlotBase* pParent, const std::string& sDir,
m_oShowerShapesIsoLHLoosePlots(this, "IsoLHLoose/ShowerShapesPlots/","LHLoose "+ sParticleType +" Electron" ),
m_oIsolationIsoLHLoosePlots(this, "IsoLHLoose/IsolationPlots/", "LHLoose "+ sParticleType +" Electron" ),
m_oTrackIsoLHLoosePlots(this, "IsoLHLoose/TrackPlots/", "LHLoose "+ sParticleType +" Electron" ),
m_oKinIsoLHMediumPlots(this, "IsoLHMedium/KinPlots/", "LHMedium "+ sParticleType +" Electron"),
m_oKinIsoLHMediumPlots(this, "IsoLHMedium/KinPlots/", "LHMedium "+ sParticleType +" Electron"),
m_oShowerShapesIsoLHMediumPlots(this, "IsoLHMedium/ShowerShapesPlots/","LHMedium "+ sParticleType +" Electron" ),
m_oIsolationIsoLHMediumPlots(this, "IsoLHMedium/IsolationPlots/", "LHMedium "+ sParticleType +" Electron" ),
m_oTrackIsoLHMediumPlots(this, "IsoLHMedium/TrackPlots/", "LHMedium "+ sParticleType +" Electron" ),
m_oKinIsoLHTightPlots(this, "IsoLHTight/KinPlots/", "LHTight "+ sParticleType +" Electron"),
m_oKinIsoLHTightPlots(this, "IsoLHTight/KinPlots/", "LHTight "+ sParticleType +" Electron"),
m_oShowerShapesIsoLHTightPlots(this, "IsoLHTight/ShowerShapesPlots/","LHTight "+ sParticleType +" Electron" ),
m_oIsolationIsoLHTightPlots(this, "IsoLHTight/IsolationPlots/", "LHTight "+ sParticleType +" Electron" ),
m_oTrackIsoLHTightPlots(this, "IsoLHTight/TrackPlots/", "LHTight "+ sParticleType +" Electron" ),
nParticles(nullptr),
m_oKinPromptRecoPlots(this, "Truth_matched/KinPlots/", "Truth matched Reco "+ sParticleType +" Electron"),
m_oShowerShapesPromptRecoPlots(this, "Truth_matched/ShowerShapesPlots/","Truth matched Reco "+ sParticleType +" Electron" ),
m_oIsolationPromptRecoPlots(this, "Truth_matched/IsolationPlots/", "Truth matched Reco "+ sParticleType +" Electron" ),
m_oTrackPromptRecoPlots(this, "Truth_matched/TrackPlots/", "Truth matched Reco "+ sParticleType +" Electron" ),
m_oKinPromptLHLoosePlots(this, "Truth_matched_LHLoose/KinPlots/", "Truth matched LHLoose "+ sParticleType +" Electron"),
m_oShowerShapesPromptLHLoosePlots(this, "Truth_matched_LHLoose/ShowerShapesPlots/","Truth matched LHLoose "+ sParticleType +" Electron" ),
m_oIsolationPromptLHLoosePlots(this, "Truth_matched_LHLoose/IsolationPlots/", "Truth matched LHLoose "+ sParticleType +" Electron" ),
m_oTrackPromptLHLoosePlots(this, "Truth_matched_LHLoose/TrackPlots/", "Truth matched LHLoose "+ sParticleType +" Electron" ),
m_oKinPromptLHMediumPlots(this, "Truth_matched_LHMedium/KinPlots/", "Truth matched LHMedium "+ sParticleType +" Electron"),
m_oShowerShapesPromptLHMediumPlots(this, "Truth_matched_LHMedium/ShowerShapesPlots/","Truth matched LHMedium "+ sParticleType +" Electron" ),
m_oIsolationPromptLHMediumPlots(this, "Truth_matched_LHMedium/IsolationPlots/", "Truth matched LHMedium "+ sParticleType +" Electron" ),
m_oTrackPromptLHMediumPlots(this, "Truth_matched_LHMedium/TrackPlots/", "Truth matched LHMedium "+ sParticleType +" Electron" ),
m_oKinPromptLHTightPlots(this, "Truth_matched_LHTight/KinPlots/", "Truth matched LHTight "+ sParticleType +" Electron"),
m_oShowerShapesPromptLHTightPlots(this, "Truth_matched_LHTight/ShowerShapesPlots/","Truth matched LHTight "+ sParticleType +" Electron" ),
m_oIsolationPromptLHTightPlots(this, "Truth_matched_LHTight/IsolationPlots/", "Truth matched LHTight "+ sParticleType +" Electron" ),
m_oTrackPromptLHTightPlots(this, "Truth_matched_LHTight/TrackPlots/", "Truth matched LHTight "+ sParticleType +" Electron" ),
nParticles(nullptr),
nParticles_weighted(nullptr),
nTypeParticles(nullptr),
m_sParticleType(sParticleType)
......@@ -53,6 +70,11 @@ void ElectronPlots::initializePlots(){
m_oShowerShapesAllRecoPlots.fill(electron,eventInfo);
m_oIsolationAllRecoPlots.fill(electron,eventInfo);
m_oTrackAllRecoPlots.fill(electron,eventInfo);
m_oKinPromptRecoPlots.fill(electron,eventInfo);
m_oShowerShapesPromptRecoPlots.fill(electron,eventInfo);
m_oIsolationPromptRecoPlots.fill(electron,eventInfo);
m_oTrackPromptRecoPlots.fill(electron,eventInfo);
if(!isPrompt) return;
......@@ -68,6 +90,11 @@ void ElectronPlots::initializePlots(){
m_oShowerShapesIsoLHLoosePlots.fill(electron,eventInfo);
m_oIsolationIsoLHLoosePlots.fill(electron,eventInfo);
m_oTrackIsoLHLoosePlots.fill(electron,eventInfo);
m_oKinPromptLHLoosePlots.fill(electron,eventInfo);
m_oShowerShapesPromptLHLoosePlots.fill(electron,eventInfo);
m_oIsolationPromptLHLoosePlots.fill(electron,eventInfo);
m_oTrackPromptLHLoosePlots.fill(electron,eventInfo);
}
bool val_LHmed=false;
......@@ -77,6 +104,11 @@ void ElectronPlots::initializePlots(){
m_oShowerShapesIsoLHMediumPlots.fill(electron,eventInfo);
m_oIsolationIsoLHMediumPlots.fill(electron,eventInfo);
m_oTrackIsoLHMediumPlots.fill(electron,eventInfo);
m_oKinPromptLHMediumPlots.fill(electron,eventInfo);
m_oShowerShapesPromptLHMediumPlots.fill(electron,eventInfo);
m_oIsolationPromptLHMediumPlots.fill(electron,eventInfo);
m_oTrackPromptLHMediumPlots.fill(electron,eventInfo);
}
bool val_LHtight=false;
......@@ -86,6 +118,11 @@ void ElectronPlots::initializePlots(){
m_oShowerShapesIsoLHTightPlots.fill(electron,eventInfo);
m_oIsolationIsoLHTightPlots.fill(electron,eventInfo);
m_oTrackIsoLHTightPlots.fill(electron,eventInfo);
m_oKinPromptLHTightPlots.fill(electron,eventInfo);
m_oShowerShapesPromptLHTightPlots.fill(electron,eventInfo);
m_oIsolationPromptLHTightPlots.fill(electron,eventInfo);
m_oTrackPromptLHTightPlots.fill(electron,eventInfo);
}
}
......
......@@ -31,6 +31,7 @@ class ElectronPlots:public PlotBase {
Egamma::ShowerShapesPlots m_oShowerShapesAllRecoPlots;
Egamma::IsolationPlots m_oIsolationAllRecoPlots;
Egamma::TrackPlots m_oTrackAllRecoPlots;
Egamma::KinematicsPlots m_oKinIsoRecoPlots;
Egamma::ShowerShapesPlots m_oShowerShapesIsoRecoPlots;
Egamma::IsolationPlots m_oIsolationIsoRecoPlots;
......@@ -40,15 +41,37 @@ class ElectronPlots:public PlotBase {
Egamma::ShowerShapesPlots m_oShowerShapesIsoLHLoosePlots;
Egamma::IsolationPlots m_oIsolationIsoLHLoosePlots;
Egamma::TrackPlots m_oTrackIsoLHLoosePlots;
Egamma::KinematicsPlots m_oKinIsoLHMediumPlots;
Egamma::ShowerShapesPlots m_oShowerShapesIsoLHMediumPlots;
Egamma::IsolationPlots m_oIsolationIsoLHMediumPlots;
Egamma::TrackPlots m_oTrackIsoLHMediumPlots;
Egamma::KinematicsPlots m_oKinIsoLHTightPlots;
Egamma::ShowerShapesPlots m_oShowerShapesIsoLHTightPlots;
Egamma::IsolationPlots m_oIsolationIsoLHTightPlots;
Egamma::TrackPlots m_oTrackIsoLHTightPlots;
Egamma::KinematicsPlots m_oKinPromptRecoPlots;
Egamma::ShowerShapesPlots m_oShowerShapesPromptRecoPlots;
Egamma::IsolationPlots m_oIsolationPromptRecoPlots;
Egamma::TrackPlots m_oTrackPromptRecoPlots;
Egamma::KinematicsPlots m_oKinPromptLHLoosePlots;
Egamma::ShowerShapesPlots m_oShowerShapesPromptLHLoosePlots;
Egamma::IsolationPlots m_oIsolationPromptLHLoosePlots;
Egamma::TrackPlots m_oTrackPromptLHLoosePlots;
Egamma::KinematicsPlots m_oKinPromptLHMediumPlots;
Egamma::ShowerShapesPlots m_oShowerShapesPromptLHMediumPlots;
Egamma::IsolationPlots m_oIsolationPromptLHMediumPlots;
Egamma::TrackPlots m_oTrackPromptLHMediumPlots;
Egamma::KinematicsPlots m_oKinPromptLHTightPlots;
Egamma::ShowerShapesPlots m_oShowerShapesPromptLHTightPlots;
Egamma::IsolationPlots m_oIsolationPromptLHTightPlots;
Egamma::TrackPlots m_oTrackPromptLHTightPlots;
TH1* nParticles;
TH1* nParticles_weighted;
TH1* nTypeParticles;
......
......@@ -11,13 +11,17 @@ ElectronValidationPlots::ElectronValidationPlots(PlotBase* pParent, const std::s
m_oTruthAllPlots(this, "Truth/All/", "Truth Electron All"),
m_oTruthAllIsoPlots(this, "Truth/All/Iso/", "Truth Electron Prompt"),
m_oTruthIsoPlots(this, "Truth/Iso/", "Truth Electron Prompt"),
m_oTruthAllPromptPlots(this, "Truth/All/Prompt/", "Truth Electron Prompt"),
m_oTruthPromptElecPlots(this, "Truth/Prompt_elec/", "Truth Electron Prompt from EgammaTruthContainer"),
author(nullptr),
mu_average(nullptr),
mu_actual(nullptr),
mu_actual(nullptr),
res_et(nullptr),
res_eta(nullptr),
res_et_cut(nullptr),
res_eta_cut(nullptr),
res_et_cut_pt_20(nullptr),
res_eta_cut_pt_20(nullptr),
//pt_ratio(nullptr),
matrix(nullptr)
......@@ -32,6 +36,8 @@ void ElectronValidationPlots::initializePlots(){
res_eta = BookTProfile("res_eta"," IsoElectron;#eta;(E_{T} - E_{T}^{Truth})/E_{T}^{Truth}",50, -2.5, 2.5);
res_et_cut = BookTProfile("res_et_cut"," IsoElectron;E_{T}^{Truth}, [GeV];(E_{T} - E_{T}^{Truth})/E_{T}^{Truth}",100, 0., 200.);
res_eta_cut = BookTProfile("res_eta_cut"," IsoElectron;#eta;(E_{T} - E_{T}^{Truth})/E_{T}^{Truth}",50, -2.5, 2.5);
res_et_cut_pt_20 = BookTProfile("res_et_cut_pt_20"," Prompt Electron;E_{T}^{Truth}, [GeV];(E_{T} - E_{T}^{Truth})/E_{T}^{Truth}",100, 0., 200.);
res_eta_cut_pt_20 = BookTProfile("res_eta_cut_pt_20"," Prompt Electron;#eta;(E_{T} - E_{T}^{Truth})/E_{T}^{Truth}",50, -2.5, 2.5);
matrix = Book2D("matrix","reco vs truth pt",200,0.,200.,200,0.,200.);
}
......
......@@ -28,6 +28,8 @@ class ElectronValidationPlots:public PlotBase {
Egamma::KinematicsPlots m_oTruthAllPlots;
Egamma::KinematicsPlots m_oTruthAllIsoPlots;
Egamma::KinematicsPlots m_oTruthIsoPlots;
Egamma::KinematicsPlots m_oTruthAllPromptPlots;
Egamma::KinematicsPlots m_oTruthPromptElecPlots;
TH1* author;
TH1* mu_average;
......@@ -36,6 +38,8 @@ class ElectronValidationPlots:public PlotBase {
TProfile* res_eta;
TProfile* res_et_cut;
TProfile* res_eta_cut;
TProfile* res_et_cut_pt_20;
TProfile* res_eta_cut_pt_20;
TH2* matrix;
private:
......
......@@ -13,31 +13,21 @@ namespace Egamma{
IsolationPlots::IsolationPlots(PlotBase* pParent, const std::string& sDir, std::string sParticleType):PlotBase(pParent, sDir),
m_sParticleType(std::move(sParticleType)),
etcone20(nullptr),
etcone30(nullptr),
etcone40(nullptr),
ptcone20(nullptr),
ptcone30(nullptr),
ptcone40(nullptr),
ptvarcone20(nullptr),
ptvarcone20(nullptr),
ptvarcone30(nullptr),
ptvarcone40(nullptr),
topoetcone20(nullptr),
topoetcone20(nullptr),
topoetcone30(nullptr),
topoetcone40(nullptr)
{}
void IsolationPlots::initializePlots(){
etcone20 = Book1D("etcone20", "e_{T}^{cone20} of "+ m_sParticleType+";e_{T}^{cone20};Entries", 65, -5., 60.);
etcone30 = Book1D("etcone30", "e_{T}^{cone30} of "+ m_sParticleType+";e_{T}^{cone30};Entries", 65, -5., 60.);
etcone40 = Book1D("etcone40", "e_{T}^{cone40} of "+ m_sParticleType+";e_{T}^{cone40};Entries", 65, -5., 60.);
ptcone20 = Book1D("ptcone20", "p_{T}^{cone20} of "+ m_sParticleType+";p_{T}^{cone20};Entries", 65, -5., 60.);
ptcone30 = Book1D("ptcone30", "p_{T}^{cone30} of "+ m_sParticleType+";p_{T}^{cone30};Entries", 65, -5., 60.);
ptcone40 = Book1D("ptcone40", "p_{T}^{cone40} of "+ m_sParticleType+";p_{T}^{cone40};Entries", 65, -5., 60.);
ptvarcone20 = Book1D("ptvarcone20", "p_{T}^{varcone20} of "+ m_sParticleType+";p_{T}^{varcone20};Entries", 65, -5., 60.);
ptvarcone30 = Book1D("ptvarcone30", "p_{T}^{varcone30} of "+ m_sParticleType+";p_{T}^{varcone30};Entries", 65, -5., 60.);
ptvarcone40 = Book1D("ptvarcone40", "p_{T}^{varcone40} of "+ m_sParticleType+";p_{T}^{varcone40};Entries", 65, -5., 60.);
topoetcone20 = Book1D("topoetcone20", "Topo E_{T}^{cone20} of "+ m_sParticleType+";TopoE_{T}^{cone20};Entries", 90, -10., 80.);
topoetcone30 = Book1D("topoetcone30", "Topo E_{T}^{cone30} of "+ m_sParticleType+";TopoE_{T}^{cone30};Entries", 90, -10., 80.);
topoetcone40 = Book1D("topoetcone40", "Topo E_{T}^{cone40} of "+ m_sParticleType+";TopoE_{T}^{cone40};Entries", 90, -10., 80.);
......@@ -47,15 +37,10 @@ namespace Egamma{
void IsolationPlots::fill(const xAOD::Egamma& egamma, const xAOD::EventInfo& eventInfo) {
FillIsolationPlot(etcone20 ,xAOD::Iso::etcone20, egamma, eventInfo);
FillIsolationPlot(etcone30 ,xAOD::Iso::etcone30, egamma, eventInfo);
FillIsolationPlot(etcone40 ,xAOD::Iso::etcone40, egamma, eventInfo);
FillIsolationPlot(ptcone20 ,xAOD::Iso::ptcone20, egamma, eventInfo);
FillIsolationPlot(ptcone30 ,xAOD::Iso::ptcone30, egamma, eventInfo);
FillIsolationPlot(ptcone40 ,xAOD::Iso::ptcone40, egamma, eventInfo);
FillIsolationPlot(ptvarcone20 ,xAOD::Iso::ptvarcone20, egamma, eventInfo);
FillIsolationPlot(ptvarcone30 ,xAOD::Iso::ptvarcone30, egamma, eventInfo);
FillIsolationPlot(ptvarcone40 ,xAOD::Iso::ptvarcone40, egamma, eventInfo);
FillIsolationPlot(topoetcone20 ,xAOD::Iso::topoetcone20, egamma, eventInfo);
FillIsolationPlot(topoetcone30 ,xAOD::Iso::topoetcone30, egamma, eventInfo);
FillIsolationPlot(topoetcone40 ,xAOD::Iso::topoetcone40, egamma, eventInfo);
......
......@@ -20,15 +20,10 @@ class IsolationPlots:public PlotBase {
std::string m_sParticleType;
TH1* etcone20;
TH1* etcone30;
TH1* etcone40;
TH1* ptcone20;
TH1* ptcone30;
TH1* ptcone40;
TH1* ptvarcone20;
TH1* ptvarcone30;
TH1* ptvarcone40;
TH1* topoetcone20;
TH1* topoetcone30;
TH1* topoetcone40;
......
......@@ -39,9 +39,9 @@ void TrackPlots::initializePlots(){
deta = Book1D("deta", "#Delta#eta_{1} of "+m_sParticleType+";#Delta#eta_{1};Electrons", 100,-0.01, 0.01);
dphi = Book1D("dphi", "#Delta#varphi_{2} of "+m_sParticleType+";#Delta#varphi_{2};Electrons", 100,-0.01, 0.01);
dphirescaled = Book1D("dphirescaled", "#Delta#varphiRescaled_{2} of "+m_sParticleType+";#Delta#varphiRescaled_{2};Electrons",100,-0.01,0.01);
d0 = Book1D("d0", "d0 of "+m_sParticleType+"; d0;Electrons", 250, 0, 25);
z0 = Book1D("z0", "z0 of "+m_sParticleType+"; z0;Electrons", 250, 0, 25);
d0significance = Book1D("d0significance", "d0significance of "+m_sParticleType+"; d0significance;Electrons", 250, 0, 25);
d0 = Book1D("d0", "d0 of "+m_sParticleType+"; d0;Electrons", 200, -100, 100);
z0 = Book1D("z0", "z0 of "+m_sParticleType+"; z0;Electrons", 200, -100, 100);
d0significance = Book1D("d0significance", "d0significance of "+m_sParticleType+"; d0significance;Electrons", 50, -25, 25);
blayer = Book1D("blayer", "#blayer hits of "+m_sParticleType+";# blayer hits;Electrons", 5,0, 5);
pixel = Book1D("pixel", "#pixel hits of "+m_sParticleType+";# pixel hits;Electrons", 10, 0, 10);
sct = Book1D("sct", "#sct hits of "+m_sParticleType+";# sct hits;Electrons", 25, 0, 25);
......@@ -51,7 +51,7 @@ void TrackPlots::initializePlots(){
trt_total = Book1D("trt_total", "#total trt hits of "+m_sParticleType+";# total trt hits;Electrons", 50, 0, 50);
trt_ht = Book1D("trt_ht", "#HT trt hits of "+m_sParticleType+";# HT trt hits;Electrons", 50, 0, 50);
trt_ht_total = Book1D("trt_ht_total", "#HT total trt hits of "+m_sParticleType+";# total HT trt hits;Electrons", 50, 0, 50);
eProbHT = Book1D("eProbabilityHT", "#eProbablity HT of "+m_sParticleType+";#eProbablity HT;Electrons", 50, 0, 5);
eProbHT = Book1D("eProbabilityHT", "#eProbablity HT of "+m_sParticleType+";#eProbablity HT;Electrons", 20, 0, 1);
deltaPoverP = Book1D("deltaPoverP", "#DeltaP/P of "+m_sParticleType+";#DeltaP/P;Electrons", 100,-1.1, 1.1);
EoverP = Book1D("EoverP", "E/P of "+m_sParticleType+";E/P;Electrons", 100, 0, 10);
trtratio = Book2D("trtratio", "TRT ratio vs eta of"+m_sParticleType+";#eta; TRT ratio", 50, -2.5, 2.5,100,0.,1.);
......
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