Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
4919dd7d
Commit
4919dd7d
authored
6 years ago
by
Neil Vaytet
Browse files
Options
Downloads
Patches
Plain Diff
Refs #23755 : Using enum for determing instrument loader type
parent
5a7d4b91
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Framework/API/src/ExperimentInfo.cpp
+0
-1
0 additions, 1 deletion
Framework/API/src/ExperimentInfo.cpp
Framework/DataHandling/src/LoadInstrument.cpp
+23
-16
23 additions, 16 deletions
Framework/DataHandling/src/LoadInstrument.cpp
with
23 additions
and
17 deletions
Framework/API/src/ExperimentInfo.cpp
+
0
−
1
View file @
4919dd7d
...
...
@@ -64,7 +64,6 @@ using namespace Poco::XML;
namespace
Mantid
{
namespace
API
{
namespace
{
/// static logger object
Kernel
::
Logger
g_log
(
"ExperimentInfo"
);
...
...
This diff is collapsed.
Click to expand it.
Framework/DataHandling/src/LoadInstrument.cpp
+
23
−
16
View file @
4919dd7d
...
...
@@ -41,6 +41,14 @@ using namespace Geometry;
std
::
recursive_mutex
LoadInstrument
::
m_mutex
;
// This enum class is used to remember easily which instrument loader should be
// used. There are 3 different loaders: from XML string, from an IDF file and
// from a Nexus file. Some parts of the exec() function are common to Xml and
// Idf, some parts are common to Idf and Nxs, and some parts are common to all
// three. Assigning numbers to the 3 types allows us to write statements like
// if (loader_type < LoaderType::Nxs) then do all things common to Xml and Idf.
enum
class
LoaderType
{
Xml
=
1
,
Idf
=
2
,
Nxs
=
3
};
/// Initialisation method.
void
LoadInstrument
::
init
()
{
// When used as a Child Algorithm the workspace name is not used - hence the
...
...
@@ -101,7 +109,8 @@ void LoadInstrument::exec() {
boost
::
shared_ptr
<
API
::
MatrixWorkspace
>
ws
=
getProperty
(
"Workspace"
);
std
::
string
filename
=
getPropertyValue
(
"Filename"
);
std
::
string
instname
=
getPropertyValue
(
"InstrumentName"
);
std
::
pair
<
std
::
string
,
std
::
string
>
loader_type
;
// std::pair<std::string, std::string> loader_type;
LoaderType
loader_type
;
// If instrumentXML is not default (i.e. it has been defined), then use that
// Note: this is part of the IDF loader
...
...
@@ -117,8 +126,8 @@ void LoadInstrument::exec() {
if
(
filename
.
empty
())
filename
=
instname
;
loader
_
type
.
first
=
"idf"
;
loader_type
.
second
=
"x
ml
"
;
// Assign the
loader
type
to Xml
loader_type
=
LoaderType
::
X
ml
;
}
else
{
// This part of the loader searches through the instrument directories for
...
...
@@ -157,13 +166,11 @@ void LoadInstrument::exec() {
// Now that we have a file name, decide whether to use Nexus or IDF loading
if
(
LoadGeometry
::
isIDF
(
filename
))
{
// Call theIDF loader with the the XML text loaded from the IDF file
loader_type
.
first
=
"idf"
;
loader_type
.
second
=
"idffile"
;
// Assign the loader type to Idf
loader_type
=
LoaderType
::
Idf
;
}
else
if
(
LoadGeometry
::
isNexus
(
filename
))
{
// nexusInstrumentLoader(ws, filename, instname);
loader_type
.
first
=
"nxs"
;
loader_type
.
second
=
"nxsfile"
;
// Assign the loader type to Nxs
loader_type
=
LoaderType
::
Nxs
;
}
else
{
throw
Kernel
::
Exception
::
FileError
(
"No valid loader found for instrument file "
,
filename
);
...
...
@@ -175,21 +182,21 @@ void LoadInstrument::exec() {
Instrument_sptr
instrument
;
// Define a parser if using IDFs
if
(
loader_type
.
second
==
"x
ml
"
)
if
(
loader_type
==
LoaderType
::
X
ml
)
parser
=
InstrumentDefinitionParser
(
filename
,
instname
,
InstrumentXML
->
value
());
else
if
(
loader_type
.
second
==
"idffile"
)
else
if
(
loader_type
==
LoaderType
::
Idf
)
parser
=
InstrumentDefinitionParser
(
filename
,
instname
,
Strings
::
loadFile
(
filename
));
// Find the mangled instrument name that includes the modified date
if
(
loader_type
.
first
==
"idf"
)
if
(
loader_type
<
LoaderType
::
Nxs
)
instrumentNameMangled
=
parser
.
getMangledName
();
else
if
(
loader_type
.
first
==
"n
xs
"
)
else
if
(
loader_type
==
LoaderType
::
N
xs
)
instrumentNameMangled
=
NexusGeometry
::
NexusGeometryParser
::
getMangledName
(
filename
,
instname
);
else
throw
std
::
runtime_error
(
"Unknown instrument
l
oader
t
ype"
);
throw
std
::
runtime_error
(
"Unknown instrument
L
oader
T
ype"
);
{
// Make InstrumentService access thread-safe
...
...
@@ -202,7 +209,7 @@ void LoadInstrument::exec() {
InstrumentDataService
::
Instance
().
retrieve
(
instrumentNameMangled
);
}
else
{
if
(
loader_type
.
first
==
"idf"
)
{
if
(
loader_type
<
LoaderType
::
Nxs
)
{
// Really create the instrument
Progress
prog
(
this
,
0.0
,
1.0
,
100
);
instrument
=
parser
.
parseXML
(
&
prog
);
...
...
@@ -229,7 +236,7 @@ void LoadInstrument::exec() {
// LoadParameterFile modifies the base instrument stored in the IDS so this
// must also be protected by the lock until LoadParameterFile is fixed.
// check if default parameter file is also present, unless loading from
if
(
!
filename
.
empty
()
&&
(
loader_type
.
first
==
"idf"
))
if
(
!
filename
.
empty
()
&&
(
loader_type
<
LoaderType
::
Nxs
))
runLoadParameterFile
(
ws
,
filename
);
}
// end of mutex scope
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment