Skip to content

Commit

Permalink
Re #10498 PhaseQuad fixing X shift
Browse files Browse the repository at this point in the history
  • Loading branch information
raquelalvarezbanos committed Dec 2, 2014
1 parent 71dc377 commit 14790f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Algorithms/src/PhaseQuadMuon.cpp
Expand Up @@ -166,7 +166,7 @@ void PhaseQuadMuon::convertToMicroSecs (API::MatrixWorkspace_sptr inputWs)
auto spec = inputWs->getSpectrum(h);
for (int t=0; t<m_nData+1; t++)
{
spec->dataX()[t] = ( spec->dataX()[t] + m_tMin ) / 1000;
spec->dataX()[t] = spec->dataX()[t]/1000+m_tMin;
}
}
}
Expand Down

0 comments on commit 14790f2

Please sign in to comment.