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
d2a3c222
Commit
d2a3c222
authored
14 years ago
by
Janik Zikovsky
Browse files
Options
Downloads
Patches
Plain Diff
Refs #2334: Build fix for SaveSNSNexus.
parent
fe36c335
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Mantid/Framework/Nexus/src/SaveSNSNexus.cpp
+2
-22
2 additions, 22 deletions
Code/Mantid/Framework/Nexus/src/SaveSNSNexus.cpp
with
2 additions
and
22 deletions
Code/Mantid/Framework/Nexus/src/SaveSNSNexus.cpp
+
2
−
22
View file @
d2a3c222
...
@@ -293,7 +293,7 @@ namespace NeXus
...
@@ -293,7 +293,7 @@ namespace NeXus
size_t
ypixels
=
det
->
ypixels
();
size_t
ypixels
=
det
->
ypixels
();
PARALLEL_FOR1
(
inputWorkspace
)
PARALLEL_FOR1
(
inputWorkspace
)
for
(
size_
t
y
=
0
;
y
<
ypixels
;
y
++
)
for
(
in
t
y
=
0
;
y
<
ypixels
;
y
++
)
{
{
//Get the workspace index for the detector ID at this spot
//Get the workspace index for the detector ID at this spot
int
wi
;
int
wi
;
...
@@ -307,8 +307,7 @@ namespace NeXus
...
@@ -307,8 +307,7 @@ namespace NeXus
}
}
// Offset into array.
// Offset into array.
size_t
index
=
size_t
(
slabx
)
*
size_t
(
dataDimensions
[
1
])
*
size_t
(
dataDimensions
[
2
])
+
y
*
size_t
(
dataDimensions
[
2
]);
size_t
index
=
size_t
(
slabx
)
*
size_t
(
dataDimensions
[
1
])
*
size_t
(
dataDimensions
[
2
])
+
size_t
(
y
)
*
size_t
(
dataDimensions
[
2
]);
size_t
start_index
=
index
;
if
(
doBoth
)
if
(
doBoth
)
{
{
...
@@ -317,17 +316,6 @@ namespace NeXus
...
@@ -317,17 +316,6 @@ namespace NeXus
inputWorkspace
->
readYE
(
wi
,
Y
,
E
);
inputWorkspace
->
readYE
(
wi
,
Y
,
E
);
std
::
copy
(
Y
->
begin
(),
Y
->
end
(),
data
+
index
);
std
::
copy
(
Y
->
begin
(),
Y
->
end
(),
data
+
index
);
std
::
copy
(
E
->
begin
(),
E
->
end
(),
errors
+
index
);
std
::
copy
(
E
->
begin
(),
E
->
end
(),
errors
+
index
);
// MantidVec::const_iterator it_end;
// it_end = Y->end();
// for (MantidVec::const_iterator it = Y->begin(); it != it_end; it++)
// data[index++] = *it;
//
// index = start_index;
// it_end = E->end();
// for (MantidVec::const_iterator it = E->begin(); it != it_end; it++)
// errors[index++] = *it;
}
}
else
else
{
{
...
@@ -343,14 +331,6 @@ namespace NeXus
...
@@ -343,14 +331,6 @@ namespace NeXus
}
}
}
}
// double total = 0;
// for (size_t i=start_index; i < start_index+inputWorkspace->blocksize(); ++i)
// total += data[i];
//
// if (total > 0)
// std::cout << x <<"," << y << "="<<total <<"\n";
}
}
fillTime
+=
tim1
.
elapsed
();
fillTime
+=
tim1
.
elapsed
();
...
...
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