##// END OF EJS Templates
remove duplicated constants
paul -
r66:5dfc0745a617 R3++
parent child
Show More
@@ -1,111 +1,108
1 1 #ifndef FSW_PARAMS_PROCESSING_H
2 2 #define FSW_PARAMS_PROCESSING_H
3 3
4 4 #define CHANNELF0 0
5 5 #define CHANNELF1 1
6 6 #define CHANNELF2 2
7 7 #define CHANNELF3 3
8 8
9 #define FINETIME_PER_SM_F0 683 // 65536 / 96 = 682.6667
10 #define FINETIME_PER_SM_F1 4096 // 65536 / 16
11 #define FINETIME_PER_SM_F2 65536 // 65536 / 1
12 9 #define NB_SM_PER_S_F0 96
13 10 #define NB_SM_PER_S_F1 16
14 11 #define NB_SM_PER_S_F2 1
15 12 #define NB_SM_PER_S1_BP_P0 24
16 13
17 14 #define ASM_COMP_B1B2 1
18 15 #define ASM_COMP_B1B3 3
19 16 #define ASM_COMP_B1E1 5
20 17 #define ASM_COMP_B1E2 7
21 18 #define ASM_COMP_B2B3 10
22 19 #define ASM_COMP_B2E1 12
23 20 #define ASM_COMP_B2E2 14
24 21 #define ASM_COMP_B3E1 17
25 22 #define ASM_COMP_B3E2 19
26 23 #define ASM_COMP_E1E2 22
27 24 #define ASM_COMP_B1B1 0
28 25 #define ASM_COMP_B2B2 9
29 26 #define ASM_COMP_B3B3 16
30 27 #define ASM_COMP_E1E1 21
31 28 #define ASM_COMP_E2E2 24
32 29
33 30 #define SM_BYTES_PER_VAL 2
34 31 #define NB_BINS_PER_SM 128
35 32 #define NB_VALUES_PER_SM 25
36 33 #define TOTAL_SIZE_SM 3200 // 25 * 128 = 0xC80
37 34 #define TOTAL_SIZE_NORM_BP1_F0 99 // 11 * 9 = 99
38 35 #define TOTAL_SIZE_NORM_BP1_F1 117 // 13 * 9 = 117
39 36 #define TOTAL_SIZE_NORM_BP1_F2 108 // 12 * 9 = 108
40 37 #define TOTAL_SIZE_SBM1_BP1_F0 198 // 22 * 9 = 198
41 38 // F0
42 39 #define NB_RING_NODES_SM_F0 20 // AT LEAST 8 due to the way the averaging is done
43 40 #define NB_RING_NODES_ASM_BURST_SBM_F0 10 // AT LEAST 3
44 41 #define NB_RING_NODES_ASM_NORM_F0 10 // AT LEAST 3
45 42 #define NB_RING_NODES_ASM_F0 3 // AT LEAST 3
46 43 // F1
47 44 #define NB_RING_NODES_SM_F1 12 // AT LEAST 8 due to the way the averaging is done
48 45 #define NB_RING_NODES_ASM_BURST_SBM_F1 5 // AT LEAST 3
49 46 #define NB_RING_NODES_ASM_NORM_F1 5 // AT LEAST 3
50 47 #define NB_RING_NODES_ASM_F1 3 // AT LEAST 3
51 48 // F2
52 49 #define NB_RING_NODES_SM_F2 5 // AT LEAST 3
53 50 #define NB_RING_NODES_ASM_NORM_F2 3 // AT LEAST 3
54 51 #define NB_RING_NODES_ASM_F2 3 // AT LEAST 3
55 52 //
56 53 #define NB_BINS_PER_ASM_F0 88
57 54 #define NB_BINS_PER_PKT_ASM_F0_1 32
58 55 #define NB_BINS_PER_PKT_ASM_F0_2 24
59 56 #define DLEN_ASM_F0_PKT_1 3200 // 32 * 25 * 4, 25 components per matrix, 4 bytes per float
60 57 #define DLEN_ASM_F0_PKT_2 2400 // 24 * 25 * 4, 25 components per matrix, 4 bytes per float
61 58 #define ASM_F0_INDICE_START 16 // 17 - 1, (-1) due to the VHDL behaviour
62 59 #define ASM_F0_INDICE_STOP 103 // 104 - 1, 2 packets of 44 bins
63 60 //
64 61 #define NB_BINS_PER_ASM_F1 104
65 62 #define NB_BINS_PER_PKT_ASM_F1_1 36
66 63 #define NB_BINS_PER_PKT_ASM_F1_2 32
67 64 #define DLEN_ASM_F1_PKT_1 3600 // 36 * 25 * 4, 25 components per matrix, 4 bytes per float
68 65 #define DLEN_ASM_F1_PKT_2 3200 // 32 * 25 * 4, 25 components per matrix, 4 bytes per float
69 66 #define ASM_F1_INDICE_START 5 // 6 - 1, (-1) due to the VHDL behaviour
70 67 #define ASM_F1_INDICE_STOP 108 // 109 - 1, 2 packets of 52 bins
71 68 //
72 69 #define NB_BINS_PER_ASM_F2 96
73 70 #define NB_BINS_PER_PKT_ASM_F2 32
74 71 #define DLEN_ASM_F2_PKT 3200 // 32 * 25 * 4, 25 components per matrix, 4 bytes per float
75 72 #define ASM_F2_INDICE_START 6 // 7 - 1, (-1) due to the VHDL behaviour
76 73 #define ASM_F2_INDICE_STOP 101 // 102 - 1, 2 packets of 48 bins
77 74 //
78 75 #define KCOEFF_BLK_SIZE 130
79 76 #define KCOEFF_FREQ 2
80 77 #define NB_BINS_COMPRESSED_SM_F0 11
81 78 #define NB_BINS_COMPRESSED_SM_F1 13
82 79 #define NB_BINS_COMPRESSED_SM_F2 12
83 80 #define NB_BINS_COMPRESSED_SM 36 // 11 + 12 + 13
84 81 #define NB_BINS_COMPRESSED_SM_SBM_F0 22
85 82 #define NB_BINS_COMPRESSED_SM_SBM_F1 26
86 83 #define NB_BINS_COMPRESSED_SM_SBM_F2 24
87 84 //
88 85 #define NB_BYTES_PER_BP1 9
89 86 #define NB_BYTES_PER_BP2 30
90 87 //
91 88 #define NB_BINS_TO_AVERAGE_ASM_F0 8
92 89 #define NB_BINS_TO_AVERAGE_ASM_F1 8
93 90 #define NB_BINS_TO_AVERAGE_ASM_F2 8
94 91 #define NB_BINS_TO_AVERAGE_ASM_SBM_F0 4
95 92 #define NB_BINS_TO_AVERAGE_ASM_SBM_F1 4
96 93 #define NB_BINS_TO_AVERAGE_ASM_SBM_F2 4
97 94 //
98 95 #define TOTAL_SIZE_COMPRESSED_ASM_NORM_F0 275 // 11 * 25 WORDS
99 96 #define TOTAL_SIZE_COMPRESSED_ASM_NORM_F1 325 // 13 * 25 WORDS
100 97 #define TOTAL_SIZE_COMPRESSED_ASM_NORM_F2 300 // 12 * 25 WORDS
101 98 #define TOTAL_SIZE_COMPRESSED_ASM_SBM_F0 550 // 22 * 25 WORDS
102 99 #define TOTAL_SIZE_COMPRESSED_ASM_SBM_F1 650 // 26 * 25 WORDS
103 100 #define TOTAL_SIZE_BP1_NORM_F0 99 // 9 * 11 UNSIGNED CHAR
104 101 #define TOTAL_SIZE_BP2_NORM_F0 330 // 30 * 11 UNSIGNED CHAR
105 102 #define TOTAL_SIZE_BP1_SBM_F0 198 // 9 * 22 UNSIGNED CHAR
106 103 // GENERAL
107 104 #define NB_SM_BEFORE_AVF0_F1 8 // must be 8 due to the SM_average() function
108 105 #define NB_SM_BEFORE_AVF2 1 // must be 1 due to the SM_average_f2() function
109 106
110 107 #endif // FSW_PARAMS_PROCESSING_H
111 108
General Comments 0
You need to be logged in to leave comments. Login now