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
d0f824dc
Commit
d0f824dc
authored
15 years ago
by
Russell Taylor
Browse files
Options
Downloads
Patches
Plain Diff
Add reconfiguration of spectrum-detector map in SumSpectra. Re #702.
parent
6ac1ad44
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Mantid/Algorithms/src/SimpleIntegration.cpp
+1
-1
1 addition, 1 deletion
Code/Mantid/Algorithms/src/SimpleIntegration.cpp
Code/Mantid/Algorithms/src/SumSpectra.cpp
+23
-19
23 additions, 19 deletions
Code/Mantid/Algorithms/src/SumSpectra.cpp
with
24 additions
and
20 deletions
Code/Mantid/Algorithms/src/SimpleIntegration.cpp
+
1
−
1
View file @
d0f824dc
...
...
@@ -115,7 +115,7 @@ void SimpleIntegration::exec()
MantidVec
::
difference_type
distmax
=
std
::
distance
(
X
.
begin
(),
highit
);
if
(
distmin0
!=
distmin
||
distmax0
!=
distmax
)
g_log
.
information
()
<<
"Starting with spectrum "
<<
i
<<
" bins selected: from "
<<
distmin
<<
" ("
<<*
(
X
.
begin
()
+
distmin
)
g_log
.
debug
()
<<
"Starting with spectrum "
<<
i
<<
" bins selected: from "
<<
distmin
<<
" ("
<<*
(
X
.
begin
()
+
distmin
)
<<
") to "
<<
distmax
<<
" ("
<<*
(
X
.
begin
()
+
distmax
)
<<
")
\n
"
;
distmin0
=
distmin
;
...
...
This diff is collapsed.
Click to expand it.
Code/Mantid/Algorithms/src/SumSpectra.cpp
+
23
−
19
View file @
d0f824dc
...
...
@@ -2,7 +2,9 @@
// Includes
//----------------------------------------------------------------------
#include
"MantidAlgorithms/SumSpectra.h"
#include
"MantidDataObjects/Workspace2D.h"
#include
"MantidAPI/WorkspaceValidators.h"
#include
"MantidAPI/SpectraDetectorMap.h"
namespace
Mantid
{
...
...
@@ -14,6 +16,8 @@ DECLARE_ALGORITHM(SumSpectra)
using
namespace
Kernel
;
using
namespace
API
;
using
DataObjects
::
Workspace2D
;
using
DataObjects
::
Workspace2D_const_sptr
;
// Get a reference to the logger
Logger
&
SumSpectra
::
g_log
=
Logger
::
get
(
"SumSpectra"
);
...
...
@@ -24,8 +28,9 @@ Logger& SumSpectra::g_log = Logger::get("SumSpectra");
void
SumSpectra
::
init
()
{
declareProperty
(
new
WorkspaceProperty
<>
(
"InputWorkspace"
,
""
,
Direction
::
Input
,
new
CommonBinsValidator
<>
),
"The workspace containing the spectra to be summed"
);
new
WorkspaceProperty
<
Workspace2D
>
(
"InputWorkspace"
,
""
,
Direction
::
Input
,
new
CommonBinsValidator
<
Workspace2D
>
),
"The workspace containing the spectra to be summed"
);
declareProperty
(
new
WorkspaceProperty
<>
(
"OutputWorkspace"
,
""
,
Direction
::
Output
),
"The name of the workspace to be created as the output of the algorithm"
);
...
...
@@ -52,7 +57,7 @@ void SumSpectra::exec()
m_MaxSpec
=
getProperty
(
"EndSpectrum"
);
// Get the input workspace
Matrix
Workspace_const_sptr
localworkspace
=
getProperty
(
"InputWorkspace"
);
Workspace
2D
_const_sptr
localworkspace
=
getProperty
(
"InputWorkspace"
);
const
int
numberOfSpectra
=
localworkspace
->
getNumberHistograms
();
const
int
YLength
=
localworkspace
->
blocksize
();
...
...
@@ -73,15 +78,19 @@ void SumSpectra::exec()
MatrixWorkspace_sptr
outputWorkspace
=
API
::
WorkspaceFactory
::
Instance
().
create
(
localworkspace
,
1
,
localworkspace
->
readX
(
0
).
size
(),
YLength
);
int
progress_step
=
(
m_MaxSpec
-
m_MinSpec
+
1
)
/
100
;
if
(
progress_step
==
0
)
progress_step
=
1
;
Progress
progress
(
this
,
0
,
1
,
m_MinSpec
,
m_MaxSpec
,
1
);
// Create vectors to hold result
std
::
vector
<
double
>
XResult
=
localworkspace
->
readX
(
0
);
std
::
vector
<
double
>
YSum
(
localworkspace
->
readY
(
0
).
size
(),
0
);
std
::
vector
<
double
>
YError
(
localworkspace
->
readY
(
0
).
size
(),
0
);
// Copy over the bin boundaries
outputWorkspace
->
dataX
(
0
)
=
localworkspace
->
readX
(
0
);
// Get references to the output workspaces's data vectors
MantidVec
&
YSum
=
outputWorkspace
->
dataY
(
0
);
MantidVec
&
YError
=
outputWorkspace
->
dataE
(
0
);
// Get a reference to the spectra-detector map
SpectraDetectorMap
&
specMap
=
outputWorkspace
->
mutableSpectraMap
();
const
Axis
*
const
spectraAxis
=
localworkspace
->
getAxis
(
1
);
// Loop over spectra
for
(
int
i
=
m_MinSpec
,
j
=
0
;
i
<=
m_MaxSpec
;
++
i
,
++
j
)
for
(
int
i
=
m_MinSpec
;
i
<=
m_MaxSpec
;
++
i
)
{
// Retrieve the spectrum into a vector
const
std
::
vector
<
double
>&
YValues
=
localworkspace
->
readY
(
i
);
...
...
@@ -93,18 +102,13 @@ void SumSpectra::exec()
YError
[
k
]
+=
YErrors
[
k
]
*
YErrors
[
k
];
}
if
(
j
%
progress_step
==
0
)
{
interruption_point
();
progress
(
double
(
j
)
/
(
m_MaxSpec
-
m_MinSpec
+
1
)
);
}
// Map all the detectors onto the spectrum of the output (which is 0)
specMap
.
addSpectrumEntries
(
0
,
specMap
.
getDetectors
(
spectraAxis
->
spectraNo
(
i
)));
progress
.
report
();
}
outputWorkspace
->
dataX
(
0
)
=
XResult
;
outputWorkspace
->
dataY
(
0
)
=
YSum
;
//take the square root of all the accumulated squared errors - Assumes Gaussian errors
std
::
transform
(
YError
.
begin
(),
YError
.
end
(),
YError
.
begin
(),
dblSqrt
);
outputWorkspace
->
dataE
(
0
)
=
YError
;
std
::
transform
(
YError
.
begin
(),
YError
.
end
(),
YError
.
begin
(),
dblSqrt
);
// Assign it to the output workspace property
setProperty
(
"OutputWorkspace"
,
outputWorkspace
);
...
...
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