File: extract_h.c

package info (click to toggle)
garlic 1.4-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,192 kB
  • ctags: 1,368
  • sloc: ansic: 49,603; makefile: 1,079
file content (75 lines) | stat: -rw-r--r-- 1,846 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* Copyright (C) 2001 Damir Zucic */

/*=============================================================================

				extract_c.c

Purpose:
	Extract coordinates of the H atom for a given residue.

Input:
	(1) Pointer to VectorS structure,  where H coord. will be stored.
	(2) Pointer to AtomS structure,  pointing to the first element of
	    the atomic array.
	(3) Index of the first atom of a given residue.
	(4) Index of the last atom of a given residue.

Output:
	(1) VectorS structure filled with data.
	(2) Return value.

Return value:
	(1) The number of  successfully extracted vectors  (zero or one).

Notes:
	(1) Some files contain more than one entry for some atoms. Garlic
	    uses only the first entry and  discards other entries for the
	    same atom.

========includes:============================================================*/

#include <stdio.h>

#include <string.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>

#include "defines.h"
#include "typedefs.h"

/*======extract H coordinates:===============================================*/

int ExtractH_ (VectorS *H_vectorSP,
	       AtomS *atomSP, size_t atom_startI, size_t atom_endI)
{
int		vectors_extractedN = 0;
size_t		atomI;
AtomS		*curr_atomSP;

/* Scan the given residue: */
for (atomI = atom_startI; atomI <= atom_endI; atomI++)
	{
	/* Pointer to the current atom: */
	curr_atomSP = atomSP + atomI;

	/* H: */
	if (strcmp (curr_atomSP->raw_atomS.pure_atom_nameA, "H") == 0)
		{
		H_vectorSP->x = curr_atomSP->raw_atomS.x[0];
		H_vectorSP->y = curr_atomSP->raw_atomS.y;
		H_vectorSP->z = curr_atomSP->raw_atomS.z[0];
		vectors_extractedN++;
		break;
		}
	}

/* Return the number of extracted vectors: */
return vectors_extractedN;
}

/*===========================================================================*/