diff --git a/src/core/PlumedMain.cpp b/src/core/PlumedMain.cpp index 65191791f89c8590be3bb7494d306764fe67c957..4c4f8e0268b5e456e83a4b15df5faacd29526b06 100644 --- a/src/core/PlumedMain.cpp +++ b/src/core/PlumedMain.cpp @@ -676,6 +676,10 @@ void PlumedMain::justCalculate() { if(detailedTimers) { std::string actionNumberLabel; Tools::convert(iaction,actionNumberLabel); + const unsigned m=actionSet.size(); + unsigned k=0; unsigned n=1; while(n<m) { n*=10; k++; } + const int pad=k-actionNumberLabel.length(); + for(int i=0; i<pad; i++) actionNumberLabel=" "+actionNumberLabel; sw=stopwatch.startStop("4A "+actionNumberLabel+" "+p->getLabel()); } ActionWithValue*av=dynamic_cast<ActionWithValue*>(p); @@ -722,6 +726,10 @@ void PlumedMain::backwardPropagate() { if(detailedTimers) { std::string actionNumberLabel; Tools::convert(iaction,actionNumberLabel); + const unsigned m=actionSet.size(); + unsigned k=0; unsigned n=1; while(n<m) { n*=10; k++; } + const int pad=k-actionNumberLabel.length(); + for(int i=0; i<pad; i++) actionNumberLabel=" "+actionNumberLabel; sw=stopwatch.startStop("5A "+actionNumberLabel+" "+p->getLabel()); }