Skip to content
Snippets Groups Projects
LoadCalFile.h 2.79 KiB
Newer Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2018 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 +
#include "MantidAPI/Algorithm.h"
#include "MantidAPI/IAlgorithm.h"
#include "MantidAPI/MatrixWorkspace_fwd.h"
#include "MantidDataObjects/GroupingWorkspace.h"
#include "MantidDataObjects/MaskWorkspace.h"
#include "MantidDataObjects/OffsetsWorkspace.h"
namespace Mantid {
namespace DataHandling {
/** Algorithm to load a 5-column ascii .cal file into up to 3 workspaces:
 * a GroupingWorkspace, OffsetsWorkspace and/or MaskWorkspace.
 *
 * @author Janik Zikovsky
 * @date 2011-05-09
 */
class DLLExport LoadCalFile : public API::Algorithm {
public:
  /// Algorithm's name for identification
  const std::string name() const override { return "LoadCalFile"; };
  /// Summary of algorithms purpose
  const std::string summary() const override {
    return "Loads a 5-column ASCII .cal file into up to 3 workspaces: a "
           "GroupingWorkspace, OffsetsWorkspace and/or MaskWorkspace.";
  }
  /// Algorithm's version for identification
  int version() const override { return 1; };
  const std::vector<std::string> seeAlso() const override {
    return {"LoadDiffCal",        "ReadGroupsFromFile",
            "CreateDummyCalFile", "CreateCalFileByNames",
            "AlignDetectors",     "DiffractionFocussing",
            "SaveCalFile",        "MergeCalFiles"};
  /// Algorithm's category for identification
  const std::string category() const override {
    return R"(DataHandling\Text;Diffraction\DataHandling\CalFiles)";
  static void getInstrument3WaysInit(Mantid::API::Algorithm *alg);
  static Geometry::Instrument_const_sptr
  getInstrument3Ways(API::Algorithm *alg);
  static bool instrumentIsSpecified(API::Algorithm *alg);
  static void
  readCalFile(const std::string &calFileName,
              const Mantid::DataObjects::GroupingWorkspace_sptr &groupWS,
              const Mantid::DataObjects::OffsetsWorkspace_sptr &offsetsWS,
              const Mantid::DataObjects::MaskWorkspace_sptr &maskWS);
protected:
  Parallel::ExecutionMode getParallelExecutionMode(
      const std::map<std::string, Parallel::StorageMode> &storageModes)
      const override;

private:
  /// Initialise the properties
  void init() override;
  /// Run the algorithm
  void exec() override;
  /// Checks if a detector ID is for a monitor on a given instrument
  static bool idIsMonitor(const Mantid::Geometry::Instrument_const_sptr &inst,
} // namespace Mantid