File: extract_cdxe.c

package info (click to toggle)
garlic 1.6-1.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 4,440 kB
  • ctags: 1,403
  • sloc: ansic: 52,465; makefile: 1,134
file content (97 lines) | stat: -rw-r--r-- 2,535 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* Copyright (C) 2001, 2002 Damir Zucic */

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

				extract_cdxe.c

Purpose:
	Extract CD and XE coordinates for a given residue.  The symbol XE
        stands for NE in ARG and for CE in LYS. This function is not able
	to handle non-standard residues.

Input:
	(1) Pointer to VectorS structure, for CD coordinates.
	(2) Pointer to VectorS structure, for XE coordinates.
	(3) Pointer to AtomS structure,  pointing to the first element of
	    the atomic array.
	(4) Index of the first atom of a given residue.
	(5) Index of the last atom of a given residue.

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

Return value:
	(1) The number of successfully extracted vectors  (at least zero,
	    at most two).

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 CD and XE coordinates:=======================================*/

int ExtractCDXE_ (VectorS  *CD_vectorSP, VectorS *XE_vectorSP,
		  AtomS *atomSP, size_t atom_startI, size_t atom_endI)
{
int		vectors_extractedN = 0;
size_t		atomI;
AtomS		*curr_atomSP;
char		*atom_nameP;
int		CD_foundF = 0, XE_foundF = 0;

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

	/* Pointer to the purified atom name: */
	atom_nameP = curr_atomSP->raw_atomS.pure_atom_nameA;

	/* CD: */
	if (strcmp (atom_nameP, "CD") == 0)
		{
		if (CD_foundF) continue;
		CD_vectorSP->x = curr_atomSP->raw_atomS.x[0];
		CD_vectorSP->y = curr_atomSP->raw_atomS.y;
		CD_vectorSP->z = curr_atomSP->raw_atomS.z[0];
		vectors_extractedN++;
		CD_foundF = 1;
		}

	/* XE: */
	else if ((strcmp (atom_nameP, "NE") == 0) ||
		 (strcmp (atom_nameP, "CE") == 0))
		{
		if (XE_foundF) continue;
		XE_vectorSP->x = curr_atomSP->raw_atomS.x[0];
		XE_vectorSP->y = curr_atomSP->raw_atomS.y;
		XE_vectorSP->z = curr_atomSP->raw_atomS.z[0];
		vectors_extractedN++;
		XE_foundF = 1;
		}
	}

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

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