Skip to content

Commit 971c9cc

Browse files
Move LegacyNexusClasses into LegacyNexus
1 parent 70b1a86 commit 971c9cc

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

Framework/DataHandling/src/LoadNexus.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "MantidKernel/BoundedValidator.h"
2121
#include "MantidLegacyNexus/NeXusException.hpp"
2222
#include "MantidLegacyNexus/NeXusFile.hpp"
23-
#include "MantidMuon/LegacyNexusClasses.h"
23+
#include "MantidLegacyNexus/NexusClasses.h"
2424

2525
#include <cmath>
2626
#include <memory>

Framework/LegacyNexus/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ set(SRC_FILES
44
src/napi.cpp
55
src/napi4.cpp
66
src/napi5.cpp
7+
src/NexusClasses.cpp
78
src/NeXusException.cpp
89
src/NeXusFile.cpp
910
src/nxstack.cpp
@@ -17,6 +18,7 @@ set(INC_FILES
1718
inc/MantidLegacyNexus/napi5.h
1819
inc/MantidLegacyNexus/napiconfig.h
1920
inc/MantidLegacyNexus/napi_internal.h
21+
inc/MantidLegacyNexus/NexusClasses.h
2022
inc/MantidLegacyNexus/NeXusException.hpp
2123
inc/MantidLegacyNexus/NeXusFile.hpp
2224
inc/MantidLegacyNexus/nx_stptok.h

Framework/Muon/inc/MantidMuon/LegacyNexusClasses.h Framework/LegacyNexus/inc/MantidLegacyNexus/NexusClasses.h

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
// SPDX - License - Identifier: GPL - 3.0 +
77
#pragma once
88

9+
#include "MantidLegacyNexus/DllConfig.h"
910
#include "MantidLegacyNexus/NeXusFile_fwd.h"
1011
#include "MantidLegacyNexus/napi.h"
11-
#include "MantidMuon/DllConfig.h"
1212

1313
#include <boost/container/vector.hpp>
1414
#include <ios>
@@ -63,7 +63,7 @@ const int g_processed_blocksize = 8;
6363

6464
/** Nexus attributes. The type of each attribute is NX_CHAR
6565
*/
66-
class MANTID_MUON_DLL NXAttributes {
66+
class MANTID_LEGACYNEXUS_DLL NXAttributes {
6767
public:
6868
int n() const { return int(m_values.size()); } ///< number of attributes
6969
std::vector<std::string> names() const; ///< Returns the list of attribute names
@@ -83,7 +83,7 @@ class NXClass;
8383
/** The base abstract class for NeXus classes and data sets.
8484
* NX classes and data sets are defined at www.nexusformat.org
8585
*/
86-
class MANTID_MUON_DLL NXObject {
86+
class MANTID_LEGACYNEXUS_DLL NXObject {
8787
friend class NXDataSet; ///< a friend class declaration
8888
friend class NXClass; ///< a friend class declaration
8989
friend class NXRoot; ///< a friend class declaration
@@ -125,7 +125,7 @@ class MANTID_MUON_DLL NXObject {
125125
* There is no need to free the memory allocated by the NXDataSet as it is done
126126
* at the destruction.
127127
*/
128-
class MANTID_MUON_DLL NXDataSet : public NXObject {
128+
class MANTID_LEGACYNEXUS_DLL NXDataSet : public NXObject {
129129
public:
130130
// Constructor
131131
NXDataSet(const NXClass &parent, const std::string &name);
@@ -477,7 +477,7 @@ using NXUInt = NXDataSetTyped<unsigned int>;
477477
* (groups) can be created and loaded from
478478
* NeXus files.
479479
*/
480-
class MANTID_MUON_DLL NXClass : public NXObject {
480+
class MANTID_LEGACYNEXUS_DLL NXClass : public NXObject {
481481
friend class NXRoot;
482482

483483
public:
@@ -619,7 +619,7 @@ class MANTID_MUON_DLL NXClass : public NXObject {
619619

620620
/** Implements NXdata Nexus class.
621621
*/
622-
class MANTID_MUON_DLL NXData : public NXClass {
622+
class MANTID_LEGACYNEXUS_DLL NXData : public NXClass {
623623
public:
624624
/** Constructor.
625625
* @param parent :: The parent Nexus class. In terms of HDF it is the group
@@ -661,7 +661,7 @@ class MANTID_MUON_DLL NXData : public NXClass {
661661

662662
/** Implements NXdetector Nexus class.
663663
*/
664-
class MANTID_MUON_DLL NXDetector : public NXClass {
664+
class MANTID_LEGACYNEXUS_DLL NXDetector : public NXClass {
665665
public:
666666
/** Constructor.
667667
* @param parent :: The parent Nexus class. In terms of HDF it is the group
@@ -681,7 +681,7 @@ class MANTID_MUON_DLL NXDetector : public NXClass {
681681

682682
/** Implements NXinstrument Nexus class.
683683
*/
684-
class MANTID_MUON_DLL NXInstrument : public NXClass {
684+
class MANTID_LEGACYNEXUS_DLL NXInstrument : public NXClass {
685685
public:
686686
/** Constructor.
687687
* @param parent :: The parent Nexus class. In terms of HDF it is the group
@@ -700,7 +700,7 @@ class MANTID_MUON_DLL NXInstrument : public NXClass {
700700

701701
/** Implements NXentry Nexus class.
702702
*/
703-
class MANTID_MUON_DLL NXEntry : public NXClass {
703+
class MANTID_LEGACYNEXUS_DLL NXEntry : public NXClass {
704704
public:
705705
/** Constructor.
706706
* @param parent :: The parent Nexus class. In terms of HDF it is the group
@@ -724,7 +724,7 @@ class MANTID_MUON_DLL NXEntry : public NXClass {
724724

725725
/** Implements NXroot Nexus class.
726726
*/
727-
class MANTID_MUON_DLL NXRoot : public NXClass {
727+
class MANTID_LEGACYNEXUS_DLL NXRoot : public NXClass {
728728
public:
729729
// Constructor
730730
NXRoot(std::string fname);

Framework/Muon/src/LegacyNexusClasses.cpp Framework/LegacyNexus/src/NexusClasses.cpp

+5-6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
// NScD Oak Ridge National Laboratory, European Spallation Source,
55
// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
66
// SPDX - License - Identifier: GPL - 3.0 +
7-
#include "MantidMuon/LegacyNexusClasses.h"
8-
9-
#include "MantidKernel/Exception.h"
10-
#include "MantidKernel/PropertyWithValue.h"
7+
#include "MantidLegacyNexus/NexusClasses.h"
8+
#include "MantidLegacyNexus/NeXusException.hpp"
119

10+
#include <algorithm>
1211
#include <memory>
1312
#include <utility>
1413

@@ -306,7 +305,7 @@ NXRoot::NXRoot(std::string fname) : m_filename(std::move(fname)) {
306305
NXstatus stat = NXopen(m_filename.c_str(), NXACC_READ, &m_fileID);
307306
if (stat == NXstatus::NX_ERROR) {
308307
std::cout << "NXRoot: Error loading " << m_filename;
309-
throw Kernel::Exception::FileError("Unable to open File:", m_filename);
308+
throw Exception("Unable to open File: " + m_filename);
310309
}
311310
readAllInfo();
312311
}
@@ -321,7 +320,7 @@ NXRoot::NXRoot(std::string fname, const std::string &entry) : m_filename(std::mo
321320
// Open NeXus file
322321
NXstatus stat = NXopen(m_filename.c_str(), NXACC_CREATE5, &m_fileID);
323322
if (stat == NXstatus::NX_ERROR) {
324-
throw Kernel::Exception::FileError("Unable to open File:", m_filename);
323+
throw Exception("Unable to open File: " + m_filename);
325324
}
326325
}
327326

Framework/Muon/CMakeLists.txt

-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ set(SRC_FILES
2626
src/PlotAsymmetryByLogValue.cpp
2727
src/RemoveExpDecay.cpp
2828
src/RRFMuon.cpp
29-
src/LegacyNexusClasses.cpp
3029
src/MuonNexusReader.cpp
3130
)
3231

@@ -58,7 +57,6 @@ set(INC_FILES
5857
inc/MantidMuon/PlotAsymmetryByLogValue.h
5958
inc/MantidMuon/RemoveExpDecay.h
6059
inc/MantidMuon/RRFMuon.h
61-
inc/MantidMuon/LegacyNexusClasses.h
6260
inc/MantidMuon/MuonNexusReader.h
6361
)
6462

Framework/Muon/inc/MantidMuon/LoadMuonNexus2.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
#include "MantidDataObjects/Histogram1D.h"
1313
#include "MantidKernel/DateAndTimeHelpers.h"
1414
#include "MantidKernel/TimeSeriesProperty.h"
15+
#include "MantidLegacyNexus/NexusClasses.h"
1516
#include "MantidMuon/DllConfig.h"
16-
#include "MantidMuon/LegacyNexusClasses.h"
1717
#include "MantidMuon/LoadMuonNexus.h"
1818

1919
namespace Mantid {

Framework/Muon/src/LoadMuonNexus1.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include "MantidKernel/UnitLabelTypes.h"
3131
#include "MantidLegacyNexus/NeXusException.hpp"
3232
#include "MantidLegacyNexus/NeXusFile.hpp"
33-
#include "MantidMuon/LegacyNexusClasses.h"
33+
#include "MantidLegacyNexus/NexusClasses.h"
3434
#include "MantidMuon/MuonNexusReader.h"
3535

3636
#include <boost/iterator/counting_iterator.hpp>

Framework/Muon/src/LoadMuonNexus2.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@
1919
#include "MantidKernel/ArrayProperty.h"
2020
#include "MantidKernel/ConfigService.h"
2121
#include "MantidKernel/DateAndTimeHelpers.h"
22+
#include "MantidKernel/PropertyWithValue.h"
2223
#include "MantidKernel/TimeSeriesProperty.h"
2324
#include "MantidKernel/Unit.h"
2425
#include "MantidKernel/UnitFactory.h"
2526
#include "MantidKernel/UnitLabelTypes.h"
2627
#include "MantidLegacyNexus/NeXusException.hpp"
2728
#include "MantidLegacyNexus/NeXusFile.hpp"
28-
#include "MantidMuon/LegacyNexusClasses.h"
29+
#include "MantidLegacyNexus/NexusClasses.h"
2930

3031
#include <Poco/Path.h>
3132
#include <cmath>

Framework/Muon/src/LoadMuonNexus3.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "MantidAPI/Progress.h"
1212
#include "MantidAPI/RegisterFileLoader.h"
1313
#include "MantidKernel/Logger.h"
14-
#include "MantidMuon/LegacyNexusClasses.h"
14+
#include "MantidLegacyNexus/NexusClasses.h"
1515
#include <H5Cpp.h>
1616
#include <string>
1717

0 commit comments

Comments
 (0)