File: select_complement.c

package info (click to toggle)
garlic 1.5-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,324 kB
  • ctags: 1,378
  • sloc: ansic: 50,306; makefile: 1,088
file content (120 lines) | stat: -rw-r--r-- 3,174 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
/* Copyright (C) 2000-2002 Damir Zucic */

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

				select_complement.c

Purpose:
	Select the complement - atoms which were not selected  previously
	will be selected,  atoms which were selected  will be unselected.

Input:
	(1) Pointer to MolComplexS structure, with macromol. complexes.
	(2) Number of macromolecular complexes.
	(3) Selection mode index (0 = overwrite, 1 = restrict, 2 = expand
	    previous selection).

Output:
	(1) The flag  selectedF set to zero for atoms which were selected
	    before and to one for atoms which were not selected.  This is
	    done for every caught macromolecular complex.
	(2) Return value.

Return value:
	(1) The number of selected atoms (zero or positive value).

Notes:
	(1) Indentation is exceptionally four spaces.

	(2) The position_changedF is updated,  because some atoms may not
	    have the proper color.

========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"

/*======select complement:===================================================*/

long SelectComplement_ (MolComplexS *mol_complexSP, int mol_complexesN,
			int selection_modeI)
{
long		selected_atomsN = 0;
int		mol_complexI;
MolComplexS	*curr_mol_complexSP;
size_t		atomsN, atomI;
AtomS		*curr_atomSP;
int		previousF, newF;

/* Check 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;

	/** Check the current selectF value: **/
	previousF = curr_atomSP->selectedF;

	/** Prepare the new selectF value: **/
	if (previousF == 0) newF = 1;
	else newF = 0;

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

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

	    /*** Expand the previous selection: ***/
	    case 2:
		curr_atomSP->selectedF |= newF;
		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 (some atoms may have bad color): **/
    curr_mol_complexSP->position_changedF = 1;
    }

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

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