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

Merge branch 'jedebevc/add-track-hasValidTime-plot' into 'main'

Add track hasValidTime to monitoring

See merge request atlas/athena!69658
parents cd5c6910 1c003254
No related merge requests found
......@@ -403,6 +403,11 @@ end of hit residuals & cluster width plots
<y title="Number of Entries"/>
</h>
<h id="reco_hasValidTime_eff_vs_eta" type="TEfficiency" title="hasValidTime efficiency vs eta">
<x title="#eta" n="100" lo="-&ETA;" hi="&ETA;"/>
<y title="efficiency"/>
</h>
<!--
=======================================================
end of HGTD timing plots
......
......@@ -37,6 +37,7 @@ InDetPerfPlot_TrackParameters::initializePlots() {
book(m_reco_chi2Overndof, "reco_chi2Overndof");
book(m_reco_author, "reco_author");
book(m_reco_time, "reco_time");
book(m_reco_hasValidTime_eff_vs_eta, "reco_hasValidTime_eff_vs_eta");
book(m_truth_d0, "truth_d0");
book(m_truth_z0, "truth_z0");
......@@ -141,6 +142,10 @@ InDetPerfPlot_TrackParameters::fill(const xAOD::TrackParticle& particle, float w
}
}
if( accValidTime.isAvailable(particle) ) {
fillHisto(m_reco_hasValidTime_eff_vs_eta, eta, particle.hasValidTime(), weight);
}
}
void
......
......@@ -41,6 +41,7 @@ private:
TH1* m_reco_chi2Overndof{};
TH1* m_reco_author{};
TH1* m_reco_time{};
TEfficiency* m_reco_hasValidTime_eff_vs_eta{};
TH1* m_truth_d0{};
TH1* m_truth_z0{};
......
......@@ -60,6 +60,7 @@
<hist1D name="truth_eta" plotopts="" tests="KS" type="TH1F"/>
<hist1D name="truth_pt" plotopts="" tests="KS" type="TH1F"/>
<hist1D name="truth_lowpt" plotopts="" tests="KS" type="TH1F"/>
<graph name="reco_hasValidTime_eff_vs_eta" plotopts="" tests="KS" type="TEfficiency"/>
</TDirectory>
<TDirectory name="HitsOnTracks">
<hist1D name="nInnerMostPixelHits" plotopts="" tests="KS" type="TH1F"/>
......
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