changed name of a function for a more precise self description. Added function to collect to mu minus parameters.

This commit is contained in:
2016-04-25 12:15:36 +02:00
parent be9498f37d
commit 4dc36ffbae
3 changed files with 68 additions and 19 deletions

View File

@@ -114,7 +114,7 @@ void PFitterFcn::CalcExpectedChiSquare(const std::vector<Double_t> &par, Double_
// single histo
for (UInt_t i=0; i<fRunListCollection->GetNoOfSingleHisto(); i++) {
value = fRunListCollection->GetSingleHistoChisqExpected(par, i); // calculate the expected chisq for single histo run block 'i'
value = fRunListCollection->GetSingleRunChisqExpected(par, i); // calculate the expected chisq for single histo run block 'i'
expectedChisqPerRun.push_back(value);
totalExpectedChisq += value;
}