Skip to content

Commit

Permalink
Fix indexing bug with scatter points.
Browse files Browse the repository at this point in the history
Refs #10169
  • Loading branch information
martyngigg committed Oct 28, 2014
1 parent 7a84ddf commit 8a6602d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -859,7 +859,7 @@ namespace Mantid

// Generate a new direction of travel
const V3D & prevSc = scatterPts[i-1];
V3D & curSc = scatterPts[i-1];
V3D & curSc = scatterPts[i];
const V3D & oldDir = neutronDirs[i-1];
V3D & newDir = neutronDirs[i];
size_t ntries(0);
Expand Down

0 comments on commit 8a6602d

Please sign in to comment.