Mantid
Loading...
Searching...
No Matches
FindDetectorsOutsideLimits.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2007 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
7#pragma once
8
9//----------------------------------------------------------------------
10// Includes
11//----------------------------------------------------------------------
13
14namespace Mantid {
15namespace Algorithms {
50class MANTID_ALGORITHMS_DLL FindDetectorsOutsideLimits : public DetectorDiagnostic {
51public:
53 const std::string name() const override { return "FindDetectorsOutsideLimits"; }
55 const std::string summary() const override {
56 return "Identifies histograms and their detectors that have total numbers "
57 "of counts over a user defined maximum or less than the user define "
58 "minimum.";
59 }
60
61 const std::string category() const override;
63 int version() const override { return (1); }
64 const std::vector<std::string> seeAlso() const override { return {"FindDeadDetectors", "DetectorDiagnostic"}; }
65
66private:
68 void init() override;
70 void exec() override;
71};
72
73} // namespace Algorithms
74} // namespace Mantid
A base class for a detector diagnostic algorithm.
Takes a workspace as input and identifies all spectra where the sum of the counts in all bins is outs...
const std::vector< std::string > seeAlso() const override
Function to return all of the seeAlso algorithms related to this algorithm.
int version() const override
Algorithm's version for identification overriding a virtual method.
const std::string summary() const override
Summary of algorithms purpose.
const std::string name() const override
Algorithm's name for identification overriding a virtual method.
Helper class which provides the Collimation Length for SANS instruments.