Mantid
Loading...
Searching...
No Matches
ModifyDetectorDotDatFile.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 "MantidDataHandling/DllConfig.h"
11
12namespace Mantid {
13namespace DataHandling {
14
21class MANTID_DATAHANDLING_DLL ModifyDetectorDotDatFile final : public API::Algorithm {
22public:
24 const std::string name() const override { return "ModifyDetectorDotDatFile"; };
26 const std::string summary() const override {
27 return "Modifies an ISIS detector dot data file, so that the detector "
28 "positions are as in the given workspace";
29 }
30
32 int version() const override { return 1; };
33 const std::vector<std::string> seeAlso() const override { return {"ResizeRectangularDetector"}; }
35 const std::string category() const override { return "DataHandling\\Instrument"; }
36
37private:
39 void init() override;
41 void exec() override;
42};
43
44} // namespace DataHandling
45} // namespace Mantid
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:85
Modifies an ISIS detector dot data file, so that the detector positions are as in the given workspace...
const std::string summary() const override
Summary of algorithms purpose.
const std::string category() const override
Algorithm's category 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....
int version() const override
Algorithm's version for identification.
const std::string name() const override
Algorithm's name for identification.
Helper class which provides the Collimation Length for SANS instruments.