Skip to content

Commit

Permalink
refs #9509. Fix new API usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Jun 2, 2014
1 parent 4d498b8 commit acc2932
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
Expand Up @@ -9,7 +9,7 @@ namespace Mantid
namespace Crystal
{

/** IntegratePeaksHybrid : TODO: DESCRIPTION
/** IntegratePeaksHybrid : Integrate single crystal peaks algorithm
Copyright © 2014 ISIS Rutherford Appleton Laboratory & NScD Oak Ridge National Laboratory
Expand Down Expand Up @@ -42,7 +42,7 @@ namespace Crystal
virtual const std::string category() const;

private:
virtual void initDocs();
virtual const std::string summary() const;
void init();
void exec();

Expand Down
11 changes: 5 additions & 6 deletions Code/Mantid/Framework/Crystal/src/IntegratePeaksHybrid.cpp
Expand Up @@ -111,12 +111,6 @@ namespace Mantid
return "MDAlgorithms";
}

//----------------------------------------------------------------------------------------------
/// Sets documentation strings for this algorithm
void IntegratePeaksHybrid::initDocs()
{
}

//----------------------------------------------------------------------------------------------
/** Initialize the algorithm's properties.
*/
Expand Down Expand Up @@ -153,6 +147,11 @@ namespace Mantid
"MDHistoWorkspaces containing the labeled clusters used by the algorithm.");
}

const std::string IntegratePeaksHybrid::summary() const
{
return "Integrate single crystal peaks using connected component analysis. Binning invididual to each peak.";
}

//----------------------------------------------------------------------------------------------
/** Execute the algorithm.
*/
Expand Down

0 comments on commit acc2932

Please sign in to comment.