Newer
Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2012 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 +
namespace Mantid {
namespace DataHandling {
/** GenerateGroupingPowder : Generate grouping file and par file, for powder
scattering.
@date 2012-07-16
*/
class DLLExport GenerateGroupingPowder : public API::Algorithm {
public:
const std::string name() const override;
const std::string summary() const override {
return "Generate grouping by angles.";
}
int version() const override;
const std::string category() const override;
const std::vector<std::string> seeAlso() const override {
return {"LoadDetectorsGroupingFile", "GroupDetectors"};
}
void init() override;
void exec() override;
} // namespace DataHandling
} // namespace Mantid