source: pcp/src/pdbformat.h@ 5a78f5

Last change on this file since 5a78f5 was 79290f, checked in by Frederik Heber <heber@…>, 17 years ago

config.h is included in each and every file. After trying to compile on JUMP (with xlc).

  • Property mode set to 100644
File size: 638 bytes
Line 
1#ifndef pdbformat_h
2#define pdbformat_h
3/** \file pdbformat.h
4 * Header file for \ref pdbformat.c
5 *
6 * Contains declarations of the functions implemented in \ref pdbformat.c
7 *
8 Project: ParallelCarParrinello
9 \author Marcel Arndt
10 2000
11
12 File: pdbformat.h
13 $Id: pdbformat.h,v 1.7 2006/03/30 22:19:51 foo Exp $
14*/
15
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20int WritePDBLine(FILE *f, unsigned id, const char* atomname, const char* residuename,
21 unsigned residuenr, double x, double y, double z,
22 double occupancy, double tempfact, const char* segid,
23 const char* elementsymbol, const char* charge);
24
25
26#endif
27
28
29
Note: See TracBrowser for help on using the repository browser.