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
0462a276
Commit
0462a276
authored
8 years ago
by
Ian Bush
Browse files
Options
Downloads
Patches
Plain Diff
Refs #16928 Added method for getting a single integer value
parent
f89b4f1e
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Framework/API/inc/MantidAPI/LogManager.h
+2
-0
2 additions, 0 deletions
Framework/API/inc/MantidAPI/LogManager.h
Framework/API/src/LogManager.cpp
+27
-6
27 additions, 6 deletions
Framework/API/src/LogManager.cpp
Framework/API/test/LogManagerTest.h
+40
-0
40 additions, 0 deletions
Framework/API/test/LogManagerTest.h
with
69 additions
and
6 deletions
Framework/API/inc/MantidAPI/LogManager.h
+
2
−
0
View file @
0462a276
...
...
@@ -117,6 +117,8 @@ public:
double
getPropertyAsSingleValue
(
const
std
::
string
&
name
,
Kernel
::
Math
::
StatisticType
statistic
=
Kernel
::
Math
::
Mean
)
const
;
/// Returns a property as an integer value
int
getPropertyAsIntegerValue
(
const
std
::
string
&
name
)
const
;
/// Returns the named property as a pointer
Kernel
::
Property
*
getProperty
(
const
std
::
string
&
name
)
const
;
...
...
This diff is collapsed.
Click to expand it.
Framework/API/src/LogManager.cpp
+
27
−
6
View file @
0462a276
...
...
@@ -4,14 +4,8 @@
#include
"MantidAPI/LogManager.h"
#include
"MantidKernel/PropertyNexus.h"
#include
"MantidKernel/DateAndTime.h"
#include
"MantidKernel/TimeSplitter.h"
#include
"MantidKernel/TimeSeriesProperty.h"
#include
<nexus/NeXusFile.hpp>
#include
<algorithm>
namespace
Mantid
{
namespace
API
{
...
...
@@ -370,6 +364,33 @@ double LogManager::getPropertyAsSingleValue(
return
singleValue
;
}
/**
* Returns a property as a n integer, if the underlying value is an integer.
* Throws otherwise.
* @param name :: The name of the property
* @return A single integer value
* @throws std::invalid_argument if property is not an integer type
*/
int
LogManager
::
getPropertyAsIntegerValue
(
const
std
::
string
&
name
)
const
{
int
singleValue
(
0
);
double
discard
(
0
);
Property
*
prop
=
getProperty
(
name
);
if
(
convertSingleValue
<
int32_t
>
(
prop
,
discard
)
||
convertSingleValue
<
int64_t
>
(
prop
,
discard
)
||
convertSingleValue
<
uint32_t
>
(
prop
,
discard
)
||
convertSingleValue
<
uint64_t
>
(
prop
,
discard
))
{
singleValue
=
std
::
stoi
(
prop
->
value
());
}
else
{
throw
std
::
invalid_argument
(
"Run::getPropertyAsIntegerValue - Property
\"
"
+
name
+
"
\"
cannot be converted to an integer value."
);
}
return
singleValue
;
}
/**
* Get a pointer to a property by name
* @param name :: The name of a property, throws an Exception::NotFoundError if
...
...
This diff is collapsed.
Click to expand it.
Framework/API/test/LogManagerTest.h
+
40
−
0
View file @
0462a276
...
...
@@ -264,6 +264,36 @@ public:
TS_ASSERT_DELTA
(
1.0
,
result
,
1e-12
);
}
void
test_GetPropertyAsIntegerValue_SingleValue_Int32Type
()
{
doTest_GetPropertyAsIntegerValue
<
int32_t
>
(
1
);
}
void
test_GetPropertyAsIntegerValue_SingleValue_Int64Type
()
{
doTest_GetPropertyAsIntegerValue
<
int64_t
>
(
1L
);
}
void
test_GetPropertyAsIntegerValue_SingleValue_Uint32Type
()
{
doTest_GetPropertyAsIntegerValue
<
uint32_t
>
(
1U
);
}
void
test_GetPropertyAsIntegerValue_SingleValue_Uint64Type
()
{
doTest_GetPropertyAsIntegerValue
<
uint64_t
>
(
1UL
);
}
void
test_GetPropertyAsSingleInteger_DoubleType_Throws
()
{
LogManager
runInfo
;
const
std
::
string
name
=
"T_prop"
;
runInfo
.
addProperty
<
double
>
(
name
,
1.0
);
TS_ASSERT_THROWS
(
runInfo
.
getPropertyAsIntegerValue
(
name
),
std
::
invalid_argument
);
}
void
test_GetPropertyAsSingleInteger_Throws_for_nonexistant_property
()
{
LogManager
runInfo
;
TS_ASSERT_THROWS
(
runInfo
.
getPropertyAsIntegerValue
(
"T_prop"
),
Exception
::
NotFoundError
);
}
void
test_GetPropertyAsSingleValue_TimeSeries_DoubleType
()
{
doTest_GetPropertyAsSingleValue_TimeSeriesType
<
double
>
();
}
...
...
@@ -502,6 +532,16 @@ private:
runInfo
.
getPropertyAsSingleValue
(
name
,
Mantid
::
Kernel
::
Math
::
Mean
),
expectedValue
,
1e-12
);
}
template
<
typename
T
>
void
doTest_GetPropertyAsIntegerValue
(
const
T
value
)
{
LogManager
runInfo
;
const
std
::
string
name
=
"T_prop"
;
runInfo
.
addProperty
<
T
>
(
name
,
value
);
int
result
(
-
1
);
result
=
runInfo
.
getPropertyAsIntegerValue
(
name
);
TS_ASSERT_THROWS_NOTHING
(
result
=
runInfo
.
getPropertyAsIntegerValue
(
name
));
TS_ASSERT_EQUALS
(
value
,
static_cast
<
T
>
(
result
));
}
};
//---------------------------------------------------------------------------------------
...
...
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