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
c7f02464
Commit
c7f02464
authored
5 years ago
by
Van Herck, Walter
Browse files
Options
Downloads
Patches
Plain Diff
Add draft class for containing layout information after slicing
parent
d64a089d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Core/Computation/ProcessedLayout.cpp
+15
-0
15 additions, 0 deletions
Core/Computation/ProcessedLayout.cpp
Core/Computation/ProcessedLayout.h
+40
-0
40 additions, 0 deletions
Core/Computation/ProcessedLayout.h
with
55 additions
and
0 deletions
Core/Computation/ProcessedLayout.cpp
0 → 100644
+
15
−
0
View file @
c7f02464
// ************************************************************************** //
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file Core/Computation/ProcessedLayout.cpp
//! @brief Implements class ProcessedLayout.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************** //
#include
"ProcessedLayout.h"
This diff is collapsed.
Click to expand it.
Core/Computation/ProcessedLayout.h
0 → 100644
+
40
−
0
View file @
c7f02464
// ************************************************************************** //
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file Core/Computation/ProcessedLayout.h
//! @brief Defines class ProcessedLayout.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************** //
#ifndef PROCESSEDLAYOUT_H
#define PROCESSEDLAYOUT_H
#include
<memory>
#include
<vector>
class
FormFactorCoherentSum
;
class
IInterferenceFunction
;
//! Data structure that contains preprocessed data for a single layout.
//!
//! If particles in the layout crossed the limits of the layer slices, these particles will
//! be sliced themselves.
//!
//! @ingroup algorithms_internal
class
ProcessedLayout
{
public:
private:
std
::
vector
<
FormFactorCoherentSum
>
m_formfactors
;
std
::
unique_ptr
<
IInterferenceFunction
>
mP_iff
;
};
#endif // PROCESSEDLAYOUT_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