aboutsummaryrefslogtreecommitdiff
path: root/Source/Utils/write_atomic_data_cpp.py (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-06-09ion_map_ids: static & const access (#2010)Gravatar Axel Huebl 1-4/+5
This fixes the `ion_map_ids` atom-to-number object: - declare static, so the file can be included in multiple translation units - use `.at()`: - missing entries do not cause an insertion - missing entries will throw - access is `const`, so we can declare the whole object `static const` as well.
2021-01-20SpeciesProperties: C, N, O, Cu (#1638)Gravatar Axel Huebl 1-7/+10
* SpeciesProperties: C, N, O, Cu Add more ionic species as pre-defined particle species. * Cu: Add to Ionization Energies
2020-01-27Automatically add copyright header with update_copyright.shGravatar Tools 1-0/+7
2020-01-13fix lgtm warningsGravatar Luca Fedeli 1-1/+0
2019-09-13Ionization Energies Script: no EOLGravatar Axel Huebl 1-11/+13
Avoid writing EOL whitspaces in ionization energies script.
2019-09-11Source & Tools: No EOL WhitespacesGravatar Tools 1-1/+1
End-of-line (EOL) whitespaces are verbose and increase diffs and merge conflicts over time. Cleaned them up for the `Source/`, `Examples/` and `Tools/` directory with the following bash one-liner: ```bash find . -type f -not -path './.git*' \ -exec sed -i 's/[[:blank:]]*$//' {} \; ``` Committed as generic user so git does not credit the many lines to me: ```bash GIT_AUTHOR_NAME="Tools" GIT_AUTHOR_EMAIL="warpx@lbl.gov" \ git commit ```
2019-08-21add comments and make sure charge=q_e for ionizable speciesGravatar MaxThevenet 1-0/+6
2019-08-03add ionization table dataGravatar MaxThevenet 1-0/+67