source: tags/ms_ra2q1/MULTI_PROBE/mpdefs.h

Last change on this file was 16766, checked in by westram, 6 years ago
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
Line 
1// =============================================================== //
2//                                                                 //
3//   File      : mpdefs.h                                          //
4//   Purpose   :                                                   //
5//                                                                 //
6//   Institute of Microbiology (Technical University Munich)       //
7//   http://www.arb-home.de/                                       //
8//                                                                 //
9// =============================================================== //
10
11#ifndef MPDEFS_H
12#define MPDEFS_H
13
14#include <PT_com.h>
15
16#define SEPARATOR "#"
17
18#define NON_WEIGHTED 0
19
20enum {
21    MP_NO_PROBE = 0,
22    MP_PROBE1   = 1,
23    MP_PROBE2   = 2,
24    MP_PROBE3   = 4,
25    MP_PROBE4   = 8,
26    MP_PROBE5   = 16,
27    MP_PROBE6   = 32,
28    MP_PROBE7   = 64,
29    MP_PROBE8   = 128
30};
31
32class Bakt_Info;
33class Hit;
34class Sonde;
35class MO_Liste;
36class Sondentopf;
37
38struct MO_Mismatch {
39    long   nummer;
40    double mismatch;
41};
42
43
44struct MP_list_elem {
45    void         *elem;
46    MP_list_elem *next;
47};
48
49extern struct mp_gl_struct {
50    aisc_com  *link;
51    T_PT_LOCS  locs;
52    T_PT_MAIN  com;
53    int        pd_design_id;
54} mp_pd_gl;
55
56#else
57#error mpdefs.h included twice
58#endif // MPDEFS_H
Note: See TracBrowser for help on using the repository browser.