1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-22 18:28:51 -05:00
catima/abundance_database.h
2018-04-23 01:39:10 +02:00

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