BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /**************************************************************************** 00002 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00003 The BioBhasha : The Biologist's Programming Language 00004 Version 1.0 (19th December 2001) 00005 Prasad, B.V.L.S. 00006 Contact: burrashiva@yahoo.com 00007 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00008 *****************************************************************************/ 00009 #ifndef BIOPDBCRYST1_H 00010 #define BIOPDBCRYST1_H 00011 00012 00013 using namespace std; 00014 00015 #include <string> 00016 #include <fstream> 00017 #include <iostream> 00018 00019 00020 class BioPdbCryst1 00021 { 00022 string cryst1_; 00023 00024 public: 00025 BioPdbCryst1(const string& head_); 00026 00027 void showCryst1(ostream& = cout); 00028 00029 double getA() ; 00030 double getB() ; 00031 double getC() ; 00032 00033 double getAlpha() ; 00034 double getBeta() ; 00035 double getGamma() ; 00036 00037 string getSpaceGroup() ; 00038 00039 int getZ() ; 00040 }; 00041 00042 00043 #endif