Skip to content

Commit

Permalink
Re #7452 Fixed binning of the monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo Leal committed Feb 5, 2014
1 parent f80020a commit 5283906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/DataHandling/src/LoadILLSANS.cpp
Expand Up @@ -266,7 +266,7 @@ size_t LoadILLSANS::loadDataIntoWorkspaceFromMonitors(NeXus::NXEntry &firstEntry
const size_t vectorSize = data.dim2() + 1;
std::vector<double> positionsBinning;
positionsBinning.reserve(vectorSize);
for( size_t i = 0; i <= vectorSize; i++ )
for( size_t i = 0; i < vectorSize; i++ )
positionsBinning.push_back( static_cast<double>(i) );

// Assign X
Expand Down

0 comments on commit 5283906

Please sign in to comment.