Skip to content
Snippets Groups Projects
Commit 4d5683e5 authored by Janik Zikovsky's avatar Janik Zikovsky
Browse files

Refs #3316: MacOS try to fix. NEXUS (again)!!!

parent 57d896c5
No related branches found
No related tags found
No related merge requests found
......@@ -12,8 +12,6 @@
#include "MantidNexus/NeXusFile.hpp"
#include <iosfwd>
using NeXus::File;
namespace Mantid
{
namespace MDEvents
......
......@@ -13,7 +13,6 @@
using namespace Mantid;
using namespace Mantid::MDEvents;
using namespace NeXus;
using Mantid::Kernel::ConfigService;
/** Tester class that implements the minimum IMDBox to
......@@ -197,7 +196,7 @@ public:
b.setDepth(4);
b.calcVolume();
NeXus::File * file = new NeXus::File(filename, NXACC_CREATE5);
::NeXus::File * file = new NeXus::File(filename, NXACC_CREATE5);
std::string groupName("IMDBoxTester");
std::string className("NXIMDBoxTester");
......@@ -208,7 +207,7 @@ public:
// Now we load it back
IMDBoxTester<MDEvent<2>,2> c;
NeXus::File * fileIn = new NeXus::File(filename, NXACC_READ);
::NeXus::File * fileIn = new NeXus::File(filename, NXACC_READ);
fileIn->openGroup(groupName, className);
c.loadNexus(fileIn);
fileIn->closeGroup();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment