Skip to content

Commit

Permalink
Refs #9379 fix system test
Browse files Browse the repository at this point in the history
  • Loading branch information
VickieLynch committed May 1, 2014
1 parent 0e41c18 commit 6bbd1f0
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions Code/Mantid/Framework/MDEvents/src/IntegrateEllipsoids.cpp
Expand Up @@ -374,17 +374,20 @@ namespace MDEvents
axes_radii, inti, sigi );
peaks[i].setIntensity( inti );
peaks[i].setSigmaIntensity( sigi );
g_log.debug() << "Radii of three axes of ellipsoid for integrating peak "
<< i << " = ";
for (int i3 = 0; i3 < 3; i3++ )
if (axes_radii.size() == 3)
{
g_log.debug() << axes_radii[i3] << " ";
g_log.debug() << "Radii of three axes of ellipsoid for integrating peak "
<< i << " = ";
for (int i3 = 0; i3 < 3; i3++ )
{
g_log.debug() << axes_radii[i3] << " ";
}
g_log.debug() << std::endl;

PeakRadiusVector1[i] = axes_radii[0];
PeakRadiusVector2[i] = axes_radii[1];
PeakRadiusVector3[i] = axes_radii[2];
}
g_log.debug() << std::endl;

PeakRadiusVector1[i] = axes_radii[0];
PeakRadiusVector2[i] = axes_radii[1];
PeakRadiusVector3[i] = axes_radii[2];
}
else
{
Expand Down

0 comments on commit 6bbd1f0

Please sign in to comment.