Newer
Older
// 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
// SPDX - License - Identifier: GPL - 3.0 +
#ifndef MANTID_DATAHANDLING_CREATECHUNKINGFROMINSTRUMENT_H_
#define MANTID_DATAHANDLING_CREATECHUNKINGFROMINSTRUMENT_H_
#include "MantidAPI/Algorithm.h"
#include "MantidGeometry/Instrument.h"
#include "MantidKernel/System.h"
namespace Mantid {
namespace DataHandling {
/** CreateChunkingFromInstrument : TODO: DESCRIPTION
class DLLExport CreateChunkingFromInstrument : public API::Algorithm {
public:
const std::string name() const override;
int version() const override;
const std::string category() const override;
const std::string summary() const override;
std::map<std::string, std::string> validateInputs() override;
void init() override;
void exec() override;
Geometry::Instrument_const_sptr getInstrument();
};
} // namespace DataHandling
} // namespace Mantid
#endif /* MANTID_DATAHANDLING_CREATECHUNKINGFROMINSTRUMENT_H_ */