Mantid
Loading...
Searching...
No Matches
MDNormSCD.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2014 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
11namespace Mantid::MDAlgorithms {
12
15class MANTID_MDALGORITHMS_DLL MDNormSCD : public MDNormBase {
16public:
18
19 const std::string name() const override;
20 int version() const override;
21 const std::vector<std::string> seeAlso() const override {
22 return {"MDNormSCDPreprocessIncoherent", "MDNormDirectSC"};
23 }
24 const std::string category() const override;
25 const std::string summary() const override;
26
27private:
28 void init() override;
29 void exec() override;
30
31 void cacheInputs();
32};
33
34} // namespace Mantid::MDAlgorithms
std::string name
Definition Run.cpp:60
Base class for the three MDNorm, MDNormDirectSC and MDNormSCD algorithms with the common normalizatio...
Definition MDNormBase.h:32
MDNormSCD : Generate MD normalization for single crystal diffraction.
Definition MDNormSCD.h:15
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 MDNormSCD.h:21