Mantid
Loading...
Searching...
No Matches
LoadSampleDetailsFromRaw.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2007 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#include "MantidAPI/Algorithm.h"
13#include "MantidDataHandling/DllConfig.h"
14
15namespace Mantid {
16namespace DataHandling {
30class MANTID_DATAHANDLING_DLL LoadSampleDetailsFromRaw : public Mantid::API::Algorithm {
31public:
33 const std::string name() const override { return "LoadSampleDetailsFromRaw"; }
35 const std::string summary() const override {
36 return "Loads the simple sample geometry that is defined within an ISIS "
37 "raw file.";
38 }
39
41 int version() const override { return (1); }
42 const std::vector<std::string> seeAlso() const override { return {"LoadRaw"}; }
44 const std::string category() const override { return "DataHandling\\Raw;Sample"; }
45
46private:
48 void init() override;
50 void exec() override;
51};
52} // namespace DataHandling
53} // namespace Mantid
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:85
An algorithm to extract the sample details from the SPB structure within a RAW file.
const std::vector< std::string > seeAlso() const override
Function to return all of the seeAlso (these are not validated) algorithms related to this algorithm....
const std::string name() const override
Algorithm's name.
const std::string summary() const override
Summary of algorithms purpose.
const std::string category() const override
Algorithm's category for identification.
int version() const override
Algorithm's version.
Helper class which provides the Collimation Length for SANS instruments.