@@ -26,7 +26,6 @@ using namespace Mantid::Kernel;
26
26
namespace {
27
27
static const std::string INPUT_WORKSPACE_PROPERTY = " InputWorkspaces" ;
28
28
static const std::string REFERENCE_WORKSPACE_PROPERTY = " ReferenceWorkspace" ;
29
- static const std::string COMBINATION_BEHAVIOUR_PROPERTY = " CombinationBehaviour" ;
30
29
static const std::string SCALE_FACTOR_CALCULATION_PROPERTY = " ScaleFactorCalculation" ;
31
30
static const std::string MANUAL_SCALE_FACTORS_PROPERTY = " ManualScaleFactors" ;
32
31
static const std::string TIE_SCALE_FACTORS_PROPERTY = " TieScaleFactors" ;
@@ -241,8 +240,6 @@ void Stitch::init() {
241
240
" that is, the one that will not be scaled. If left blank, "
242
241
" stitching will be performed left to right in the order of x-axes ascending, "
243
242
" no matter the order of workspaces names in the input." );
244
- declareProperty (COMBINATION_BEHAVIOUR_PROPERTY, " Interleave" ,
245
- std::make_unique<ListValidator<std::string>>(std::array<std::string, 1 >{" Interleave" }));
246
243
declareProperty (SCALE_FACTOR_CALCULATION_PROPERTY, " MedianOfRatios" ,
247
244
std::make_unique<ListValidator<std::string>>(std::array<std::string, 2 >{" MedianOfRatios" , " Manual" }));
248
245
declareProperty (std::make_unique<ArrayProperty<double >>(MANUAL_SCALE_FACTORS_PROPERTY),
@@ -264,7 +261,6 @@ void Stitch::init() {
264
261
*/
265
262
void Stitch::exec () {
266
263
const auto referenceName = getPropertyValue (REFERENCE_WORKSPACE_PROPERTY);
267
- const auto combinationBehaviour = getPropertyValue (COMBINATION_BEHAVIOUR_PROPERTY);
268
264
const auto scaleFactorCalculation = getPropertyValue (SCALE_FACTOR_CALCULATION_PROPERTY);
269
265
const auto inputs = RunCombinationHelper::unWrapGroups (getProperty (INPUT_WORKSPACE_PROPERTY));
270
266
MatrixWorkspace_sptr scaleFactorsWorkspace;
0 commit comments