File: select_atoms.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 (172 lines) | stat: -rw-r--r-- 4,657 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* Copyright (C) 2001-2003 Damir Zucic */

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

				select_atoms.c

Purpose:
	Try to interpret the selection string as the request to select one
	or more atoms.  Atomic serial numbers  are used  to specify atoms.
	Selection  modes:   0 = overwrite,  1 = restrict,  2 = expand  the
	previous selection. This function expects that the second token in
	the command line is the keyword ATOM (short version is ATO). If it
	is not found, the function will return negative value.

Input:
	(1) Pointer to MolComplexS structure, with macromol. complexes.
	(2) Number of macromolecular complexes.
	(3) Pointer to RuntimeS structure.
	(4) The selection string.
	(5) Selection mode index  (0 = overwr., 1 = restrict, 2 = expand).

Output:
	(1) The flag selectedF will be equal to one for selected atoms and
	    equal to zero for all other atoms.
	(2) Return value.

Return value:
	(1) The number of  selected atoms,  if selection  is done  in this
	    function.
	(2) Negative value on failure.

Notes:
	(1) If there are two atoms with the same serial number, both atoms
	    will be selected.

========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 "commands.h"
#include "typedefs.h"

/*======function prototypes:=================================================*/

char		*ExtractToken_ (char *, int, char *, char *);
int		ExtractSerials_ (int *, int *, char *);

/*======select atom(s) by serial number(s):==================================*/

long SelectAtoms_ (MolComplexS *mol_complexSP, int mol_complexesN,
		   RuntimeS *runtimeSP, char *stringP, int selection_modeI)
{
long		selected_atomsN = 0; 
char		*remainderP;
char		tokenA[SHORTSTRINGSIZE];
int		max;
int		n1, n2;
int		start_atomIA[MAXFIELDS], end_atomIA[MAXFIELDS];
int		rangeI = 0, rangesN;
int		mol_complexI;
MolComplexS	*curr_mol_complexSP;
size_t		atomsN, atomI;
AtomS		*curr_atomSP;
int		serial_numberF;
int		serialI;
int		startI, endI;

/* Extract the first token and check it (search for substring ATO): */
remainderP = ExtractToken_ (tokenA, STRINGSIZE, stringP, " \t\n");
if (!strstr (tokenA, "ATO")) return (long) -1;

/* Parse the list of ranges: */
max = SHORTSTRINGSIZE;
while ((remainderP = ExtractToken_ (tokenA, max, remainderP, " \t,;")) != NULL)
	{
	/* Extract serial numbers: */
	if (ExtractSerials_ (&n1, &n2, tokenA) < 0) return (long) -2;

	/* Copy serial numbers: */
	start_atomIA[rangeI] = n1;
	end_atomIA[rangeI]   = n2;

	/* Increment and check the number of ranges: */
	rangeI++;
	if (rangeI >= MAXFIELDS) break;
	}

/* Store the number of ranges: */
rangesN = rangeI;

/* Scan every macromolecular complex: */
for (mol_complexI = 0; mol_complexI < mol_complexesN; mol_complexI++)
	{
	/* Pointer to the current macromolecular complex: */
	curr_mol_complexSP = mol_complexSP + mol_complexI;

	/* Check is the current macromolecular complex caught: */
	if (curr_mol_complexSP->catchF == 0) continue;

	/* Number of atoms in a macromolecular complex: */
	atomsN = curr_mol_complexSP->atomsN;

	/* Scan all atoms in the current complex: */
	for (atomI = 0; atomI < atomsN; atomI++)
		{
		/* Pointer to the current atom: */
		curr_atomSP = curr_mol_complexSP->atomSP + atomI;

		/* Copy the serial number of the current atom: */
		serialI = curr_atomSP->raw_atomS.serialI;

		/* Reset the flag: */
		serial_numberF = 0;

		/* Scan all ranges and check the atomic serial number: */
		for (rangeI = 0; rangeI < rangesN; rangeI++)
			{
			startI = start_atomIA[rangeI];
			endI   = end_atomIA[rangeI];
			if ((serialI >= startI) && (serialI <= endI))
				{
				serial_numberF = 1;
				break;
				}
			}

		/* Set the selection flag for the current atom: */
		switch (selection_modeI)
			{
			/* Overwrite the previous selection: */
			case 0:
				curr_atomSP->selectedF = serial_numberF;
				break;

			/* Restrict the previous selection: */
			case 1:
				curr_atomSP->selectedF &= serial_numberF;
				break;

			/* Expand the previous selection: */
			case 2:
				curr_atomSP->selectedF |= serial_numberF;
				break;

			default:
				;
			}

		/* Check the selection flag; increase */
		/* the count if flag is equal to one: */
		if (curr_atomSP->selectedF) selected_atomsN++;
		}

	/* Update the position_changedF: */
	curr_mol_complexSP->position_changedF = 1;
	}

/* Return the number of selected atoms: */
return selected_atomsN;
}

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