Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
e71e69ec
Commit
e71e69ec
authored
3 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
rm unused fct
parent
f0d36ec7
No related branches found
No related tags found
1 merge request
!48
Comments and simplifications in loader context
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GUI/coregui/Views/ImportDataWidgets/ImportDataUtils.cpp
+4
-21
4 additions, 21 deletions
GUI/coregui/Views/ImportDataWidgets/ImportDataUtils.cpp
GUI/coregui/Views/ImportDataWidgets/ImportDataUtils.h
+0
-3
0 additions, 3 deletions
GUI/coregui/Views/ImportDataWidgets/ImportDataUtils.h
with
4 additions
and
24 deletions
GUI/coregui/Views/ImportDataWidgets/ImportDataUtils.cpp
+
4
−
21
View file @
e71e69ec
...
...
@@ -49,16 +49,16 @@ int rank(const InstrumentItem& item)
return
static_cast
<
int
>
(
item
.
shape
().
size
());
}
std
::
unique_ptr
<
OutputData
<
double
>>
ImportDataUtils
::
ImportKnownData
(
const
QString
&
fileName
,
IntensityDataIOFactory
::
LoaderSelector
loader
)
std
::
unique_ptr
<
OutputData
<
double
>>
ImportKnownData
(
const
QString
&
fileName
,
IntensityDataIOFactory
::
LoaderSelector
loader
=
IntensityDataIOFactory
::
automatic
)
{
// Try to use the canonical tools for importing data
std
::
unique_ptr
<
OutputData
<
double
>>
result
;
try
{
std
::
unique_ptr
<
OutputData
<
double
>>
data
(
IntensityDataIOFactory
::
readOutputData
(
fileName
.
toStdString
(),
loader
));
result
=
CreateSimplifiedOutputData
(
*
data
);
result
=
ImportDataUtils
::
CreateSimplifiedOutputData
(
*
data
);
}
catch
(
std
::
exception
&
ex
)
{
QString
message
=
QString
(
"Error while trying to read file
\n\n
'%1'
\n\n
%2"
)
.
arg
(
fileName
)
...
...
@@ -71,23 +71,6 @@ ImportDataUtils::ImportKnownData(const QString& fileName,
}
// namespace
std
::
unique_ptr
<
OutputData
<
double
>>
ImportDataUtils
::
ImportReflectometryData
(
const
QString
&
fileName
)
{
std
::
unique_ptr
<
OutputData
<
double
>>
result
;
try
{
std
::
unique_ptr
<
OutputData
<
double
>>
data
(
IntensityDataIOFactory
::
readReflectometryData
(
fileName
.
toStdString
()));
result
.
swap
(
data
);
}
catch
(
std
::
exception
&
ex
)
{
QString
message
=
QString
(
"Error while trying to read file
\n\n
'%1'
\n\n
%2"
)
.
arg
(
fileName
)
.
arg
(
QString
::
fromStdString
(
std
::
string
(
ex
.
what
())));
QMessageBox
::
warning
(
nullptr
,
"IO Problem"
,
message
);
}
return
result
;
}
std
::
unique_ptr
<
OutputData
<
double
>>
ImportDataUtils
::
Import2dData
(
const
QString
&
fileName
,
IntensityDataIOFactory
::
LoaderSelector
loader
)
...
...
This diff is collapsed.
Click to expand it.
GUI/coregui/Views/ImportDataWidgets/ImportDataUtils.h
+
0
−
3
View file @
e71e69ec
...
...
@@ -24,7 +24,6 @@
template
<
class
T
>
class
OutputData
;
class
RealDataItem
;
class
InstrumentItem
;
class
GISASInstrumentItem
;
class
AbstractDataLoader
;
//! Provides utility methods to import data files.
...
...
@@ -45,8 +44,6 @@ std::unique_ptr<OutputData<double>> Import2dData(const QString& fileName,
//! (or null if none selected).
QString
Import1dData
(
RealDataItem
*
realDataItem
,
const
AbstractDataLoader
*
selectedLoader
);
std
::
unique_ptr
<
OutputData
<
double
>>
ImportReflectometryData
(
const
QString
&
fileName
);
//! Creates OutputData with bin-valued axes.
std
::
unique_ptr
<
OutputData
<
double
>>
CreateSimplifiedOutputData
(
const
OutputData
<
double
>&
data
);
...
...
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