Mantid
Loading...
Searching...
No Matches
ShowPossibleCells.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2012 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
10#include "MantidCrystal/DllConfig.h"
11
12namespace Mantid {
13namespace Crystal {
22class MANTID_CRYSTAL_DLL ShowPossibleCells final : public API::Algorithm {
23public:
25 const std::string name() const override { return "ShowPossibleCells"; };
26
28 int version() const override { return 1; };
29 const std::vector<std::string> seeAlso() const override {
30 return {"FindUBUsingFFT", "FindUBUsingIndexedPeaks", "FindUBUsingLatticeParameters"};
31 }
32
34 const std::string category() const override { return "Crystal\\Cell"; }
35
37 const std::string summary() const override {
38 return "Show conventional cells corresponding to the UB stored with the "
39 "sample for this peaks works space.";
40 }
41
42private:
44 void init() override;
45
47 void exec() override;
48};
49
50} // namespace Crystal
51} // namespace Mantid
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:85
ShowPossibleCells : Algorithm to display a list of possible conventional cells corresponding to the U...
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 (these are not validated) algorithms related to this algorithm....
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 for identification.
Helper class which provides the Collimation Length for SANS instruments.