From 91b8f7669dd9a7aea95dac3ebcf95aa9288e6f8c Mon Sep 17 00:00:00 2001 From: Alexandru Bercuci <abercuci@niham.nipne.ro> Date: Tue, 29 Oct 2024 11:40:32 +0200 Subject: [PATCH] fix format --- reco/qa/CbmRecoQaTask.cxx | 10 +++++----- reco/qa/CbmRecoQaTask.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/reco/qa/CbmRecoQaTask.cxx b/reco/qa/CbmRecoQaTask.cxx index 3dab7e450e..c942e6ff21 100644 --- a/reco/qa/CbmRecoQaTask.cxx +++ b/reco/qa/CbmRecoQaTask.cxx @@ -665,14 +665,14 @@ void CbmRecoQaTask::Exec(Option_t*) else { int iprj(0); for (auto plane : fPrjPlanes) { - CbmKfTrackFitter::TrajectoryNode n = CbmKfTrackFitter::TrajectoryNode(); - n.fZ = plane.Z(); - n.fIsXySet = true; - n.fReference1 = iprj++; + CbmKfTrackFitter::TrajectoryNode n = CbmKfTrackFitter::TrajectoryNode(); + n.fZ = plane.Z(); + n.fIsXySet = true; + n.fReference1 = iprj++; trkKf.fNodes.push_back(n); } trkKf.OrderNodesInZ(); - fFitter.FitTrajectory(trkKf); + fFitter.FitTrajectory(trkKf); TVector3 xyz; for (auto& n : trkKf.fNodes) { diff --git a/reco/qa/CbmRecoQaTask.h b/reco/qa/CbmRecoQaTask.h index 54495b14fd..e9e64d3b25 100644 --- a/reco/qa/CbmRecoQaTask.h +++ b/reco/qa/CbmRecoQaTask.h @@ -104,7 +104,7 @@ class CbmRecoQaTask : public FairTask { bool HasAddress(const CbmHit* h, double& x, double& y, double& dx, double& dy) const; template<class Hit> bool Load(const CbmHit* h, const FairMCPoint* point, const CbmEvent* ev); - bool Load(const CbmKfTrackFitter::TrajectoryNode* n, const FairMCPoint* point); + bool Load(const CbmKfTrackFitter::TrajectoryNode* n, const FairMCPoint* point); bool Load(TVector3* p); std::string ToString() const; static std::string ToString(eProjectionType prj); -- GitLab