Skip to content
Snippets Groups Projects
NexusFileLoader.h 1.05 KiB
Newer Older
Hahn, Steven's avatar
Hahn, Steven committed
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2013 ISIS Rutherford Appleton Laboratory UKRI,
//     NScD Oak Ridge National Laboratory, European Spallation Source
//     & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
#pragma once

#include "MantidAPI/IFileLoader.h"
#include "MantidKernel/System.h"
#include "MantidNexus/NexusHDF5Descriptor.h"
Hahn, Steven's avatar
Hahn, Steven committed

namespace Mantid {
namespace API {

class DLLExport NexusFileLoader
    : public IFileLoader<Mantid::Nexus::NexusHDF5Descriptor> {
Hahn, Steven's avatar
Hahn, Steven committed
public:
  void exec() override;
  void createChildAlgorithm(const std::string &name,
                            const double startProgress = -1.,
                            const double endProgress = -1.,
                            const bool enableLogging = true,
                            const int &version = -1) override;
  void
  setFileInfo(std::shared_ptr<Mantid::Nexus::NexusHDF5Descriptor> fileInfo);

Hahn, Steven's avatar
Hahn, Steven committed
private:
  std::shared_ptr<Mantid::Nexus::NexusHDF5Descriptor> m_fileInfo;
Hahn, Steven's avatar
Hahn, Steven committed
};
} // namespace API
} // namespace Mantid