improved rounding handling to get a more consistent expected chisq after fitting compared to pure chisq estimate of musrfit. Essentially get rid of rounding issues.

This commit is contained in:
2025-07-03 09:38:34 +02:00
parent 7491a2c331
commit 1aa7e6941f
2 changed files with 51 additions and 3 deletions

View File

@@ -167,7 +167,7 @@ class PFitter
// commands
Bool_t CheckCommands();
Bool_t SetParameters();
Bool_t SetParameters();
Bool_t ExecuteContours();
Bool_t ExecuteFitRange(UInt_t lineNo);
@@ -187,6 +187,7 @@ class PFitter
Bool_t ExecuteSector(std::ofstream &fout);
Double_t MilliTime();
PDoubleVector ParamRound(const PDoubleVector &par, const PDoubleVector &err, Bool_t &ok);
};
#endif // _PFITTER_H_