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
a7235eec
Commit
a7235eec
authored
3 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
rename members
parent
7c9424fc
No related branches found
No related tags found
1 merge request
!183
new base class ITerm
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Core/Term/DWBATerm.cpp
+9
-9
9 additions, 9 deletions
Core/Term/DWBATerm.cpp
Core/Term/DWBATerm.h
+3
-3
3 additions, 3 deletions
Core/Term/DWBATerm.h
with
12 additions
and
12 deletions
Core/Term/DWBATerm.cpp
+
9
−
9
View file @
a7235eec
...
...
@@ -42,9 +42,9 @@ makeLayoutComputation(const std::vector<ProcessedLayout>& layouts, const Simulat
DWBATerm
::
DWBATerm
(
const
ProcessedSample
&
sample
,
const
SimulationOptions
&
options
,
bool
forcePolarized
)
:
m_fresnel_map
(
sample
.
fresnelMap
())
,
m_spec
_comp
(
options
.
includeSpecular
()
?
new
GISASSpecularContribution
()
:
nullptr
)
,
m_roughness_co
mp
(
sample
.
hasRoughness
()
?
new
RoughMultiLayerContribution
(
&
sample
)
:
nullptr
)
,
m_layout_co
mp
s
(
makeLayoutComputation
(
sample
.
layouts
(),
options
,
,
m_spec
ular_contrib
(
options
.
includeSpecular
()
?
new
GISASSpecularContribution
()
:
nullptr
)
,
m_roughness_co
ntrib
(
sample
.
hasRoughness
()
?
new
RoughMultiLayerContribution
(
&
sample
)
:
nullptr
)
,
m_layout_co
ntrib
s
(
makeLayoutComputation
(
sample
.
layouts
(),
options
,
sample
.
containsMagneticMaterial
()
||
forcePolarized
))
{
}
...
...
@@ -55,14 +55,14 @@ void DWBATerm::computeTerm(DiffuseElement& ele) const
{
ele
.
setFresnelMap
(
m_fresnel_map
);
for
(
auto
&
layout_comp
:
m_layout_co
mp
s
)
layout_comp
->
compute
(
ele
);
for
(
auto
&
contrib
:
m_layout_co
ntrib
s
)
contrib
->
compute
(
ele
);
if
(
m_roughness_co
mp
)
m_roughness_co
mp
->
compute
(
ele
);
if
(
m_roughness_co
ntrib
)
m_roughness_co
ntrib
->
compute
(
ele
);
if
(
m_spec
_comp
)
m_spec
_comp
->
compute
(
ele
);
if
(
m_spec
ular_contrib
)
m_spec
ular_contrib
->
compute
(
ele
);
stepProgress
();
}
This diff is collapsed.
Click to expand it.
Core/Term/DWBATerm.h
+
3
−
3
View file @
a7235eec
...
...
@@ -45,9 +45,9 @@ public:
private:
const
IFresnelMap
*
const
m_fresnel_map
;
const
std
::
unique_ptr
<
const
GISASSpecularContribution
>
m_spec
_comp
;
const
std
::
unique_ptr
<
const
RoughMultiLayerContribution
>
m_roughness_co
mp
;
const
std
::
vector
<
std
::
unique_ptr
<
const
ParticleLayoutContribution
>>
m_layout_co
mp
s
;
const
std
::
unique_ptr
<
const
GISASSpecularContribution
>
m_spec
ular_contrib
;
const
std
::
unique_ptr
<
const
RoughMultiLayerContribution
>
m_roughness_co
ntrib
;
const
std
::
vector
<
std
::
unique_ptr
<
const
ParticleLayoutContribution
>>
m_layout_co
ntrib
s
;
};
#endif // BORNAGAIN_CORE_TERM_DWBATERM_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