1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-23 02:38:51 -05:00
catima/abundance_database.h

13 lines
266 B
C
Raw Normal View History

2018-04-22 19:39:10 -04:00
#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