FIXED bug reported in MUSR-183: missing background for 2nd histo in asymmetry fits when using musrt0.
This commit is contained in:
@ -827,9 +827,11 @@ Int_t PMsrHandler::WriteMsrLogFile(const Bool_t messages)
|
||||
if (fRuns[runNo].GetBkgRange(0) >= 0) {
|
||||
fout.width(16);
|
||||
fout << left << "background";
|
||||
for (UInt_t j=0; j<2; j++) {
|
||||
fout.width(8);
|
||||
fout << left << fRuns[runNo].GetBkgRange(j);
|
||||
for (UInt_t j=0; j<4; j++) {
|
||||
if (fRuns[runNo].GetBkgRange(j) > 0) {
|
||||
fout.width(8);
|
||||
fout << left << fRuns[runNo].GetBkgRange(j);
|
||||
}
|
||||
}
|
||||
fout << endl;
|
||||
}
|
||||
|
Reference in New Issue
Block a user