Skip to content

Commit

Permalink
Further debug update of charge fit addition to FoMCalculator
Browse files Browse the repository at this point in the history
  • Loading branch information
flemmons committed Nov 8, 2023
1 parent 96305cc commit 7fcf3ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DataModel/FoMCalculator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,11 +193,11 @@ void FoMCalculator::ConePropertiesLnL(double vtxX, double vtxY, double vtxZ, dou
weight = angularDist.GetBinContent(refbin)/coef;
P = digitCharge/allCharge;
cout << "conefomlnl P: " << P << ", weight: " << weight << endl;
chi2 += pow(P - weight, 2) / weight * 1000000;
chi2 += pow(P - weight, 2);

//outerCone = -outhits/inhits;
}
chi2 = chi2 / fVtxGeo->GetNDigits();
//chi2 = -2*log(chi2);
}
}

Expand Down

0 comments on commit 7fcf3ba

Please sign in to comment.