Mantid
Loading...
Searching...
No Matches
CreateLogPropertyTable.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2010 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
9//----------------------------------------------------------------------
10// Includes
11//----------------------------------------------------------------------
12
13#include "MantidAPI/Algorithm.h"
14#include "MantidAlgorithms/DllConfig.h"
15
16#include <string>
17
18namespace Mantid {
19namespace Algorithms {
20
21class MANTID_ALGORITHMS_DLL CreateLogPropertyTable final : public API::Algorithm {
22public:
24 const std::string name() const override { return "CreateLogPropertyTable"; };
26 int version() const override { return 1; };
27 const std::vector<std::string> seeAlso() const override { return {"CopyLogs"}; }
29 const std::string category() const override { return "Utility\\Workspaces"; }
30
32 const std::string summary() const override {
33 return " Takes a list of workspaces and a list of log property names. "
34 "For each workspace, the Run info is inspected and "
35 "all log property values are used to populate a resulting output "
36 "TableWorkspace.";
37 }
38
39private:
41 void init() override;
43 void exec() override;
44};
45
46} // namespace Algorithms
47} // namespace Mantid
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:85
const std::string category() const override
Algorithm's category for identification.
int version() const override
Algorithm's version for identification.
const std::string name() const override
Algorithm's name for identification.
const std::vector< std::string > seeAlso() const override
Function to return all of the seeAlso algorithms related to this algorithm.
const std::string summary() const override
Algorithm's summary.
Helper class which provides the Collimation Length for SANS instruments.