Mantid
Loading...
Searching...
No Matches
ISISJournalGetExperimentRuns.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2020 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
7#pragma once
8
11#include "MantidDataHandling/DllConfig.h"
12
13namespace Mantid {
14namespace API {
15class IJournal;
16}
17
18namespace DataHandling {
23class MANTID_DATAHANDLING_DLL ISISJournalGetExperimentRuns : public API::Algorithm {
24public:
26 virtual ~ISISJournalGetExperimentRuns() override = default;
27
28 const std::string name() const override { return "ISISJournalGetExperimentRuns"; }
29 const std::string summary() const override {
30 return "Obtains information of the runs associated with a specific "
31 "investigation.";
32 }
33 int version() const override { return 1; }
34 const std::vector<std::string> seeAlso() const override { return {"CatalogGetDataFiles"}; }
35 const std::string category() const override { return "DataHandling"; }
36
37protected:
39 virtual std::unique_ptr<API::IJournal> makeJournal(std::string const &instrument,
40 std::string const &cycle = std::string());
41
42private:
43 void init() override;
44 void exec() override;
45};
46} // namespace DataHandling
47} // namespace Mantid
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:85
ISISJournalGetExperimentRuns obtains a list of runs and related information for an investigation and ...
const std::string summary() const override
function returns a summary message that will be displayed in the default GUI, and in the help.
const std::vector< std::string > seeAlso() const override
Function to return all of the seeAlso (these are not validated) algorithms related to this algorithm....
int version() const override
function to return a version of the algorithm, must be overridden in all algorithms
const std::string category() const override
function to return a category of the algorithm.
virtual ~ISISJournalGetExperimentRuns() override=default
const std::string name() const override
function to return a name of the algorithm, must be overridden in all algorithms
Helper class which provides the Collimation Length for SANS instruments.