diff --git a/core/base/CbmMatchRecoToMC.cxx b/core/base/CbmMatchRecoToMC.cxx
index 528651ebe9df7ff36c8630e0516d4404d24d6610..3a5b0c8177f3e33f511c03c1ce3f85e66193b6d3 100644
--- a/core/base/CbmMatchRecoToMC.cxx
+++ b/core/base/CbmMatchRecoToMC.cxx
@@ -773,8 +773,11 @@ void CbmMatchRecoToMC::MatchStsTracks(const TClonesArray* mvdHitMatches, const T
       for (Int_t iLink = 0; iLink < nofLinks; iLink++) {
         const CbmLink& link      = hitMatch->GetLink(iLink);
         const FairMCPoint* point = static_cast<const FairMCPoint*>(mvdPoints->Get(link));
-        assert(point);
-        trackMatch->AddLink(CbmLink(1., point->GetTrackID(), link.GetEntry(), link.GetFile()));
+        if (point) {
+          // NOTE: 24.01.2024 SZh: the assertion was replaced with nullptr check, because there are links,
+          //                       which are not assigned to any MC point. Can it be a bug?
+          trackMatch->AddLink(CbmLink(1., point->GetTrackID(), link.GetEntry(), link.GetFile()));
+        }
       }
     }
 
diff --git a/macro/qa/CMakeLists.txt b/macro/qa/CMakeLists.txt
index fa0a9616df11f9a59ef1ab3381cc5b368c9926cf..e8eaf2aa2270adeed00d1b4a14c7a3cb197d08ce 100644
--- a/macro/qa/CMakeLists.txt
+++ b/macro/qa/CMakeLists.txt
@@ -80,14 +80,14 @@ foreach(setup IN LISTS cbm_setup)
   # --- Test run_qa
   # --- Run QA tasks with Event-by-event reconstruction from time-based simulation
   # --- Real raw event builder
-  set(testname qa_${sname}_compare)
+  set(testname qa_${sname}_ts_eb_ideal_compare)
   add_test(${testname} ${MACRODIR}/qa_compare.sh \"configs/objects.yaml\" \"${sname}\" \"../run/data\" \"../run/data/\" \"data/QACheckerOutput.${sname}.root\" )
   set_tests_properties(${testname} PROPERTIES
   	TIMEOUT ${timeOutTime}
 	FAIL_REGULAR_EXPRESSION "segmentation violation"
   PASS_REGULAR_EXPRESSION "Macro finished successfully"
-	FIXTURES_REQUIRED "fixt_qa_${setup}"
-	FIXTURES_SETUP fixt_qa_compare_${setup}
+	FIXTURES_REQUIRED "fixt_qa_ts_eb_ideal_${setup}"
+	FIXTURES_SETUP fixt_qa_ts_eb_ideal_compare_${setup}
   )
 
 endforeach(setup IN LISTS cbm_setup)
diff --git a/macro/qa/configs/objects.yaml b/macro/qa/configs/objects.yaml
index fe4d1e6aa700dcea692a74f56a5449503e5ad6fb..9db13be1ca6998c5057fd0c3cc33f1fb039c35f5 100644
--- a/macro/qa/configs/objects.yaml
+++ b/macro/qa/configs/objects.yaml
@@ -7,7 +7,7 @@
 
 checker:
   files:
-    - name: "%v/%d_qa.qa.root"
+    - name: "%v/%d_qa_ts_eb_ideal.qa.root"
       label: qa
       objects:
         - CbmCaInputQaSts/efficiencies/casts_reco_eff_vs_r_st0
diff --git a/macro/run/CMakeLists.txt b/macro/run/CMakeLists.txt
index c832cea41fdcc941582696e58b8bbafab30fc7b4..5c4adc098581712df3a7afbee6350c91eaa84682 100644
--- a/macro/run/CMakeLists.txt
+++ b/macro/run/CMakeLists.txt
@@ -309,7 +309,7 @@ foreach(setup IN LISTS cbm_setup)
     FAIL_REGULAR_EXPRESSION "segmentation violation"
     PASS_REGULAR_EXPRESSION "QA checks passed;Macro finished successfully"
     FIXTURES_REQUIRED "fixt_tra_coll_${setup};fixt_digi_ts_${setup};fixt_reco_ts_eb_ideal_${setup}"
-    FIXTURES_SETUP fixt_qa_${setup}
+    FIXTURES_SETUP fixt_qa_ts_eb_ideal_${setup}
     RESOURCE_LOCK collParDb_${setup}
   )
 
@@ -327,7 +327,7 @@ foreach(setup IN LISTS cbm_setup)
     FAIL_REGULAR_EXPRESSION "segmentation violation"
     PASS_REGULAR_EXPRESSION "QA checks passed;Macro finished successfully"
     FIXTURES_REQUIRED "fixt_tra_coll_${setup};fixt_digi_ts_${setup};fixt_reco_ts_eb_real_${setup}"
-    FIXTURES_SETUP fixt_qa_${setup}
+    FIXTURES_SETUP fixt_qa_ts_eb_real_${setup}
     RESOURCE_LOCK collParDb_${setup}
   )
 
diff --git a/macro/run/run_qa.C b/macro/run/run_qa.C
index a34d1526904911c82ac164b565f72243aac832cd..47bfa43c0d62a14a0bbe38780bf0435917f29577 100644
--- a/macro/run/run_qa.C
+++ b/macro/run/run_qa.C
@@ -307,8 +307,8 @@ void run_qa(TString dataTraColl,
   pCaOutputQa->SetProcessFullTs(!bEventBasedReco);
   pCaOutputQa->SetStsTrackingMode();
   pCaOutputQa->ReadParameters(caParFile.Data());
-  if (configName.Length() != 0) {
-    pCaOutputQa->SetConfigName(configName);
+  if (config.Length() != 0) {
+    pCaOutputQa->SetConfigName(config);
   }
   // TODO: Provide detector selection interface from the L1Parameters
   pCaOutputQa->SetUseMvd(!(sEvBuildRaw.EqualTo("Real", TString::ECaseCompare::kIgnoreCase)) ? bUseMvd : false);