Skip to content

Commit

Permalink
debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Mar 7, 2024
1 parent 6bff88f commit 379c169
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/TRestGeant4QuenchingProcess.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down Expand Up @@ -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();
}
Expand Down

0 comments on commit 379c169

Please sign in to comment.