Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
4f56535f
Commit
4f56535f
authored
9 years ago
by
Peterson, Peter
Browse files
Options
Downloads
Patches
Plain Diff
loadChunk returns a workspace
parent
20dc4949
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Mantid/Framework/API/inc/MantidAPI/DataProcessorAlgorithm.h
+2
-2
2 additions, 2 deletions
...ntid/Framework/API/inc/MantidAPI/DataProcessorAlgorithm.h
Code/Mantid/Framework/API/src/DataProcessorAlgorithm.cpp
+1
-1
1 addition, 1 deletion
Code/Mantid/Framework/API/src/DataProcessorAlgorithm.cpp
with
3 additions
and
3 deletions
Code/Mantid/Framework/API/inc/MantidAPI/DataProcessorAlgorithm.h
+
2
−
2
View file @
4f56535f
...
...
@@ -57,8 +57,8 @@ protected:
void
setPropManagerPropName
(
const
std
::
string
&
propName
);
void
mapPropertyName
(
const
std
::
string
&
nameInProp
,
const
std
::
string
&
nameInPropManager
);
void
copyProperty
(
API
::
Algorithm_sptr
alg
,
const
std
::
string
&
name
);
ITableWorkspace_sptr
determineChunk
(
const
std
::
string
&
filename
);
v
oid
loadChunk
(
const
size_t
rowIndex
);
virtual
ITableWorkspace_sptr
determineChunk
(
const
std
::
string
&
filename
);
v
irtual
MatrixWorkspace_sptr
loadChunk
(
const
size_t
rowIndex
);
Workspace_sptr
load
(
const
std
::
string
&
inputData
,
const
bool
loadQuiet
=
false
);
std
::
vector
<
std
::
string
>
splitInput
(
const
std
::
string
&
input
);
...
...
This diff is collapsed.
Click to expand it.
Code/Mantid/Framework/API/src/DataProcessorAlgorithm.cpp
+
1
−
1
View file @
4f56535f
...
...
@@ -189,7 +189,7 @@ ITableWorkspace_sptr DataProcessorAlgorithm::determineChunk(const std::string &f
"DataProcessorAlgorithm::determineChunk is not implemented"
);
}
void
DataProcessorAlgorithm
::
loadChunk
(
const
size_t
rowIndex
)
{
MatrixWorkspace_sptr
DataProcessorAlgorithm
::
loadChunk
(
const
size_t
rowIndex
)
{
UNUSED_ARG
(
rowIndex
);
throw
std
::
runtime_error
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment