From 483ec70f23f2e20f443678e40461871a005e8f08 Mon Sep 17 00:00:00 2001 From: marc1uk <15327579+marc1uk@users.noreply.github.com> Date: Mon, 6 Jul 2026 11:40:26 +0100 Subject: [PATCH 1/2] Update MyTool.h fix typos --- UserTools/template/MyTool.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/UserTools/template/MyTool.h b/UserTools/template/MyTool.h index 6346121..6631e16 100644 --- a/UserTools/template/MyTool.h +++ b/UserTools/template/MyTool.h @@ -8,9 +8,9 @@ #include "DataModel.h" /** - * \class MyTool - * - * This is a balnk template for a Tool used by the script to generate a new custom tool. Please fill out the descripton and author information. +* \class MyTool +* +* This is a blank template for a Tool used by the newTool.sh script to generate a new user tool. Please fill out the description and author information. * * $Author: $ * $Date: $ @@ -22,9 +22,9 @@ class MyTool: public Tool { public: MyTool(); ///< Simple constructor - bool Initialise(std::string configfile,DataModel &data); ///< Initialise Function for setting up Tool resorces. @param configfile The path and name of the dynamic configuration file to read in. @param data A reference to the transient data class used to pass information between Tools. - bool Execute(); ///< Executre function used to perform Tool perpose. - bool Finalise(); ///< Finalise funciton used to clean up resorces. + bool Initialise(std::string configfile,DataModel &data); ///< Initialise function for setting up Tool resources. @param configfile The path and name of the dynamic configuration file to read in. @param data A reference to the transient data class used to pass information between Tools. + bool Execute(); ///< Execute function used to perform Tool purpose. + bool Finalise(); ///< Finalise function used to clean up resources. private: From 4d0f31571de9dc49810f5b29123243862fb0bd2f Mon Sep 17 00:00:00 2001 From: marc1uk <15327579+marc1uk@users.noreply.github.com> Date: Mon, 6 Jul 2026 11:42:17 +0100 Subject: [PATCH 2/2] Update MyTool.h --- UserTools/template/MyTool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UserTools/template/MyTool.h b/UserTools/template/MyTool.h index 6631e16..2ae172e 100644 --- a/UserTools/template/MyTool.h +++ b/UserTools/template/MyTool.h @@ -23,7 +23,7 @@ class MyTool: public Tool { MyTool(); ///< Simple constructor bool Initialise(std::string configfile,DataModel &data); ///< Initialise function for setting up Tool resources. @param configfile The path and name of the dynamic configuration file to read in. @param data A reference to the transient data class used to pass information between Tools. - bool Execute(); ///< Execute function used to perform Tool purpose. + bool Execute(); ///< Execute function used to perform Tool purpose. bool Finalise(); ///< Finalise function used to clean up resources.