Skip to content
Snippets Groups Projects
Commit fd07082e authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'rootcomp' into 'master'

TrigValTools: speedup rootcomp if no output file is requested

See merge request atlas/athena!34334
parents 0eef7071 81710d5c
No related branches found
No related tags found
No related merge requests found
...@@ -161,6 +161,9 @@ void TRootCompare::processKey(TDirectory& dir, TKey& key) ...@@ -161,6 +161,9 @@ void TRootCompare::processKey(TDirectory& dir, TKey& key)
else { // histograms do not match else { // histograms do not match
m_noMatch.push_back(keyPath.Data()); m_noMatch.push_back(keyPath.Data());
// Skip drawing if no output was requested
if (!m_outFile && m_psFile.Length()==0) return;
m_can->Clear(); m_can->Clear();
m_can->Divide(2,1); m_can->Divide(2,1);
m_can->cd(1)->SetPad(0,1,1,0.90); m_can->cd(1)->SetPad(0,1,1,0.90);
......
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