Skip to content
Snippets Groups Projects
Commit ec591236 authored by Zhou, Wenduo's avatar Zhou, Wenduo
Browse files

Checkpointing work. Refs #7336.

parent 0d8b6d62
No related branches found
No related tags found
No related merge requests found
...@@ -76,6 +76,10 @@ namespace Mantid ...@@ -76,6 +76,10 @@ namespace Mantid
void exec(); void exec();
void loadCalFile(const std::string &calFileName); void loadCalFile(const std::string &calFileName);
void rebin(API::MatrixWorkspace_sptr matrixws); void rebin(API::MatrixWorkspace_sptr matrixws);
API::MatrixWorkspace_sptr conjoinWorkspaces(API::MatrixWorkspace_sptr ws1, API::MatrixWorkspace_sptr ws2,
size_t offset);
API::MatrixWorkspace_sptr m_inputW; API::MatrixWorkspace_sptr m_inputW;
API::MatrixWorkspace_sptr m_outputW; API::MatrixWorkspace_sptr m_outputW;
DataObjects::EventWorkspace_sptr m_inputEW; DataObjects::EventWorkspace_sptr m_inputEW;
...@@ -110,6 +114,8 @@ namespace Mantid ...@@ -110,6 +114,8 @@ namespace Mantid
DataObjects::EventWorkspace_sptr m_lowResEW; DataObjects::EventWorkspace_sptr m_lowResEW;
/// Flag to process low resolution workspace /// Flag to process low resolution workspace
bool m_processLowResTOF; bool m_processLowResTOF;
/// Offset to low resolution TOF spectra
size_t m_lowResSpecOffset;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment