Newer
Older
#ifndef MANTID_DATAHANDLING_MODIFYDETECTORDOTDATFILE_H_
#define MANTID_DATAHANDLING_MODIFYDETECTORDOTDATFILE_H_
namespace Mantid {
namespace DataHandling {
/** Modifies an ISIS detector dot data file, so that the detector positions are
as in the given workspace.
@author Karl Palmen
@date 2012-08-23
Copyright © 2012 ISIS Rutherford Appleton Laboratory, NScD Oak Ridge
National Laboratory & European Spallation Source
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
File change history is stored at: <https://github.com/mantidproject/mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class DLLExport ModifyDetectorDotDatFile : public API::Algorithm {
public:
ModifyDetectorDotDatFile();
~ModifyDetectorDotDatFile();
/// Algorithm's name for identification
virtual const std::string name() const { return "ModifyDetectorDotDatFile"; };
/// Summary of algorithms purpose
virtual const std::string summary() const {
return "Modifies an ISIS detector dot data file, so that the detector "
"positions are as in the given workspace";
}
/// Algorithm's version for identification
virtual int version() const { return 1; };
/// Algorithm's category for identification
virtual const std::string category() const { return "DataHandling"; }
private:
/// Initialise the properties
void init();
/// Run the algorithm
void exec();
};
} // namespace DataHandling
} // namespace Mantid
#endif /* MANTID_DATAHANDLING_MODIFYDETECTORDOTDATFILE_H_ */