Skip to content

Commit

Permalink
Refs #10247. Fixed initialization of PoldiPeakCollection members
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Wedel committed Sep 16, 2014
1 parent 99173b4 commit 720b42f
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -34,7 +34,9 @@ PoldiPeakCollection::PoldiPeakCollection(const TableWorkspace_sptr &workspace) :
}

PoldiPeakCollection::PoldiPeakCollection(const Geometry::CrystalStructure_sptr &crystalStructure, double dMin, double dMax) :
m_peaks()
m_peaks(),
m_intensityType(Maximum),
m_profileFunctionName()
{
std::vector<V3D> uniqueHKL = crystalStructure->getUniqueHKLs(dMin, dMax);
std::vector<double> dValues = crystalStructure->getDValues(uniqueHKL);
Expand Down

0 comments on commit 720b42f

Please sign in to comment.