From 9ce3529dc5921f2f19bcd732b35d806724ce84bf Mon Sep 17 00:00:00 2001 From: AJPfleger Date: Fri, 6 Oct 2023 11:50:29 +0200 Subject: [PATCH] silence surfaceSequence --- .../TrackFitting/src/GlobalChiSquareFitterFunction.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Examples/Algorithms/TrackFitting/src/GlobalChiSquareFitterFunction.cpp b/Examples/Algorithms/TrackFitting/src/GlobalChiSquareFitterFunction.cpp index d9da5ba2792..32a70190fbb 100644 --- a/Examples/Algorithms/TrackFitting/src/GlobalChiSquareFitterFunction.cpp +++ b/Examples/Algorithms/TrackFitting/src/GlobalChiSquareFitterFunction.cpp @@ -114,7 +114,8 @@ struct GlobalChiSquareFitterFunctionImpl final : public TrackFitterFunction { TrackContainer& tracks) const override { const auto gx2fOptions = makeGx2fOptions(options, calibrator); std::cout << "############# THIS SHOULD NOT HAPPEN - wrong operator() " - "#############\nsurfaceSequence = " << surfaceSequence) << std::endl; + << std::endl; + (void)surfaceSequence; return fitter.fit(sourceLinks.begin(), sourceLinks.end(), initialParameters, gx2fOptions, tracks); }