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
81bd5e9c
Commit
81bd5e9c
authored
2 years ago
by
Mikhail Svechnikov
Browse files
Options
Downloads
Patches
Plain Diff
rm unneeded const from reference_wrapper
parent
6ae8038a
No related branches found
No related tags found
1 merge request
!1165
GUI: cleanup after previous changes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GUI/Model/Model/ParameterTreeUtils.cpp
+7
-7
7 additions, 7 deletions
GUI/Model/Model/ParameterTreeUtils.cpp
with
7 additions
and
7 deletions
GUI/Model/Model/ParameterTreeUtils.cpp
+
7
−
7
View file @
81bd5e9c
...
...
@@ -205,11 +205,11 @@ void ParameterTreeBuilder::addInterference(ParameterLabelItem* layoutLabel,
Profile2DItemCatalog
::
type
(
pdf1
)
==
Profile2DItemCatalog
::
type
(
pdf2
);
auto
*
pdf1Label
=
addLabel
<
Profile2DItemCatalog
>
(
label
,
samePdfTypes
?
"PDF1"
:
"PDF"
,
pdf1
);
for
(
const
auto
&
d
:
pdf1
->
profileProperties
())
for
(
auto
&
d
:
pdf1
->
profileProperties
())
addParameterItem
(
pdf1Label
,
d
);
auto
*
pdf2Label
=
addLabel
<
Profile2DItemCatalog
>
(
label
,
samePdfTypes
?
"PDF2"
:
"PDF"
,
pdf2
);
for
(
const
auto
&
d
:
pdf2
->
profileProperties
())
for
(
auto
&
d
:
pdf2
->
profileProperties
())
addParameterItem
(
pdf2Label
,
d
);
}
else
if
(
auto
*
itf
=
dynamic_cast
<
Interference1DLatticeItem
*>
(
interference
))
{
addParameterItem
(
label
,
itf
->
positionVariance
());
...
...
@@ -218,7 +218,7 @@ void ParameterTreeBuilder::addInterference(ParameterLabelItem* layoutLabel,
auto
*
df
=
itf
->
decayFunction
().
currentItem
();
auto
*
dfLabel
=
addLabel
<
Profile1DItemCatalog
>
(
label
,
"Decay function"
,
df
);
for
(
const
auto
&
d
:
df
->
profileProperties
())
for
(
auto
&
d
:
df
->
profileProperties
())
addParameterItem
(
dfLabel
,
d
);
}
else
if
(
auto
*
itf
=
dynamic_cast
<
Interference2DLatticeItem
*>
(
interference
))
{
addParameterItem
(
label
,
itf
->
positionVariance
());
...
...
@@ -226,7 +226,7 @@ void ParameterTreeBuilder::addInterference(ParameterLabelItem* layoutLabel,
auto
*
df
=
itf
->
decayFunction
().
currentItem
();
auto
*
dfLabel
=
addLabel
<
Profile2DItemCatalog
>
(
label
,
"Decay function"
,
df
);
for
(
const
auto
&
d
:
df
->
profileProperties
())
for
(
auto
&
d
:
df
->
profileProperties
())
addParameterItem
(
dfLabel
,
d
);
}
else
if
(
auto
*
itf
=
dynamic_cast
<
InterferenceFinite2DLatticeItem
*>
(
interference
))
{
// domainSize1 and domainSize2 are of type UInt (not matching the double approach for tuning
...
...
@@ -257,7 +257,7 @@ ParameterLabelItem* ParameterTreeBuilder::addParticle(ParameterLabelItem* parent
if
(
const
auto
*
particle
=
dynamic_cast
<
const
ParticleItem
*>
(
p
))
{
auto
*
formFactor
=
particle
->
formfactor
();
auto
*
ffLabel
=
addLabel
<
FormFactorItemCatalog
>
(
label
,
"Formfactor"
,
formFactor
);
for
(
const
auto
&
d
:
formFactor
->
geometryProperties
())
for
(
auto
&
d
:
formFactor
->
geometryProperties
())
addParameterItem
(
ffLabel
,
d
);
}
else
if
(
const
auto
*
particleComposition
=
dynamic_cast
<
const
CompoundItem
*>
(
p
))
{
for
(
auto
*
p
:
particleComposition
->
particles
())
...
...
@@ -274,7 +274,7 @@ ParameterLabelItem* ParameterTreeBuilder::addParticle(ParameterLabelItem* parent
auto
*
outerShape
=
meso
->
outerShape
().
currentItem
();
auto
*
ffLabel
=
addLabel
<
FormFactorItemCatalog
>
(
label
,
"Outer shape"
,
outerShape
);
for
(
const
auto
&
d
:
outerShape
->
geometryProperties
())
for
(
auto
&
d
:
outerShape
->
geometryProperties
())
addParameterItem
(
ffLabel
,
d
);
auto
*
l
=
addParticle
(
label
,
meso
->
basisParticle
(),
false
);
...
...
@@ -289,7 +289,7 @@ void ParameterTreeBuilder::addLattice(ParameterLabelItem* parentLabel,
{
auto
*
lattice
=
itf
->
latticeType
().
currentItem
();
auto
*
label
=
addLabel
<
Lattice2DItemCatalog
>
(
parentLabel
,
"Lattice"
,
lattice
);
for
(
const
auto
&
d
:
lattice
->
geometryValues
(
!
itf
->
xiIntegration
()))
for
(
auto
&
d
:
lattice
->
geometryValues
(
!
itf
->
xiIntegration
()))
addParameterItem
(
label
,
d
);
}
...
...
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