Skip to content

Commit

Permalink
Remove static modifier to avoid possible threading issue. Refs #5975
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Oct 18, 2012
1 parent 8b9324a commit bf815f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/API/src/FermiChopperModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ namespace Mantid
*/
double FermiChopperModel::calculatePulseTimeVariance() const
{
const static double mevToSpeedSq = 2.0*PhysicalConstants::meV/PhysicalConstants::NeutronMass;
const double mevToSpeedSq = 2.0*PhysicalConstants::meV/PhysicalConstants::NeutronMass;

const double omega = getAngularVelocity();
const double ei = getIncidentEnergy();
Expand Down

0 comments on commit bf815f4

Please sign in to comment.