-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_atomic_data.h
More file actions
39 lines (33 loc) · 1.42 KB
/
_atomic_data.h
File metadata and controls
39 lines (33 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!! This file has been autogenerated, modify atomicgen.py !!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
*/
/// /file atomic_nuclear_data.h
/// /author Andrew Davis (andrew.davis@wisc.edu)
///
/// /brief Implements all the fundamental atomic & nuclear data data
#include <map>
namespace pyne
{
/// main function to be called when you wish to load the nuclide data
/// into memory
void _load_atomic_mass_map_memory();
/// function to create mapping from nuclides in id form
/// to their atomic masses
void _insert_atomic_mass_map();
/// function to create mapping from nuclides in id form
/// to their natural abundances
void _insert_abund_map();
/// Mapping from nuclides in id form to their natural abundances
extern std::map<int,double> natural_abund_map;
/// Mapping from nuclides in id form to their atomic masses.
extern std::map<int,double> atomic_mass_map;
/// Mapping from nuclides in id form to the associated error in
/// abdundance
extern std::map<int,double> atomic_mass_error_map;
} // namespace pyne