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
da60bab5
Commit
da60bab5
authored
1 year ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
Revert "ditto for projections"
This reverts commit
0c51e391
.
parent
2dedd203
No related branches found
No related tags found
1 merge request
!2428
Revert big refactoring of the last four days; to be redone more systematically
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GUI/Model/Data/Data2DItem.cpp
+5
-4
5 additions, 4 deletions
GUI/Model/Data/Data2DItem.cpp
GUI/Model/Data/Data2DItem.h
+2
-2
2 additions, 2 deletions
GUI/Model/Data/Data2DItem.h
with
7 additions
and
6 deletions
GUI/Model/Data/Data2DItem.cpp
+
5
−
4
View file @
da60bab5
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
#include
"Device/Mask/MaskStack.h"
#include
"Device/Mask/MaskStack.h"
#include
"GUI/Model/Axis/AmplitudeAxisItem.h"
#include
"GUI/Model/Axis/AmplitudeAxisItem.h"
#include
"GUI/Model/Axis/BasicAxisItem.h"
#include
"GUI/Model/Axis/BasicAxisItem.h"
#include
"GUI/Model/Mask/MasksQModel.h"
#include
"GUI/Model/Mask/MasksSet.h"
#include
"GUI/Model/Mask/MasksSet.h"
#include
"GUI/Support/Data/ComboProperty.h"
#include
"GUI/Support/Data/ComboProperty.h"
#include
"GUI/Support/Style/QCP_Util.h"
#include
"GUI/Support/Style/QCP_Util.h"
...
@@ -365,18 +366,18 @@ Datafield* Data2DItem::createMaskedField() const
...
@@ -365,18 +366,18 @@ Datafield* Data2DItem::createMaskedField() const
MasksSet
*
Data2DItem
::
projectionsSet
()
MasksSet
*
Data2DItem
::
projectionsSet
()
{
{
return
m_proj_model
.
get
()
;
return
m_proj_model
?
m_proj_model
->
set
()
:
nullptr
;
}
}
const
MasksSet
*
Data2DItem
::
projectionsSet
()
const
const
MasksSet
*
Data2DItem
::
projectionsSet
()
const
{
{
return
m_proj_model
.
get
()
;
return
m_proj_model
?
m_proj_model
->
set
()
:
nullptr
;
}
}
Masks
Set
*
Data2DItem
::
getOrCreateProjectionModel
()
Masks
QModel
*
Data2DItem
::
getOrCreateProjectionModel
()
{
{
if
(
!
m_proj_model
)
if
(
!
m_proj_model
)
m_proj_model
=
std
::
make_unique
<
MasksSet
>
(
);
m_proj_model
=
std
::
make_unique
<
MasksQModel
>
(
new
MasksSet
);
return
m_proj_model
.
get
();
return
m_proj_model
.
get
();
}
}
This diff is collapsed.
Click to expand it.
GUI/Model/Data/Data2DItem.h
+
2
−
2
View file @
da60bab5
...
@@ -83,7 +83,7 @@ public:
...
@@ -83,7 +83,7 @@ public:
MasksSet
*
projectionsSet
();
MasksSet
*
projectionsSet
();
const
MasksSet
*
projectionsSet
()
const
;
const
MasksSet
*
projectionsSet
()
const
;
Masks
Set
*
getOrCreateProjectionModel
();
Masks
QModel
*
getOrCreateProjectionModel
();
size_t
rank
()
const
override
{
return
2
;
}
size_t
rank
()
const
override
{
return
2
;
}
//! Returns dimensions and axesbins of data
//! Returns dimensions and axesbins of data
...
@@ -115,7 +115,7 @@ private:
...
@@ -115,7 +115,7 @@ private:
std
::
unique_ptr
<
ComboProperty
>
m_gradient
;
std
::
unique_ptr
<
ComboProperty
>
m_gradient
;
std
::
unique_ptr
<
AmplitudeAxisItem
>
m_z_axis
;
std
::
unique_ptr
<
AmplitudeAxisItem
>
m_z_axis
;
std
::
unique_ptr
<
MasksSet
>
m_model
;
std
::
unique_ptr
<
MasksSet
>
m_model
;
std
::
unique_ptr
<
Masks
Set
>
m_proj_model
;
std
::
unique_ptr
<
Masks
QModel
>
m_proj_model
;
};
};
#endif // BORNAGAIN_GUI_MODEL_DATA_DATA2DITEM_H
#endif // BORNAGAIN_GUI_MODEL_DATA_DATA2DITEM_H
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