mirror of
https://github.com/gwm17/catima.git
synced 2024-11-23 02:38:51 -05:00
13 lines
266 B
C
13 lines
266 B
C
|
#ifndef ABUNDANCE_DATABASE
|
||
|
#define ABUNDANCE_DATABASE
|
||
|
#include <utility>
|
||
|
|
||
|
namespace abundance{
|
||
|
int get_isotopes_num(int z);
|
||
|
int get_isotope_a(int z, int i);
|
||
|
float get_abundance(int z, int i);
|
||
|
std::pair<int,float> get_isotope(int z, int i);
|
||
|
}
|
||
|
|
||
|
#endif
|