Newer
Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2008 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source,
// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
// SPDX - License - Identifier: GPL - 3.0 +
Russell Taylor
committed
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
Russell Taylor
committed
namespace Mantid {
namespace DataHandling {
Russell Taylor
committed
/** An algorithm for grouping detectors and the spectra associated with them
into a single DetectorGroup and spectrum.
Russell Taylor
committed
This algorithm can only be used on a workspace that has common X bins.
Russell Taylor
committed
Required Properties:
<UL>
<LI> Workspace - The name of the (input & output) Workspace2D on which to
perform the algorithm </LI>
Russell Taylor
committed
</UL>
Optional Properties (Only one of these should be set. Priority to highest
listed below if more than one is set.):
Russell Taylor
committed
<UL>
<LI> SpectraList - An ArrayProperty containing a list of spectra to combine
</LI>
<LI> DetectorList - An ArrayProperty containing a list of detector IDs to
combine </LI>
<LI> WorkspaceIndexList - An ArrayProperty containing the workspace indices
to combine </LI>
Russell Taylor
committed
</UL>
Russell Taylor
committed
Output Properties:
<UL>
<LI> ResultIndex - The workspace index containing the grouped spectra </LI>
</UL>
Russell Taylor
committed
@author Russell Taylor, Tessella Support Services plc
@date 17/04/2008
*/
class DLLExport GroupDetectors : public API::Algorithm {
Russell Taylor
committed
public:
/// Algorithm's name for identification overriding a virtual method
const std::string name() const override { return "GroupDetectors"; };
const std::string summary() const override {
return "Sums spectra bin-by-bin, equivalent to grouping the data from a "
"set of detectors. Individual groups can be specified by passing "
"the algorithm a list of spectrum numbers, detector IDs or "
"workspace indices. Many spectra groups can be created in one "
"execution via an input file.";
}
Russell Taylor
committed
/// Algorithm's version for identification overriding a virtual method
int version() const override { return 1; };
/// Algorithm's category for identification overriding a virtual method
const std::string category() const override { return "Transforms\\Grouping"; }
Russell Taylor
committed
private:
// Implement abstract Algorithm methods
void init() override;
void exec() override;
Russell Taylor
committed
};
} // namespace DataHandling
} // namespace Mantid