From c31a9884f6f644fe809a1460080b0df3de5ff952 Mon Sep 17 00:00:00 2001 From: Andre Sailer Date: Thu, 13 Jul 2023 17:48:53 +0200 Subject: [PATCH] Geant4UIManager: correct the docstrings for the Command Properties --- DDG4/include/DDG4/Geant4UIManager.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/DDG4/include/DDG4/Geant4UIManager.h b/DDG4/include/DDG4/Geant4UIManager.h index b696a7cde..2bcfa4e2f 100644 --- a/DDG4/include/DDG4/Geant4UIManager.h +++ b/DDG4/include/DDG4/Geant4UIManager.h @@ -58,15 +58,15 @@ namespace dd4hep { std::string m_uiSetup; /// Property: Name of the visualization macro file std::string m_visSetup; - /// Property: Array of macro files to be chained and executed when the Geant4Kernel gets configured + /// Property: List of commands to be executed when the Geant4Kernel gets configured std::vector m_configureCommands; - /// Property: Array of macro files to be chained and executed when the Geant4Kernel gets initialized + /// Property: List of commands to be executed when the Geant4Kernel gets initialized std::vector m_initializeCommands; - /// Property: Array of macro files to be chained and executed when the Geant4Kernel gets terminated + /// Property: List of commands to be executed when the Geant4Kernel gets terminated std::vector m_terminateCommands; - /// Property: Array of macro files to be chained and executed BEFORE running + /// Property: List of commands to be executed BEFORE running std::vector m_preRunCommands; - /// Property: Array of macro files to be chained and executed AFTER running + /// Property: List of commands to be executed AFTER running std::vector m_postRunCommands; /// Property: Array of commands to be chained std::vector m_macros;