forked from AmbaPant/mantid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCatalogListInstruments.h
47 lines (43 loc) · 1.73 KB
/
CatalogListInstruments.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2010 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source,
// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
// SPDX - License - Identifier: GPL - 3.0 +
#pragma once
#include "MantidAPI/Algorithm.h"
#include "MantidAPI/ITableWorkspace_fwd.h"
#include "MantidICat/DllConfig.h"
namespace Mantid {
namespace ICat {
/**
This algorithm obtains a list of instruments types from the catalog.
@author Sofia Antony, STFC Rutherford Appleton Laboratory
@date 09/07/2010
*/
class MANTID_ICAT_DLL CatalogListInstruments : public API::Algorithm {
public:
/// constructor
CatalogListInstruments() : API::Algorithm() {}
/// destructor
~CatalogListInstruments() override {}
/// Algorithm's name for identification overriding a virtual method
const std::string name() const override { return "CatalogListInstruments"; }
/// Summary of algorithms purpose.
const std::string summary() const override {
return "Lists the name of instruments from all catalogs or a specific "
"catalog based on session information.";
}
/// Algorithm's version for identification overriding a virtual method
int version() const override { return 1; }
const std::vector<std::string> seeAlso() const override { return {"CatalogListInvestigationTypes"}; }
/// Algorithm's category for identification overriding a virtual method
const std::string category() const override { return "DataHandling\\Catalog"; }
private:
/// Overwrites Algorithm init method.
void init() override;
/// Overwrites Algorithm exec method
void exec() override;
};
} // namespace ICat
} // namespace Mantid