Skip to content

Commit

Permalink
Implement LoadFullprofResolution. Refs #6749.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Mar 21, 2013
1 parent 0120eda commit 5258221
Show file tree
Hide file tree
Showing 4 changed files with 819 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Code/Mantid/Framework/DataHandling/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ set ( SRC_FILES
src/LoadEventNexus.cpp
src/LoadEventPreNexus.cpp
src/LoadEventPreNexus2.cpp
src/LoadFullprofResolution.cpp
src/LoadGSS.cpp
src/LoadILL.cpp
src/LoadISISNexus.cpp
Expand Down Expand Up @@ -180,6 +181,7 @@ set ( INC_FILES
inc/MantidDataHandling/LoadEventNexus.h
inc/MantidDataHandling/LoadEventPreNexus.h
inc/MantidDataHandling/LoadEventPreNexus2.h
inc/MantidDataHandling/LoadFullprofResolution.h
inc/MantidDataHandling/LoadGSS.h
inc/MantidDataHandling/LoadILL.h
inc/MantidDataHandling/LoadISISNexus.h
Expand Down Expand Up @@ -315,6 +317,7 @@ set ( TEST_FILES
LoadEventNexusTest.h
LoadEventPreNexus2Test.h
LoadEventPreNexusTest.h
LoadFullprofResolutionTest.h
LoadGSSTest.h
LoadILLTest.h
LoadISISNexusTest.h
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
#ifndef MANTID_DATAHANDLING_LOADFULLPROFRESOLUTION_H_
#define MANTID_DATAHANDLING_LOADFULLPROFRESOLUTION_H_

#include "MantidKernel/System.h"
#include "MantidAPI/Algorithm.h"
#include "MantidDataObjects/TableWorkspace.h"

namespace Mantid
{
namespace DataHandling
{

/** LoadFullprofResolution : Load Fullprof resolution (.irf) file to TableWorkspace(s)
Copyright © 2013 ISIS Rutherford Appleton Laboratory & NScD Oak Ridge National Laboratory
This file is part of Mantid.
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 LoadFullprofResolution : public API::Algorithm
{
public:
LoadFullprofResolution();
virtual ~LoadFullprofResolution();

/// Algorithm's name for identification overriding a virtual method
virtual const std::string name() const { return "LoadFullprofResolution";}

/// Algorithm's version for identification overriding a virtual method
virtual int version() const { return 1;}

/// Algorithm's category for identification overriding a virtual method
virtual const std::string category() const { return "Diffraction";}

private:
/// Sets documentation strings for this algorithm
virtual void initDocs();
/// Implement abstract Algorithm methods
void init();
/// Implement abstract Algorithm methods
void exec();

/// Load file to a vector of strings
void loadFile(std::string filename, std::vector<std::string>& lines);

/// Scan imported file for bank information
void scanBanks(const std::vector<std::string>& lines, std::vector<int>& banks,
std::map<int, int> &bankstartindexmap, std::map<int, int> &bankendindexmap);

/// Parse .irf file to a map
void parseResolutionStrings(std::map<std::string, double>& parammap, const std::vector<std::string>& lines, int bankid, int startlineindex, int endlineindex);

void parseBankLine(std::string line, double& cwl, int& bankid);

/// Generate output workspace
DataObjects::TableWorkspace_sptr genTableWorkspace(std::map<std::string, double> parammap);

};


} // namespace DataHandling
} // namespace Mantid

#endif /* MANTID_DATAHANDLING_LOADFULLPROFRESOLUTION_H_ */

0 comments on commit 5258221

Please sign in to comment.