Mantid
Loading...
Searching...
No Matches
MDNormDirectSC.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 MDNormDirectSC : 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 { return {"MDNormSCD", "MDNormSCDPreprocessIncoherent"}; }
22 const std::string category() const override;
23 const std::string summary() const override;
24
25private:
26 void init() override;
27 void exec() override;
28
29 void cacheInputs();
30};
31
32} // 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
MDNormDirectSC : Generate MD normalization for single crystal direct geometry inelastic.
const std::vector< std::string > seeAlso() const override
Function to return all of the seeAlso (these are not validated) algorithms related to this algorithm....