fixed c++ streaming output flag error.

This commit is contained in:
suter_a 2023-03-07 12:28:01 +01:00
parent 3457ff9d25
commit f7620445dc

View File

@ -2530,7 +2530,7 @@ Bool_t PFitter::ExecuteSave(Bool_t firstSave)
fitStartTime = run->at(0).GetFitRange(0);
fitEndTime = run->at(0).GetFitRange(1);
}
fout.setf(std::ios::floatfield);
fout.setf(std::ios::fixed, std::ios::floatfield);
fout << std::endl << " Time Range: " << fitStartTime << ", " << fitEndTime << std::endl;
if (fUseChi2) {
fout.setf(std::ios::fixed, std::ios::floatfield);