Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions UserTools/template/MyTool.h
Original file line number Diff line number Diff line change
Expand Up @@ -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: $
Expand All @@ -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:
Expand Down
Loading