fixed c++ streaming output flag error.

This commit is contained in:
suter_a 2023-03-07 12:28:01 +01:00
parent 45a8b0a836
commit 058759c0bc

View File

@ -2698,7 +2698,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);