FEDRA emulsion software from the OPERA Collaboration
MarkMap.h
Go to the documentation of this file.
1#ifndef _SYSAL_MARK_MAP_
2#define _SYSAL_MARK_MAP_
3
4#define MARK_STATUS_NOTSEARCHED 0
5#define MARK_STATUS_FOUND 1
6#define MARK_STATUS_NOTFOUND -1
7
8#pragma pack(push)
9#pragma pack(1)
10
11typedef struct
12{
13 unsigned Id;
14 struct t_Pos
15 {
16 float X, Y;
17 } Nominal, Stage;
18 int Status;
19 } Mark;
20
21typedef struct
22{
23 unsigned Count;
25 } MarkMap;
26
27#pragma pack(pop)
28
29#endif
Double_t Y
Definition: tlg2couples.C:76
Definition: MarkMap.h:22
unsigned Count
Definition: MarkMap.h:23
Mark * pMarks
Definition: MarkMap.h:24
Definition: MarkMap.h:15
float X
Definition: MarkMap.h:16
Definition: MarkMap.h:12
int Status
Definition: MarkMap.h:18
unsigned Id
Definition: MarkMap.h:13