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
810f8353
Commit
810f8353
authored
4 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
Core: Add Doxygen comments and TODO notes to create*Lattice functions
parent
9938bba0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Core/Lattice/Lattice.h
+7
-0
7 additions, 0 deletions
Core/Lattice/Lattice.h
with
7 additions
and
0 deletions
Core/Lattice/Lattice.h
+
7
−
0
View file @
810f8353
...
...
@@ -75,16 +75,23 @@ public:
//! Sets a selection rule for the reciprocal vectors
void
setSelectionRule
(
const
ISelectionRule
&
p_selection_rule
);
//! Returns a primitive cubic (cP) lattice with edge length a.
static
Lattice
createCubicLattice
(
double
a
);
//! Returns a face-centered cubic (cF) lattice with edge length a.
static
Lattice
createFCCLattice
(
double
a
);
//! Returns a primitive hexagonal (hP) lattice with hexagonal edge a and height c.
static
Lattice
createHexagonalLattice
(
double
a
,
double
c
);
//! TODO: Clarify how this is meant: HCP is not a Bravais lattice.
static
Lattice
createHCPLattice
(
double
a
,
double
c
);
//! Returns a primitive tetragonal (tP) lattice with square base edge a and height c.
static
Lattice
createTetragonalLattice
(
double
a
,
double
c
);
//! Returns a body-centered cubic (cI) lattice with edge length a.
//! TODO: Clarify meaning of c
static
Lattice
createBCTLattice
(
double
a
,
double
c
);
void
onChange
()
override
;
...
...
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