XIAEventBuilder/mapping.h

33 lines
1.4 KiB
C
Raw Normal View History

2021-12-14 10:35:05 -05:00
/************************************
Clover : 0 - 99
BGO : 100 - 199
Other : 200 - 299
* *********************************/
2022-01-13 18:23:41 -05:00
#ifndef MAPPING
#define MAPPING
2021-12-14 10:35:05 -05:00
//==================== mapping
#define NCLOVER 9
#define NCRYSTAL NCLOVER*4
#define NBGO NCLOVER
2021-12-15 18:44:12 -05:00
#define NOTHER 52
// 0 1 2 3 4 5 6 7 8 9
int mapping[130] ={ 0, 1, 2, 3, 100, 4, 5, 6, 7, 101, // 0
8, 9, 10, 11, 102, -1, 12, 13, 14, 15, // 10
103, 16, 17, 18, 19, 104, -1, -1, -1, -1, // 20
-1, -1, 20, 21, 22, 23, 105, 24, 25, 26, // 30
27, 106, 28, 29, 30, 31, 107, -1, -1, -1, // 40
-1, -1, -1, 32, 33, 34, 35, 108, -1, -1, // 50
200, 201, 202, 203, 204, 205, 206, 207, 208, 209, // 60
210, 211, 212, 213, 214, 215, 216, 217, 218, 219, // 70
220, 221, 222, 223, 224, 225, 226, 227, 228, 229, // 80
230, 231, 232, 233, 234, 235, 236, 237, 238, 239, // 90
240, 241, 242, 243, 244, 245, 246, 247, 248, 249, // 100
250, 251, -1, -1, -1, -1, -1, -1, -1, -1, // 110
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1}; // 120
2021-12-14 10:35:05 -05:00
2022-01-13 18:23:41 -05:00
#endif