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
Merge requests
!938
Simplifications in histogram context
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Simplifications in histogram context
pf7
into
main
Overview
0
Commits
64
Pipelines
10
Changes
63
Merged
Wuttke, Joachim
requested to merge
pf7
into
main
2 years ago
Overview
0
Commits
64
Pipelines
10
Changes
3
Expand
0
0
Merge request reports
Compare
version 1
version 9
5b01da01
2 years ago
version 8
e8a1fd62
2 years ago
version 7
3fb3a8ad
2 years ago
version 6
d39920c9
2 years ago
version 5
fd436454
2 years ago
version 4
b730be3f
2 years ago
version 3
a2cc75af
2 years ago
version 2
4b2c80a5
2 years ago
version 1
1d7ad9c5
2 years ago
main (base)
and
version 2
latest version
a8c2ea0a
64 commits,
2 years ago
version 9
5b01da01
64 commits,
2 years ago
version 8
e8a1fd62
63 commits,
2 years ago
version 7
3fb3a8ad
57 commits,
2 years ago
version 6
d39920c9
55 commits,
2 years ago
version 5
fd436454
51 commits,
2 years ago
version 4
b730be3f
45 commits,
2 years ago
version 3
a2cc75af
42 commits,
2 years ago
version 2
4b2c80a5
29 commits,
2 years ago
version 1
1d7ad9c5
27 commits,
2 years ago
Show latest version
3 files
+
3
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
Resample/Processed/ReLayout.cpp
+
2
−
3
Options
@@ -25,11 +25,10 @@ namespace {
// class implementation
// ************************************************************************************************
reLayout
::
reLayout
(
bool
polarized
,
double
surface_density
,
reLayout
::
reLayout
(
bool
/*
polarized
*/
,
double
surface_density
,
std
::
vector
<
std
::
unique_ptr
<
const
CoherentFFSum
>>&&
formfactors
,
const
IInterference
*
iff
,
std
::
map
<
size_t
,
Admixtures
>&&
slice2admixtures
)
:
m_polarized
(
polarized
)
,
m_surface_density
(
surface_density
)
:
m_surface_density
(
surface_density
)
,
m_formfactors
(
std
::
move
(
formfactors
))
,
m_iff
(
iff
)
,
m_slice2admixtures
(
std
::
move
(
slice2admixtures
))
Loading