00001 /*************************************************************************** 00002 pTable.h - description 00003 ------------------- 00004 copyright : (C) 2004 by Shaji Chempath 00005 University of California Berkeley 00006 ***************************************************************************/ 00007 00008 /*************************************************************************** 00009 * * 00010 * This program is free software; you can redistribute it and/or modify * 00011 * it under the terms of the GNU General Public License as published by * 00012 * the Free Software Foundation; either version 2 of the License, or * 00013 * (at your option) any later version. * 00014 * * 00015 ***************************************************************************/ 00016 00017 #ifndef PTABLE_H 00018 #define PTABLE_H 00019 00020 #include <string> 00021 #include <iostream> 00022 #include <cctype> 00023 #include <vector> 00024 #include <cstdlib> 00025 00026 00027 using namespace std; 00028 00029 namespace PTable 00030 { 00031 int atom_number(string &aName); 00032 00033 string atom_name(int aNumber); 00034 00035 double atom_mass(int aNumber); 00036 } 00037 #endif 00038