Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jun 13, 2024
1 parent bbffd74 commit 58372bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipeline/sensitivity/Validation.C
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ Int_t Validation() {
return 2;
}

if (sens.GetCurve()[0] < 0.00071575 || sens.GetCurve()[0] > 0.00071576 ) {
if (sens.GetCurve()[0] < 0.00071575 || sens.GetCurve()[0] > 0.00071576) {
std::cout << "error! the first point on the sensitivity curve should be 0.000715751!" << std::endl;
std::cout << "present value: " << sens.GetCurve()[0] << std::endl;
return 3;
}

if (sens.GetCurve()[1] < 0.6135 || sens.GetCurve()[1] > 0.6136 ) {
if (sens.GetCurve()[1] < 0.6135 || sens.GetCurve()[1] > 0.6136) {
std::cout << "error! the second point on the sensitivity curve should be 0.613593!" << std::endl;
std::cout << "present value: " << sens.GetCurve()[1] << std::endl;
return 4;
Expand Down

0 comments on commit 58372bb

Please sign in to comment.