diff --git a/Code/Mantid/Framework/DataHandling/inc/MantidDataHandling/LoadILL.h b/Code/Mantid/Framework/DataHandling/inc/MantidDataHandling/LoadILL.h index 56a2857d0246..29af5b1aaadd 100644 --- a/Code/Mantid/Framework/DataHandling/inc/MantidDataHandling/LoadILL.h +++ b/Code/Mantid/Framework/DataHandling/inc/MantidDataHandling/LoadILL.h @@ -68,7 +68,7 @@ class DLLExport LoadILL : public API::IDataFileChecker /// Load the counts void loadData(NeXus::NXData& dataGroup, API::MatrixWorkspace_sptr& workspace); /// Load the instrument form the IDF - void LoadILL::runLoadInstrument(API::MatrixWorkspace_sptr workspace); + void runLoadInstrument(API::MatrixWorkspace_sptr workspace); std::string m_filename; ///< The file to load std::string m_instrumentName; ///< Name of the instrumen diff --git a/Code/Mantid/Framework/DataHandling/src/LoadILL.cpp b/Code/Mantid/Framework/DataHandling/src/LoadILL.cpp index fc9e3f13f5e6..f17a0f62e503 100644 --- a/Code/Mantid/Framework/DataHandling/src/LoadILL.cpp +++ b/Code/Mantid/Framework/DataHandling/src/LoadILL.cpp @@ -89,8 +89,6 @@ void LoadILL::exec() void LoadILL::loadData(NeXus::NXData& dataGroup, API::MatrixWorkspace_sptr& workspace) { NXInt data = dataGroup.openIntData(); - int rank = data.rank(); - //std::cerr << "Data: " << rank << ' ' << data.dim0() << ' ' << data.dim1() << ' ' << data.dim2() << std::endl; size_t dim0 = static_cast( data.dim0() ); size_t dim1 = static_cast( data.dim1() );