diff --git a/source/include/Scenario.hxx b/source/include/Scenario.hxx index b82686fe3d5734d1b26deb6b52d972e96726470f..1775d5613d07154b282c7c381f21e766f91d4a96 100644 --- a/source/include/Scenario.hxx +++ b/source/include/Scenario.hxx @@ -308,7 +308,7 @@ public : void PrintClover(int i); //!< Print a nuclear clover for progression void ProgressPrintout(cSecond t); //!< Update the prompt output to the time t - void OldProgressPrintout(cSecond t); //!< Update the prompt output to the time t (without nuclear clover) + void BalProgressPrintout(cSecond t); //!< Update the prompt output to the time t (without nuclear clover) void SetSoberTerminalOutput() { fOldProgressBar = true; //!< Dont display animated nuclear clover in terminal } diff --git a/source/src/Scenario.cxx b/source/src/Scenario.cxx index 81326d04646c2554700677be2c7e05a97bd3fb3d..78e3b00166d19f76dcf50b0209329b556531e66e 100644 --- a/source/src/Scenario.cxx +++ b/source/src/Scenario.cxx @@ -680,7 +680,7 @@ void Scenario::Evolution(cSecond t) //________________________________________________________________________ //________________________________________________________________________ -void Scenario::OldProgressPrintout(cSecond t) +void Scenario::ProgressPrintout(cSecond t) { double Time = (fAbsoluteTime-fStartingTime)/(double)cYear ; double Total = (t-fStartingTime)/(double)cYear; @@ -706,14 +706,14 @@ void Scenario::OldProgressPrintout(cSecond t) } //________________________________________________________________________ -void Scenario::ProgressPrintout(cSecond t) +void Scenario::BalProgressPrintout(cSecond t) // Obsolete... { double Time = (fAbsoluteTime-fStartingTime)/(double)cYear ; double Total = (t-fStartingTime)/(double)cYear; if(fOldProgressBar) - OldProgressPrintout(t); - + //OldProgressPrintout(t); + ProgressPrintout(t); else { int system_out = system("clear");