File: suitename.h

package info (click to toggle)
suitename 0.3.070919%2Bgit20180613.ebb1325-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 276 kB
  • sloc: ansic: 2,514; makefile: 28; python: 14
file content (80 lines) | stat: -rw-r--r-- 2,178 bytes parent folder | download | duplicates (2)
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
/*                       suitename.h                           */
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <ctype.h>

#define MAXBINS 14  /*1--12 named bins, bin 0 triaged, bin 13 incomplete*/
#define MAXCLST 16  /*practical, <observed, limit of clusters in a bin*/
         /*clst indexed from 1: bin 33p had 10, index to 11, as of 070428 */

/*  main defines EXTERN as nothing ( "" ), so really does the declarations */
/* if EXTERN not defined, then it is defined as "extern"  so only referenced*/

#ifdef  EXTERN
#undef  EXTERN
#define EXTERN   /*no prefix, so do definition */
#else
#undef  EXTERN
#define EXTERN extern  /*extern prefix so just declaration*/
#endif


#define EOLO "\n" /*for UNIX_X11 */
#define CRLF "\n" /*for UNIX_X11 */

EXTERN int Ltest;

EXTERN FILE  *fpin,*fpout; /*070210 input stdin, output stdout*/
EXTERN char  version[256];
EXTERN int   LatEOF;
EXTERN int   Lhitend;
EXTERN int   itext;
EXTERN char  texts[256];

typedef struct suitestruct {
   char  ptID[256];
   char  basechr[2];  /*070412*/
   float chim;
   float deltam;
   float epsilon;
   float zeta;
   float alpha;
   float beta;
   float gamma;
   float delta;
   float chi;
   float ang[9]; /*8 to allow count from 1, */
                 /*9 to save chi-1, chi OR theta, eta angles 070524*/
   /*stores as names for readability, and indexed for computations*/
}suitestruct;
EXTERN struct suitestruct* suiteptr;

typedef struct residuestruct { 
   char  ptID[10][32];
   char  basechr[2];  /*070412*/
   float alpha;
   float beta;
   float gamma;
   float delta;
   float epsilon;
   float zeta;
}residuestruct;
EXTERN residuestruct* residueptr;
EXTERN residuestruct* newresidueptr;
EXTERN residuestruct* oldresidueptr;

EXTERN float matches[MAXBINS][MAXCLST];
    /*incl 1--12 named bins, # defined clsters070429*/

EXTERN float coordw[8];     /*general weightings*/
EXTERN float dominantw[8];  /*weights of dominant next to a satellite*/
EXTERN float satellitew[8]; /*weights of satellite next to a dominant*/

/*prototypes*/
/*main(int argc, char** argv)*/
int   evaluatesuite(void);
void  membership(int);
void  clearmatches(void);