From d1f9028d930a393587a30c6b3713dfd08a970d38 Mon Sep 17 00:00:00 2001 From: Nick Draper <nick.draper@stfc.ac.uk> Date: Tue, 3 Nov 2015 16:29:48 +0000 Subject: [PATCH] Small change to muon category re #8840 --- Framework/DataHandling/inc/MantidDataHandling/LoadMuonLog.h | 2 +- Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus.h | 2 +- Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus1.h | 2 +- Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus2.h | 2 +- .../PythonInterface/plugins/algorithms/LoadLogPropertyTable.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Framework/DataHandling/inc/MantidDataHandling/LoadMuonLog.h b/Framework/DataHandling/inc/MantidDataHandling/LoadMuonLog.h index 02865407327..df8de957cac 100644 --- a/Framework/DataHandling/inc/MantidDataHandling/LoadMuonLog.h +++ b/Framework/DataHandling/inc/MantidDataHandling/LoadMuonLog.h @@ -71,7 +71,7 @@ public: virtual int version() const { return 1; }; /// Algorithm's category for identification overriding a virtual method virtual const std::string category() const { - return "DataHandling\\Logs;Muon"; + return "DataHandling\\Logs;Muon\\DataHandling"; } private: diff --git a/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus.h b/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus.h index c5da559b144..33369a5e26c 100644 --- a/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus.h +++ b/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus.h @@ -83,7 +83,7 @@ public: virtual int version() const { return 1; } /// Algorithm's category for identification overriding a virtual method virtual const std::string category() const { - return "DataHandling\\Nexus;Muon"; + return "DataHandling\\Nexus;Muon\\DataHandling"; } /// Returns a confidence value that this algorithm can load a file diff --git a/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus1.h b/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus1.h index 42dee00015c..88659acb2df 100644 --- a/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus1.h +++ b/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus1.h @@ -89,7 +89,7 @@ public: virtual int version() const { return 1; } /// Algorithm's category for identification overriding a virtual method virtual const std::string category() const { - return "DataHandling\\Nexus;Muon"; + return "DataHandling\\Nexus;Muon\\DataHandling"; } /// Returns a confidence value that this algorithm can load a file diff --git a/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus2.h b/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus2.h index 9ae92b00deb..227034f4f53 100644 --- a/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus2.h +++ b/Framework/DataHandling/inc/MantidDataHandling/LoadMuonNexus2.h @@ -79,7 +79,7 @@ public: virtual int version() const { return 2; } /// Algorithm's category for identification overriding a virtual method virtual const std::string category() const { - return "DataHandling\\Nexus;Muon"; + return "DataHandling\\Nexus;Muon\\DataHandling"; } /// Returns a confidence value that this algorithm can load a file diff --git a/Framework/PythonInterface/plugins/algorithms/LoadLogPropertyTable.py b/Framework/PythonInterface/plugins/algorithms/LoadLogPropertyTable.py index 31e1ea1851c..6fc134f6657 100644 --- a/Framework/PythonInterface/plugins/algorithms/LoadLogPropertyTable.py +++ b/Framework/PythonInterface/plugins/algorithms/LoadLogPropertyTable.py @@ -33,7 +33,7 @@ class LoadLogPropertyTable(PythonAlgorithm): self.declareProperty(WorkspaceProperty("OutputWorkspace","",Direction.Output),"Table of results") def category(self): - return "Utility;Muon" + return "DataHandling\\Logs;Muon\\DataHandling" def getGeneralLogValue(self,ws,name,begin): # get log value -- GitLab