From 379c1692568dc3d3d635128d8bb33c36038bd4b7 Mon Sep 17 00:00:00 2001 From: Luis Antonio Obis Aparicio Date: Thu, 7 Mar 2024 19:40:02 +0100 Subject: [PATCH] debug statements --- src/TRestGeant4QuenchingProcess.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/TRestGeant4QuenchingProcess.cxx b/src/TRestGeant4QuenchingProcess.cxx index ece3d8c..e2f1d56 100644 --- a/src/TRestGeant4QuenchingProcess.cxx +++ b/src/TRestGeant4QuenchingProcess.cxx @@ -166,9 +166,9 @@ void TRestGeant4QuenchingProcess::InitProcess() { } } - cout << "TRestGeant4QuenchingProcess initialized with volumes" << endl; + RESTDebug << "TRestGeant4QuenchingProcess initialized with volumes" << RESTendl; for (const auto& volume : fVolumes) { - cout << " " << volume << endl; + RESTDebug << " " << volume << RESTendl; } } @@ -244,9 +244,8 @@ void TRestGeant4QuenchingProcess::EndProcess() {} void TRestGeant4QuenchingProcess::PrintMetadata() { BeginPrintProcess(); - cout << "Printing TRestGeant4QuenchingProcess user configuration" << endl; for (auto const& volume : fVolumes) { - cout << "Volume: " << volume << endl; + RESTMetadata << "Volume: " << volume << RESTendl; } EndPrintProcess(); }