Newer
Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2007 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 <string>
#include <vector>
namespace Mantid {
namespace DataHandling {
/**
Common methods for LoadInstrument.cpp and LoadEmptyInstrument.cpp
@author Neil Vaytet, ESS
@date 01/11/2018
*/
namespace LoadGeometry {
/// Determine if the Geometry file type is IDF
bool isIDF(const std::string &filename);
/// Determine if the Geometry file type is Nexus
bool isNexus(const std::string &filename);
/// List allowed file extensions for geometry
const std::vector<std::string> validExtensions();
} // namespace LoadGeometry
} // namespace DataHandling
} // namespace Mantid