From 002f1ec1c65bd5bbfe5010b9cdb0dc3ef05064fe Mon Sep 17 00:00:00 2001 From: "se.gorbunov" <se.gorbunov@gsi.de> Date: Wed, 18 Jan 2023 09:55:54 +0000 Subject: [PATCH] get rid of the hardcoded target position in CbmKFParticleFinder --- reco/KF/CbmKFParticleFinder.cxx | 6 ++++++ reco/KF/KFQA/CbmKFTrackQa.cxx | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/reco/KF/CbmKFParticleFinder.cxx b/reco/KF/CbmKFParticleFinder.cxx index 3fe4e58b7f..5430ff0b64 100644 --- a/reco/KF/CbmKFParticleFinder.cxx +++ b/reco/KF/CbmKFParticleFinder.cxx @@ -9,6 +9,7 @@ #include "CbmKFParticleFinder.h" #include "CbmEvent.h" +#include "CbmKF.h" #include "CbmKFParticleFinderPID.h" #include "CbmKFVertex.h" #include "CbmL1PFFitter.h" @@ -125,6 +126,11 @@ InitStatus CbmKFParticleFinder::Init() } fCbmPrimVertex = (CbmVertex*) ioman->GetObject("PrimaryVertex."); + + auto& target = CbmKF::Instance()->vTargets[0]; + const std::array<float, 3> targetXYZ {(float) target.x, (float) target.y, (float) target.z}; + fTopoReconstructor->SetTarget(targetXYZ); + return kSUCCESS; } diff --git a/reco/KF/KFQA/CbmKFTrackQa.cxx b/reco/KF/KFQA/CbmKFTrackQa.cxx index b60cab4209..29805b8633 100644 --- a/reco/KF/KFQA/CbmKFTrackQa.cxx +++ b/reco/KF/KFQA/CbmKFTrackQa.cxx @@ -231,7 +231,7 @@ CbmKFTrackQa::CbmKFTrackQa(const char* name, Int_t iVerbose, TString outFileName float yMax[NTofHisto2D] = {14., 14.}; Int_t yBins[NTofHisto2D] = {1600, 1600}; - TString profName[NTofProfiles] = {"MatchEff", "Mismatch", "No match"}; + TString profName[NTofProfiles] = {"MatchEff", "Mismatch", "NoMatch"}; TString subdirs[14] = {"AllTracks", "e", "mu", "pi", "K", "p", "Fragments", "Mismatch", "GhostTrack", "WrongTofPoint", "d", "t", "He3", "He4"}; -- GitLab