Skip to content
Snippets Groups Projects
Commit 5bccd734 authored by Eric Pooser's avatar Eric Pooser
Browse files

Fix bug so as to allow logx and logz to have an asymmetric number of columns and rows

parent fee84788
No related branches found
No related tags found
No related merge requests found
......@@ -495,7 +495,10 @@ pair <UInt_t, UInt_t> OnlineConfig::GetPageDim(UInt_t page)
UInt_t page_index = pageInfo[page].first;
UInt_t size1 = 2;
if (IsLogx(page)) size1 = 3; // last word is "logy"
if (IsLogy(page)) size1 = 3; // last word is "logy"
if (IsLogz(page)) size1 = 3; // last word is "logy"
// If the dimensions are defined, return them.
if(sConfFile[page_index].size()>size1-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