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
eec95828
Commit
eec95828
authored
7 years ago
by
Peterson, Peter
Browse files
Options
Downloads
Patches
Plain Diff
Add peak positions to diagnostic table
parent
8302f2d4
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Framework/Algorithms/inc/MantidAlgorithms/PDCalibration.h
+2
-0
2 additions, 0 deletions
Framework/Algorithms/inc/MantidAlgorithms/PDCalibration.h
Framework/Algorithms/src/PDCalibration.cpp
+68
-2
68 additions, 2 deletions
Framework/Algorithms/src/PDCalibration.cpp
with
70 additions
and
2 deletions
Framework/Algorithms/inc/MantidAlgorithms/PDCalibration.h
+
2
−
0
View file @
eec95828
...
...
@@ -55,6 +55,7 @@ private:
API
::
MatrixWorkspace_sptr
load
(
const
std
::
string
filename
);
void
loadOldCalibration
();
void
createNewCalTable
();
void
createInformationWorkspaces
();
std
::
function
<
double
(
double
)
>
getDSpacingToTof
(
const
detid_t
detid
);
std
::
vector
<
double
>
dSpacingWindows
(
const
std
::
vector
<
double
>
&
centres
,
const
double
widthMax
);
...
...
@@ -67,6 +68,7 @@ private:
double
&
t0
,
double
&
difa
);
API
::
MatrixWorkspace_sptr
m_uncalibratedWS
;
API
::
ITableWorkspace_sptr
m_calibrationTable
;
API
::
ITableWorkspace_sptr
m_peakPositionTable
;
std
::
vector
<
double
>
m_peaksInDspacing
;
std
::
string
calParams
;
std
::
map
<
detid_t
,
size_t
>
m_detidToRow
;
...
...
This diff is collapsed.
Click to expand it.
Framework/Algorithms/src/PDCalibration.cpp
+
68
−
2
View file @
eec95828
...
...
@@ -4,6 +4,7 @@
#include
"MantidAPI/MatrixWorkspace.h"
#include
"MantidAPI/Run.h"
#include
"MantidAPI/TableRow.h"
#include
"MantidAPI/WorkspaceGroup.h"
#include
"MantidDataObjects/EventWorkspace.h"
#include
"MantidDataObjects/MaskWorkspace.h"
#include
"MantidDataObjects/TableWorkspace.h"
...
...
@@ -99,6 +100,8 @@ public:
inTofPos
.
push_back
(
peaksInD
[
i
]);
inTofWindows
.
push_back
(
peaksInDWindows
[
2
*
i
]);
inTofWindows
.
push_back
(
peaksInDWindows
[
2
*
i
+
1
]);
}
else
if
(
centre
<
tofMax
)
{
badPeakOffset
=
i
;
}
}
std
::
transform
(
inTofPos
.
begin
(),
inTofPos
.
end
(),
inTofPos
.
begin
(),
toTof
);
...
...
@@ -113,6 +116,7 @@ public:
std
::
vector
<
double
>
inTofPos
;
std
::
vector
<
double
>
inTofWindows
;
std
::
vector
<
double
>
inDPos
;
std
::
size_t
badPeakOffset
{
0
};
///< positions that will not be fit
};
//----------------------------------------------------------------------------------------------
...
...
@@ -247,6 +251,10 @@ void PDCalibration::init() {
"OutputCalibrationTable"
,
""
,
Direction
::
Output
),
"An output workspace containing the Calibration Table"
);
declareProperty
(
Kernel
::
make_unique
<
WorkspaceProperty
<
API
::
WorkspaceGroup
>>
(
"DiagnosticWorkspaces"
,
""
,
Direction
::
Output
),
"Workspaces to promote understanding of calibration results"
);
// make group for Input properties
std
::
string
inputGroup
(
"Input Options"
);
setPropertyGroup
(
"SignalWorkspace"
,
inputGroup
);
...
...
@@ -369,6 +377,7 @@ void PDCalibration::exec() {
}
else
{
createNewCalTable
();
}
createInformationWorkspaces
();
std
::
string
maskWSName
=
getPropertyValue
(
"OutputCalibrationTable"
);
maskWSName
+=
"_mask"
;
...
...
@@ -422,6 +431,8 @@ void PDCalibration::exec() {
alg
->
executeAsChildAlg
();
API
::
ITableWorkspace_sptr
fittedTable
=
alg
->
getProperty
(
"PeaksList"
);
// includes peaks that aren't used in the fit
std
::
vector
<
double
>
tof_vec_full
(
m_peaksInDspacing
.
size
(),
std
::
nan
(
""
));
std
::
vector
<
double
>
d_vec
;
std
::
vector
<
double
>
tof_vec
;
for
(
size_t
i
=
0
;
i
<
fittedTable
->
rowCount
();
++
i
)
{
...
...
@@ -431,7 +442,7 @@ void PDCalibration::exec() {
double
chi2
=
fittedTable
->
getRef
<
double
>
(
"chi2"
,
i
);
// check chi-square
if
(
chi2
>
maxChiSquared
||
chi2
<
0
)
{
if
(
chi2
>
maxChiSquared
||
chi2
<
0
.
)
{
continue
;
}
...
...
@@ -460,6 +471,7 @@ void PDCalibration::exec() {
d_vec
.
push_back
(
peaks
.
inDPos
[
i
]);
tof_vec
.
push_back
(
centre
);
tof_vec_full
[
i
+
peaks
.
badPeakOffset
]
=
centre
;
}
if
(
d_vec
.
empty
())
{
...
...
@@ -468,6 +480,17 @@ void PDCalibration::exec() {
}
else
{
double
difc
=
0.
,
t0
=
0.
,
difa
=
0.
;
fitDIFCtZeroDIFA
(
d_vec
,
tof_vec
,
difc
,
t0
,
difa
);
const
auto
rowNum
=
m_detidToRow
[
peaks
.
detid
];
auto
converter
=
Kernel
::
Diffraction
::
getTofToDConversionFunc
(
difc
,
difa
,
t0
);
for
(
std
::
size_t
i
=
0
;
i
<
tof_vec_full
.
size
();
++
i
)
{
if
(
std
::
isnan
(
tof_vec_full
[
i
]))
continue
;
const
double
dspacing
=
converter
(
tof_vec_full
[
i
]);
m_peakPositionTable
->
cell
<
double
>
(
rowNum
,
i
+
1
)
=
dspacing
;
}
setCalibrationValues
(
peaks
.
detid
,
difc
,
difa
,
t0
);
}
prog
.
report
();
...
...
@@ -475,6 +498,22 @@ void PDCalibration::exec() {
PARALLEL_END_INTERUPT_REGION
}
PARALLEL_CHECK_INTERUPT_REGION
// fix-up the diagnostic workspaces
auto
alg
=
createChildAlgorithm
(
"SortTableWorkspace"
);
alg
->
setProperty
(
"InputWorkspace"
,
m_peakPositionTable
);
alg
->
setProperty
(
"OutputWorkspace"
,
m_peakPositionTable
);
alg
->
setProperty
(
"Columns"
,
"detid"
);
alg
->
executeAsChildAlg
();
m_peakPositionTable
=
alg
->
getProperty
(
"OutputWorkspace"
);
// set the diagnostic workspaces out
const
std
::
string
partials_prefix
=
getPropertyValue
(
"DiagnosticWorkspaces"
);
auto
diagnosticGroup
=
boost
::
make_shared
<
API
::
WorkspaceGroup
>
();
API
::
AnalysisDataService
::
Instance
().
addOrReplace
(
partials_prefix
+
"_dspacing"
,
m_peakPositionTable
);
diagnosticGroup
->
addWorkspace
(
m_peakPositionTable
);
setProperty
(
"DiagnosticWorkspaces"
,
diagnosticGroup
);
}
void
PDCalibration
::
fitDIFCtZeroDIFA
(
const
std
::
vector
<
double
>
&
d
,
...
...
@@ -846,7 +885,7 @@ void PDCalibration::createNewCalTable() {
auto
alg
=
createChildAlgorithm
(
"CalculateDIFC"
);
alg
->
setProperty
(
"InputWorkspace"
,
m_uncalibratedWS
);
alg
->
executeAsChildAlg
();
API
::
MatrixWorkspace_sptr
difcWS
=
alg
->
getProperty
(
"OutputWorkspace"
);
API
::
MatrixWorkspace_
const_
sptr
difcWS
=
alg
->
getProperty
(
"OutputWorkspace"
);
// create a new workspace
m_calibrationTable
=
boost
::
make_shared
<
DataObjects
::
TableWorkspace
>
();
...
...
@@ -880,5 +919,32 @@ void PDCalibration::createNewCalTable() {
}
}
void
PDCalibration
::
createInformationWorkspaces
()
{
// table for the fitted location of the various peaks
m_peakPositionTable
=
boost
::
make_shared
<
DataObjects
::
TableWorkspace
>
();
m_peakPositionTable
->
addColumn
(
"int"
,
"detid"
);
for
(
double
dSpacing
:
m_peaksInDspacing
)
{
std
::
stringstream
namess
;
namess
<<
"@"
<<
std
::
setprecision
(
5
)
<<
dSpacing
;
m_peakPositionTable
->
addColumn
(
"double"
,
namess
.
str
());
}
// convert the map of m_detidToRow to be a vector of detector ids
std
::
vector
<
detid_t
>
detIds
(
m_detidToRow
.
size
());
for
(
const
auto
&
it
:
m_detidToRow
)
{
detIds
[
it
.
second
]
=
it
.
first
;
}
// copy the detector ids from the main table and add lots of NaNs
for
(
const
auto
&
detId
:
detIds
)
{
API
::
TableRow
newRow
=
m_peakPositionTable
->
appendRow
();
newRow
<<
detId
;
for
(
double
dSpacing
:
m_peaksInDspacing
)
{
UNUSED_ARG
(
dSpacing
);
newRow
<<
std
::
nan
(
""
);
}
}
}
}
// namespace Algorithms
}
// namespace Mantid
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