8#ifndef MUC_CALIB_CONST_H
9#define MUC_CALIB_CONST_H
15static const double DEFAULT_EFF = 0.95;
16static const double DEFAULT_NOS = 0.01;
17static const double DEFAULT_ClST = 5;
19static const double LIMIT_CUT = 0.000001;
21static const int CLST_CUT = 1;
22static const int CLST_MAX = 10;
24static const double DEFAULT_CLST_PRO[CLST_MAX] = {0.80701, 0.97357, 0.99515, 0.99822, 0.99876, 0.99894, 0.99905, 0.99913, 0.99920, 0.99926};
27static const int PART_MAX = 3;
28static const int SEGMENT_MAX = 8;
29static const int LAYER_MAX = 9;
30static const int BOX_MAX = 136;
31static const int STRIP_MAX = 9152;
32static const int STRIP_INBOX_MAX= 112;
34static const int BOX_PER_PART[PART_MAX] = {32, 72, 32};
35static const int BOX_PER_SEG[PART_MAX] = {8, 9, 8};
36static const int BOX_SUM[PART_MAX] = {32, 104, 136};
38static const int STR_PER_PART[3] = { 2048, 5056, 2048 };
39static const int B_STR_PER_SEG[2] = { 624, 688 };
40static const int STR_SUM[3] = { 2048, 7104, 9152 };
42static const int EEID = 0;
43static const int BRID = 1;
44static const int EWID = 2;
45static const int XSTR = 0;
46static const int YSTR = 1;
47static const int ZSTR = 2;
48static const int PHISTR = 3;
51static const int E_SEG_NUM = 4;
52static const int E_LAY_NUM = 8;
53static const int E_STR_NUM = 64;
56static const int B_SEG_NUM = 8;
57static const int B_LAY_NUM = 9;
58static const int B_TOP = 2;
60static const int B_ZSTR_NUM = 48;
61static const int B_PHISTR_NUM = 96;
62static const int B_TOPSTR_NUM = 112;