ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/xyz2pov/src/atom_parser.h
Revision: 61
Committed: Thu Aug 1 21:12:33 2002 UTC (21 years, 11 months ago) by mmeineke
Content type: text/plain
File size: 492 byte(s)
Log Message:
This commit was generated by cvs2svn to compensate for changes in r60, which
included commits to RCS files with non-trunk default branches.

File Contents

# User Rev Content
1 mmeineke 60 #ifndef _ATOM_PARSER_
2     #define _ATOM_PARSER_
3    
4     struct atom {
5     char name[30];
6     double vanDerWallRadii;
7     double covalentRadii;
8     int red;
9     int green;
10     int blue;
11     };
12    
13     struct linked_atom {
14     struct atom myAtom;
15     struct linked_atom *next;
16     };
17    
18    
19     extern void initializeParser(void);
20    
21     extern void update_types(char *);
22    
23     extern struct linked_atom *get_type_list(void);
24    
25     extern void clean_type_list(void);
26    
27     extern int findAtomType(char *, struct atom *);
28    
29     extern int get_n_inUse(void);
30    
31    
32     #endif