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 BIOPDBORIGXN_H 00010 #define BIOPDBORIGXN_H 00011 00012 using namespace std; 00013 00014 #include <string> 00015 #include <vector> 00016 #include <fstream> 00017 #include <iostream> 00018 #include <cstdlib> 00019 #include <cstdio> 00020 00021 class BioPdbOrigxn 00022 { 00023 00024 vector<string>origxn_; 00025 public: 00026 BioPdbOrigxn(const string& ti_); 00027 00028 void showOrigxn(ostream& = cout); 00029 00030 int getOrigxnSize(); 00031 00032 void getOrigxnMatrix(double [3][3],double [3]); 00033 }; 00034 00035 #endif