diff --git a/UserTools/template/MyTool.h b/UserTools/template/MyTool.h index 6346121..2ae172e 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: