Skip to content

Commit

Permalink
Refs #7139 Add radii of the major axis of the ellipsoidal peak and bkg
Browse files Browse the repository at this point in the history
  • Loading branch information
Vickie Lynch committed May 21, 2013
1 parent 3369a95 commit d542b88
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Code/Mantid/Framework/MDEvents/src/IntegrateEllipsoids.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,13 @@ namespace MDEvents

}

// This flag is used by the PeaksWorkspace to evaluate whether it has been integrated.
peak_ws->mutableRun().addProperty("PeaksIntegrated", 1, true);
// These flags are specific to the algorithm.
peak_ws->mutableRun().addProperty("PeakRadius", peak_radius, true);
peak_ws->mutableRun().addProperty("BackgroundInnerRadius", back_inner_radius, true);
peak_ws->mutableRun().addProperty("BackgroundOuterRadius", back_outer_radius, true);


setProperty("OutputWorkspace", peak_ws);
}
Expand Down

0 comments on commit d542b88

Please sign in to comment.