-
Nick Draper authored
Also updated class_maker.py
Nick Draper authoredAlso updated class_maker.py
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CreatePolarizationEfficiencies.h 993 B
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2014 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source,
// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
// SPDX - License - Identifier: GPL - 3.0 +
#pragma once
#include "MantidDataHandling/CreatePolarizationEfficienciesBase.h"
#include "MantidKernel/System.h"
namespace Mantid {
namespace DataHandling {
/** CreatePolarizationEfficiencies
*/
class DLLExport CreatePolarizationEfficiencies
: public CreatePolarizationEfficienciesBase {
public:
const std::string name() const override;
int version() const override;
const std::string summary() const override;
const std::vector<std::string> seeAlso() const override;
private:
void init() override;
API::MatrixWorkspace_sptr
createEfficiencies(std::vector<std::string> const &labels) override;
};
} // namespace DataHandling
} // namespace Mantid