Skip to content
Snippets Groups Projects
Commit d2a3c222 authored by Janik Zikovsky's avatar Janik Zikovsky
Browse files

Refs #2334: Build fix for SaveSNSNexus.

parent fe36c335
No related branches found
No related tags found
No related merge requests found
...@@ -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 (int 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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment