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