00001 00002 #ifndef M_CHECK_H 00003 #define M_CHECK_H 00004 00005 /** 00006 COPYRIGHT DISCLAIMER 00007 00008 Vincent Le Guilloux, Peter Schmidtke and Pierre Tuffery, hereby 00009 disclaim all copyright interest in the program “fpocket” (which 00010 performs protein cavity detection) written by Vincent Le Guilloux and Peter 00011 Schmidtke. 00012 00013 Vincent Le Guilloux 28 November 2008 00014 Peter Schmidtke 28 November 2008 00015 Pierre Tuffery 28 November 2008 00016 00017 GNU GPL 00018 00019 This file is part of the fpocket package. 00020 00021 fpocket is free software: you can redistribute it and/or modify 00022 it under the terms of the GNU General Public License as published by 00023 the Free Software Foundation, either version 3 of the License, or 00024 (at your option) any later version. 00025 00026 fpocket is distributed in the hope that it will be useful, 00027 but WITHOUT ANY WARRANTY; without even the implied warranty of 00028 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00029 GNU General Public License for more details. 00030 00031 You should have received a copy of the GNU General Public License 00032 along with fpocket. If not, see <http://www.gnu.org/licenses/>. 00033 00034 **/ 00035 00036 00037 #include <stdlib.h> 00038 #include <stdio.h> 00039 00040 #include "fpocket.h" 00041 #include "fpout.h" 00042 #include "rpdb.h" 00043 #include "atom.h" 00044 #include "fparams.h" 00045 00046 int check_qhull(void) ; 00047 int check_fparams(void) ; 00048 int check_fpocket (void ); 00049 int check_is_valid_element(void) ; 00050 int check_pdb_reader(void) ; 00051 void load_pdb_line(s_atm *atom, char *line) ; 00052 void test_pdb_line( char test_case[], const char entry[], int id, const char name[], 00053 char aloc, char chain, int resid, char insert, 00054 float x, float y, float z, float occ, float bfactor, 00055 const char symbol[], int charge, int N) ; 00056 00057 #endif /* _CHECK_H */ 00058