From c638a572f64164c5a8400c820753e0d6e08eb487 Mon Sep 17 00:00:00 2001 From: Alvaro Ezquerro Date: Tue, 25 Jun 2024 10:27:10 +0200 Subject: [PATCH] Fixing small mistake --- source/framework/analysis/src/TRestEventSelectionProcess.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/framework/analysis/src/TRestEventSelectionProcess.cxx b/source/framework/analysis/src/TRestEventSelectionProcess.cxx index 180e2c39c..01b3c7daa 100644 --- a/source/framework/analysis/src/TRestEventSelectionProcess.cxx +++ b/source/framework/analysis/src/TRestEventSelectionProcess.cxx @@ -123,7 +123,7 @@ void TRestEventSelectionProcess::InitProcess() { } } else if (TRestTools::GetFileNameExtension(fFileWithIDs) == "root") { TRestRun run(fFileWithIDs); - run.GetEventIdsWithConditions(fConditions); + fList = run.GetEventIdsWithConditions(fConditions); } else { RESTDebug << "TRestEventSelectionProcess: using the processing file itself." << RESTendl; }