Mantid
Loading...
Searching...
No Matches
SaveDaveGrp.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2011 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 "MantidDataHandling/DllConfig.h"
11
12namespace Mantid {
13namespace DataHandling {
14
29class MANTID_DATAHANDLING_DLL SaveDaveGrp final : public API::Algorithm {
30public:
32 const std::string name() const override { return "SaveDaveGrp"; };
34 const std::string summary() const override {
35 return "Saves a 2D workspace to DAVE grouped data format file.See "
36 "http://www.ncnr.nist.gov/dave/documentation/ascii_help.pdf";
37 }
38
40 int version() const override { return 1; };
41 const std::vector<std::string> seeAlso() const override { return {"LoadDaveGrp"}; }
43 const std::string category() const override { return "DataHandling\\Text;Inelastic\\DataHandling"; }
45 const std::string alias() const override { return "SaveDASC"; }
46
47private:
49 void init() override;
51 void exec() override;
52};
53
54} // namespace DataHandling
55} // namespace Mantid
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:85
int version() const override
Algorithm's version for identification.
Definition: SaveDaveGrp.h:40
const std::string category() const override
Algorithm's category for identification.
Definition: SaveDaveGrp.h:43
const std::string name() const override
Algorithm's name for identification.
Definition: SaveDaveGrp.h:32
const std::string summary() const override
Summary of algorithms purpose.
Definition: SaveDaveGrp.h:34
const std::string alias() const override
Algorithm's aliases.
Definition: SaveDaveGrp.h:45
const std::vector< std::string > seeAlso() const override
Function to return all of the seeAlso (these are not validated) algorithms related to this algorithm....
Definition: SaveDaveGrp.h:41
Helper class which provides the Collimation Length for SANS instruments.