1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
|
//----------Author's Names: B.Fabbro, FX Gentit DSM/IRFU/SPP CEA-Saclay
//----------Copyright: Those valid for CEA sofware
//----------Modified: 30/01/2014
#include "CalibCalorimetry/EcalCorrelatedNoiseAnalysisAlgos/interface/TEcnaRun.h"
//--------------------------------------
// TEcnaRun.cc
// Class creation: 03 Dec 2002
// Documentation: see TEcnaRun.h
//--------------------------------------
R__EXTERN TEcnaRootFile* gCnaRootFile;
ClassImp(TEcnaRun);
//___________________________________________________________________________
//
TEcnaRun::TEcnaRun() {
//Constructor without argument: nothing special done
// std::cout << "[Info Management] CLASS: TEcnaRun. CREATE OBJECT: this = " << this << std::endl;
}
TEcnaRun::TEcnaRun(TEcnaObject* pObjectManager, const TString& SubDet) {
//Constructor with argument: call to Init() and declare fEcal according to SubDet value ("EB" or "EE")
// std::cout << "[Info Management] CLASS: TEcnaRun. CREATE OBJECT: this = " << this << std::endl;
Init(pObjectManager);
//fCfgResultsRootFilePath = fCnaParPaths->ResultsRootFilePath();
//fCfgHistoryRunListFilePath = fCnaParPaths->HistoryRunListFilePath();
//ffFileHeader = 0;
//fconst Text_t *h_name = "CnaHeader"; //==> voir cette question avec FXG
//fconst Text_t *h_title = "CnaHeader"; //==> voir cette question avec FXG
//ffFileHeader = new TEcnaHeader(h_name, h_title); //fCnew++;
//............................ fFileHeader
const Text_t* h_name = "CnaHeader"; //==> voir cette question avec FXG
const Text_t* h_title = "CnaHeader"; //==> voir cette question avec FXG
fFileHeader = nullptr;
//Int_t iFileHeader = pObjectManager->GetPointerValue("TEcnaHeader");
Long_t iFileHeader = 0; // one TEcnaHeader object for each file since they can be open simultaneously
if (iFileHeader == 0) {
fFileHeader = new TEcnaHeader(pObjectManager, h_name, h_title); /*fCnew++*/
} else {
fFileHeader = (TEcnaHeader*)iFileHeader;
}
SetEcalSubDetector(SubDet.Data());
fNbSampForFic = fEcal->MaxSampADC(); // DEFAULT Number of samples for ROOT file
}
TEcnaRun::TEcnaRun(TEcnaObject* pObjectManager, const TString& SubDet, const Int_t& NbOfSamples) {
Init(pObjectManager);
//fCfgResultsRootFilePath = fCnaParPaths->ResultsRootFilePath();
//fCfgHistoryRunListFilePath = fCnaParPaths->HistoryRunListFilePath();
//............................ fFileHeader
const Text_t* h_name = "CnaHeader"; //==> voir cette question avec FXG
const Text_t* h_title = "CnaHeader"; //==> voir cette question avec FXG
fFileHeader = nullptr;
//Long_t iFileHeader = pObjectManager->GetPointerValue("TEcnaHeader");
Long_t iFileHeader = 0; // one TEcnaHeader object for each file since they can be open simultaneously
if (iFileHeader == 0) {
fFileHeader = new TEcnaHeader(pObjectManager, h_name, h_title); /*fCnew++*/
} else {
fFileHeader = (TEcnaHeader*)iFileHeader;
}
SetEcalSubDetector(SubDet.Data());
if (NbOfSamples > 0 && NbOfSamples <= fEcal->MaxSampADC()) {
fNbSampForFic = NbOfSamples;
} else {
std::cout << "TEcnaRun/CONSTRUCTOR> Number of required samples = " << NbOfSamples
<< ": OUT OF RANGE. Set to the default value (= " << fEcal->MaxSampADC() << ")." << fTTBELL << std::endl;
fNbSampForFic = fEcal->MaxSampADC(); // DEFAULT Number of samples for file reading
}
}
//.... return true or false according to the existence of the path. The path itself is in an attribute of fCnaParPaths.
Bool_t TEcnaRun::GetPathForResults() { return fCnaParPaths->GetPathForResultsRootFiles(); }
void TEcnaRun::Init(TEcnaObject* pObjectManager) {
//Initialisation
fCnew = 0;
fCdelete = 0;
fCnaCommand = 0;
fCnaError = 0;
fTTBELL = '\007';
//........................... TString file names init
fgMaxCar = (Int_t)512;
//................ MiscDiag counters .................
fMaxMsgIndexForMiscDiag = (Int_t)10;
fNbOfMiscDiagCounters = (Int_t)50;
fMiscDiag = nullptr;
fNumberOfEvents = 0;
//............................. init pointers ( Init() )
fT3d_AdcValues = nullptr;
fT3d2_AdcValues = nullptr;
fT3d1_AdcValues = nullptr;
fT1d_StexStinFromIndex = nullptr;
fT2d_NbOfEvts = nullptr;
fT1d_NbOfEvts = nullptr;
fT2d_ev = nullptr;
fT1d_ev = nullptr;
fT2d_sig = nullptr;
fT1d_sig = nullptr;
fT3d_cov_ss = nullptr;
fT3d2_cov_ss = nullptr;
fT3d1_cov_ss = nullptr;
fT3d_cor_ss = nullptr;
fT3d2_cor_ss = nullptr;
fT3d1_cor_ss = nullptr;
fT2d_lf_cov = nullptr;
fT2d1_lf_cov = nullptr;
fT2d_lf_cor = nullptr;
fT2d1_lf_cor = nullptr;
fT2d_hf_cov = nullptr;
fT2d1_hf_cov = nullptr;
fT2d_hf_cor = nullptr;
fT2d1_hf_cor = nullptr;
fT2d_lfcc_mostins = nullptr;
fT2d1_lfcc_mostins = nullptr;
fT2d_hfcc_mostins = nullptr;
fT2d1_hfcc_mostins = nullptr;
fT1d_ev_ev = nullptr;
fT1d_evsamp_of_sigevt = nullptr;
fT1d_ev_cor_ss = nullptr;
fT1d_av_mped = nullptr;
fT1d_av_totn = nullptr;
fT1d_av_lofn = nullptr;
fT1d_av_hifn = nullptr;
fT1d_av_ev_corss = nullptr;
fT1d_av_sig_corss = nullptr;
fT1d_sigevt_of_evsamp = nullptr;
fT1d_evevt_of_sigsamp = nullptr;
fT1d_sig_cor_ss = nullptr;
fT2dCrysNumbersTable = nullptr;
fT1dCrysNumbersTable = nullptr;
//................................ tags ( Init() )
fTagStinNumbers = nullptr;
fTagNbOfEvts = nullptr;
fTagAdcEvt = nullptr;
fTagMSp = nullptr;
fTagSSp = nullptr;
fTagCovCss = nullptr;
fTagCorCss = nullptr;
fTagHfCov = nullptr;
fTagHfCor = nullptr;
fTagLfCov = nullptr;
fTagLfCor = nullptr;
fTagLFccMoStins = nullptr;
fTagHFccMoStins = nullptr;
fTagPed = nullptr;
fTagTno = nullptr;
fTagMeanCorss = nullptr;
fTagLfn = nullptr;
fTagHfn = nullptr;
fTagSigCorss = nullptr;
fTagAvPed = nullptr;
fTagAvTno = nullptr;
fTagAvLfn = nullptr;
fTagAvHfn = nullptr;
fTagAvMeanCorss = nullptr;
fTagAvSigCorss = nullptr;
fObjectManager = (TEcnaObject*)pObjectManager;
pObjectManager->RegisterPointer("TEcnaRun", (Long_t)this);
//............................ fCnaParCout
Long_t iCnaParCout = pObjectManager->GetPointerValue("TEcnaParCout");
if (iCnaParCout == 0) {
fCnaParCout = new TEcnaParCout(pObjectManager); /*fCnew++*/
} else {
fCnaParCout = (TEcnaParCout*)iCnaParCout;
}
//............................ fCnaParPaths
Long_t iCnaParPaths = pObjectManager->GetPointerValue("TEcnaParPaths");
if (iCnaParPaths == 0) {
fCnaParPaths = new TEcnaParPaths(pObjectManager); /*fCnew++*/
} else {
fCnaParPaths = (TEcnaParPaths*)iCnaParPaths;
}
//................................................... Code Print ( Init() )
fCodePrintNoComment = fCnaParCout->GetCodePrint("NoComment");
fCodePrintWarnings = fCnaParCout->GetCodePrint("Warnings "); // => default value
fCodePrintComments = fCnaParCout->GetCodePrint("Comments");
fCodePrintAllComments = fCnaParCout->GetCodePrint("AllComments");
fFlagPrint = fCodePrintWarnings;
//...................................................
gCnaRootFile = nullptr;
fOpenRootFile = kFALSE;
fReadyToReadData = 0;
//.............................................. Miscellaneous
fSpecialStexStinNotIndexed = -1;
fStinIndexBuilt = 0;
fBuildEvtNotSkipped = 0;
fMemoReadNumberOfEventsforSamples = 0;
} // end of Init()
//========================================================================
void TEcnaRun::SetEcalSubDetector(const TString& SubDet) {
// Set Subdetector (EB or EE)
Int_t MaxCar = fgMaxCar;
fFlagSubDet.Resize(MaxCar);
fFlagSubDet = SubDet.Data();
fEcal = nullptr;
fEcal = new TEcnaParEcal(fFlagSubDet.Data()); //fCnew++;
fEcalNumbering = nullptr;
fEcalNumbering = new TEcnaNumbering(fFlagSubDet.Data(), fEcal); //fCnew++;
fCnaWrite = nullptr;
fCnaWrite = new TEcnaWrite(fFlagSubDet.Data(), fCnaParPaths, fCnaParCout, fEcal, fEcalNumbering); //fCnew++;
if (fFlagSubDet == "EB") {
fStexName = "SM ";
fStinName = "tower";
}
if (fFlagSubDet == "EE") {
fStexName = "Dee";
fStinName = " SC ";
}
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//
// copy constructor
//
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
TEcnaRun::TEcnaRun(const TEcnaRun& dcop) : TObject::TObject(dcop) {
std::cout << "*TEcnaRun::TEcnaRun(const TEcnaRun& dcop)> "
<< " Now is the time to write a copy constructor" << std::endl;
//{ Int_t cintoto; cin >> cintoto; }
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//
// overloading of the operator=
//
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//TEcnaRun& TEcnaRun::operator=(const TEcnaRun& dcop)
//{
//Overloading of the operator=
//
// fCopy(dcop);
// return *this;
//}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//
// destructor
//
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
TEcnaRun::~TEcnaRun() {
//Destructor
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::~TEcnaRun()> Entering destructor." << std::endl;
}
if (fFlagPrint != fCodePrintNoComment || fFlagPrint == fCodePrintWarnings) {
if (fBuildEvtNotSkipped > 0) {
std::cout << "************************************************************************************* "
<< std::endl;
std::cout << "*TEcnaRun::~TEcnaRun()> Nb of calls to GetSampleAdcValues by cmsRun: " << fBuildEvtNotSkipped
<< std::endl;
std::cout << "************************************************************************************* "
<< std::endl;
}
}
if (fFlagPrint == fCodePrintAllComments) {
Int_t misc_czero = 0;
for (Int_t i = 0; i < fNbOfMiscDiagCounters; i++) {
if (fMiscDiag[i] != 0) {
std::cout << " fMiscDiag Counter " << std::setw(3) << i << " = " << std::setw(9)
<< fMiscDiag[i] << " (INFO: alloc on non zero freed zone) " << std::endl;
} else {
misc_czero++;
}
}
std::cout << " Nb of fMiscDiag counters at zero: " << misc_czero
<< " (total nb of counters: " << fNbOfMiscDiagCounters << ")" << std::endl;
}
if (fMiscDiag != nullptr) {
delete[] fMiscDiag;
fCdelete++;
}
//if (fFileHeader != 0){delete fFileHeader; fCdelete++;}
//if (fEcal != 0){delete fEcal; fCdelete++;}
//if (fEcalNumbering != 0){delete fEcalNumbering; fCdelete++;}
//if (fCnaParCout != 0){delete fCnaParCout; fCdelete++;}
//if (fCnaParPaths != 0){delete fCnaParPaths; fCdelete++;}
//if (fCnaWrite != 0){delete fCnaWrite; fCdelete++;}
if (fT1d_StexStinFromIndex != nullptr) {
delete[] fT1d_StexStinFromIndex;
fCdelete++;
}
if (fT2d_NbOfEvts != nullptr) {
delete[] fT2d_NbOfEvts;
fCdelete++;
}
if (fT1d_NbOfEvts != nullptr) {
delete[] fT1d_NbOfEvts;
fCdelete++;
}
if (fT3d_AdcValues != nullptr) {
delete[] fT3d_AdcValues;
fCdelete++;
}
if (fT3d2_AdcValues != nullptr) {
delete[] fT3d2_AdcValues;
fCdelete++;
}
if (fT3d1_AdcValues != nullptr) {
delete[] fT3d1_AdcValues;
fCdelete++;
}
if (fT2d_ev != nullptr) {
delete[] fT2d_ev;
fCdelete++;
}
if (fT1d_ev != nullptr) {
delete[] fT1d_ev;
fCdelete++;
}
if (fT2d_sig != nullptr) {
delete[] fT2d_sig;
fCdelete++;
}
if (fT1d_sig != nullptr) {
delete[] fT1d_sig;
fCdelete++;
}
if (fT3d_cov_ss != nullptr) {
delete[] fT3d_cov_ss;
fCdelete++;
}
if (fT3d2_cov_ss != nullptr) {
delete[] fT3d2_cov_ss;
fCdelete++;
}
if (fT3d1_cov_ss != nullptr) {
delete[] fT3d1_cov_ss;
fCdelete++;
}
if (fT3d_cor_ss != nullptr) {
delete[] fT3d_cor_ss;
fCdelete++;
}
if (fT3d2_cor_ss != nullptr) {
delete[] fT3d2_cor_ss;
fCdelete++;
}
if (fT3d1_cor_ss != nullptr) {
delete[] fT3d1_cor_ss;
fCdelete++;
}
if (fT2d_lf_cov != nullptr) {
delete[] fT2d_lf_cov;
fCdelete++;
}
if (fT2d1_lf_cov != nullptr) {
delete[] fT2d1_lf_cov;
fCdelete++;
}
if (fT2d_lf_cor != nullptr) {
delete[] fT2d_lf_cor;
fCdelete++;
}
if (fT2d1_lf_cor != nullptr) {
delete[] fT2d1_lf_cor;
fCdelete++;
}
if (fT2d_hf_cov != nullptr) {
delete[] fT2d_hf_cov;
fCdelete++;
}
if (fT2d1_hf_cov != nullptr) {
delete[] fT2d1_hf_cov;
fCdelete++;
}
if (fT2d_hf_cor != nullptr) {
delete[] fT2d_hf_cor;
fCdelete++;
}
if (fT2d1_hf_cor != nullptr) {
delete[] fT2d1_hf_cor;
fCdelete++;
}
if (fT2d_lfcc_mostins != nullptr) {
delete[] fT2d_lfcc_mostins;
fCdelete++;
}
if (fT2d1_lfcc_mostins != nullptr) {
delete[] fT2d1_lfcc_mostins;
fCdelete++;
}
if (fT2d_hfcc_mostins != nullptr) {
delete[] fT2d_hfcc_mostins;
fCdelete++;
}
if (fT2d1_hfcc_mostins != nullptr) {
delete[] fT2d1_hfcc_mostins;
fCdelete++;
}
if (fT1d_ev_ev != nullptr) {
delete[] fT1d_ev_ev;
fCdelete++;
}
if (fT1d_evsamp_of_sigevt != nullptr) {
delete[] fT1d_evsamp_of_sigevt;
fCdelete++;
}
if (fT1d_ev_cor_ss != nullptr) {
delete[] fT1d_ev_cor_ss;
fCdelete++;
}
if (fT1d_av_mped != nullptr) {
delete[] fT1d_av_mped;
fCdelete++;
}
if (fT1d_av_totn != nullptr) {
delete[] fT1d_av_totn;
fCdelete++;
}
if (fT1d_av_lofn != nullptr) {
delete[] fT1d_av_lofn;
fCdelete++;
}
if (fT1d_av_hifn != nullptr) {
delete[] fT1d_av_hifn;
fCdelete++;
}
if (fT1d_av_ev_corss != nullptr) {
delete[] fT1d_av_ev_corss;
fCdelete++;
}
if (fT1d_av_sig_corss != nullptr) {
delete[] fT1d_av_sig_corss;
fCdelete++;
}
if (fT1d_sigevt_of_evsamp != nullptr) {
delete[] fT1d_sigevt_of_evsamp;
fCdelete++;
}
if (fT1d_evevt_of_sigsamp != nullptr) {
delete[] fT1d_evevt_of_sigsamp;
fCdelete++;
}
if (fT1d_sig_cor_ss != nullptr) {
delete[] fT1d_sig_cor_ss;
fCdelete++;
}
if (fT2dCrysNumbersTable != nullptr) {
delete[] fT2dCrysNumbersTable;
fCdelete++;
}
if (fT1dCrysNumbersTable != nullptr) {
delete[] fT1dCrysNumbersTable;
fCdelete++;
}
if (fTagStinNumbers != nullptr) {
delete[] fTagStinNumbers;
fCdelete++;
}
if (fTagNbOfEvts != nullptr) {
delete[] fTagNbOfEvts;
fCdelete++;
}
if (fTagAdcEvt != nullptr) {
delete[] fTagAdcEvt;
fCdelete++;
}
if (fTagMSp != nullptr) {
delete[] fTagMSp;
fCdelete++;
}
if (fTagSSp != nullptr) {
delete[] fTagSSp;
fCdelete++;
}
if (fTagCovCss != nullptr) {
delete[] fTagCovCss;
fCdelete++;
}
if (fTagCorCss != nullptr) {
delete[] fTagCorCss;
fCdelete++;
}
if (fTagHfCov != nullptr) {
delete[] fTagHfCov;
fCdelete++;
}
if (fTagHfCor != nullptr) {
delete[] fTagHfCor;
fCdelete++;
}
if (fTagLfCov != nullptr) {
delete[] fTagLfCov;
fCdelete++;
}
if (fTagLfCor != nullptr) {
delete[] fTagLfCor;
fCdelete++;
}
if (fTagLFccMoStins != nullptr) {
delete[] fTagLFccMoStins;
fCdelete++;
}
if (fTagHFccMoStins != nullptr) {
delete[] fTagHFccMoStins;
fCdelete++;
}
if (fTagPed != nullptr) {
delete[] fTagPed;
fCdelete++;
}
if (fTagTno != nullptr) {
delete[] fTagTno;
fCdelete++;
}
if (fTagMeanCorss != nullptr) {
delete[] fTagMeanCorss;
fCdelete++;
}
if (fTagLfn != nullptr) {
delete[] fTagLfn;
fCdelete++;
}
if (fTagHfn != nullptr) {
delete[] fTagHfn;
fCdelete++;
}
if (fTagSigCorss != nullptr) {
delete[] fTagSigCorss;
fCdelete++;
}
if (fTagAvPed != nullptr) {
delete[] fTagAvPed;
fCdelete++;
}
if (fTagAvTno != nullptr) {
delete[] fTagAvTno;
fCdelete++;
}
if (fTagAvLfn != nullptr) {
delete[] fTagAvLfn;
fCdelete++;
}
if (fTagAvHfn != nullptr) {
delete[] fTagAvHfn;
fCdelete++;
}
if (fTagAvMeanCorss != nullptr) {
delete[] fTagAvMeanCorss;
fCdelete++;
}
if (fTagAvSigCorss != nullptr) {
delete[] fTagAvSigCorss;
fCdelete++;
}
if (fCnew != fCdelete) {
std::cout << "!TEcnaRun::~TEcnaRun()> WRONG MANAGEMENT OF MEMORY ALLOCATIONS: fCnew = " << fCnew
<< ", fCdelete = " << fCdelete << fTTBELL << std::endl;
} else {
// std::cout << "*TEcnaRun::~TEcnaRun()> Management of memory allocations: OK. fCnew = "
// << fCnew << ", fCdelete = " << fCdelete << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::~TEcnaRun()> Exiting destructor (this = " << this << ")." << std::endl
<< "~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#"
<< std::endl;
}
// std::cout << "[Info Management] CLASS: TEcnaRun. DESTROY OBJECT: this = " << this << std::endl;
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//
// M E T H O D S
//
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//============================================================================
//
// GetReadyToReadData(...)
//
// Preparation of the result file name + tags allocations
// + ADC event distribution array allocation + nb of events array allocation
//
//============================================================================
void TEcnaRun::GetReadyToReadData(const TString& typ_ana,
const Int_t& run_number,
const Int_t& nfirst,
const Int_t& nlast,
const Int_t& nbevts,
const Int_t& Stex) {
//Preparation of the data reading. Set part of the header. No RunType as argument.
//Use default value = 99999999 and call method with all the arguments (see below)
Int_t RunType = 99999999;
GetReadyToReadData(typ_ana, run_number, nfirst, nlast, nbevts, Stex, RunType);
}
//--------------------------------------------------------------------------------
void TEcnaRun::GetReadyToReadData(const TString& typ_ana,
const Int_t& run_number,
const Int_t& nfirst,
const Int_t& nlast,
const Int_t& nbevts,
const Int_t& Stex,
const Int_t& run_type) {
//Preparation of the data reading. Set part of the header
//
// [nfirst, nlast] = [1,50] (50 events) or [151,300] (150 events) or etc...
Int_t nrangeevts = nlast - nfirst + 1; // number of events in range
if (nrangeevts < nbevts) {
if (nlast >= nfirst) {
std::cout << "*TEcnaRun::GetReadyToReadData(...)> --- WARNING ---> number of events = " << nbevts
<< ", out of range (range = " << nfirst << "," << nlast << ")" << std::endl
<< " The number of found events will be less " << std::endl
<< " than the number of requested events." << std::endl;
}
if (nlast < nfirst) {
std::cout << "*TEcnaRun::GetReadyToReadData(...)> --- INFO ---> last requested event number = " << nlast
<< ", less than first requested event number (= " << nfirst << ")" << std::endl
<< " File will be read until EOF if the number of found events"
<< std::endl
<< " remains less than the number of requested events." << std::endl;
}
}
//............. allocation for counters
fMiscDiag = new Int_t[fNbOfMiscDiagCounters];
fCnew++;
for (Int_t iz = 0; iz < fNbOfMiscDiagCounters; iz++) {
fMiscDiag[iz] = (Int_t)0;
}
//************** CHECK OF ARGUMENTS: nfirst_arg and nbevts_arg
Int_t nentries = 99999999; // => to be reintroduced as argument (like run_type) (?)
if (nfirst <= nentries) {
//--------------------- test positivity of nfirst_arg (GetReadyToReadData)
if (nfirst > 0) {
//-------- test compatibility between the last requested event number
// and the number of entries
if (nlast <= nentries) {
const Text_t* h_name = "CnaHeader"; //==> voir cette question avec FXG
const Text_t* h_title = "CnaHeader"; //==> voir cette question avec FXG
//fFileHeader->HeaderParameters(h_name, h_title ,
// typ_ana, fNbSampForFic,
// run_number, nfirst, nlast, nbevts,
// Stex, nentries); fCnew++;
if (fEcal->MaxStinEcnaInStex() > 0 && fEcal->MaxCrysInStin() > 0 && fNbSampForFic > 0) {
if (fFileHeader == nullptr) {
fFileHeader = new TEcnaHeader(fObjectManager, h_name, h_title);
} // fCnew++;
fFileHeader->HeaderParameters(typ_ana, fNbSampForFic, run_number, nfirst, nlast, nbevts, Stex, run_type);
// After this call to TEcnaHeader, we have: (GetReadyToReadData)
// fFileHeader->fTypAna = typ_ana
// fFileHeader->fNbOfSamples = fNbSampForFic
// fFileHeader->fRunNumber = run_number
// fFileHeader->fFirstReqEvtNumber = nfirst
// fFileHeader->fLastReqEvtNumber = nlast
// fFileHeader->fReqNbOfEvts = nbevts
// fFileHeader->fStex = Stex number
// fFileHeader->fRunType = run_type
// fFileHeader->Print();
// {Int_t cintoto; std::cout << "taper 0 pour continuer" << std::endl; cin >> cintoto;}
// fFileHeader->SetName("CnaHeader"); *======> voir FXG
// fFileHeader->SetTitle("CnaHeader");
//......................................... allocation tags + init of them (GetReadyToReadData)
fTagStinNumbers = new Int_t[1];
fCnew++;
fTagStinNumbers[0] = (Int_t)0;
fTagNbOfEvts = new Int_t[1];
fCnew++;
fTagNbOfEvts[0] = (Int_t)0;
fTagAdcEvt = new Int_t[fEcal->MaxCrysEcnaInStex()];
fCnew++;
for (Int_t iz = 0; iz < fEcal->MaxCrysEcnaInStex(); iz++) {
fTagAdcEvt[iz] = (Int_t)0;
}
fTagMSp = new Int_t[1];
fCnew++;
fTagMSp[0] = (Int_t)0;
fTagSSp = new Int_t[1];
fCnew++;
fTagSSp[0] = (Int_t)0;
fTagCovCss = new Int_t[fEcal->MaxCrysEcnaInStex()];
fCnew++;
for (Int_t iz = 0; iz < fEcal->MaxCrysEcnaInStex(); iz++) {
fTagCovCss[iz] = (Int_t)0;
}
fTagCorCss = new Int_t[fEcal->MaxCrysEcnaInStex()];
fCnew++;
for (Int_t iz = 0; iz < fEcal->MaxCrysEcnaInStex(); iz++) {
fTagCorCss[iz] = (Int_t)0;
}
fTagLfCov = new Int_t[1];
fCnew++;
fTagLfCov[0] = (Int_t)0;
fTagLfCor = new Int_t[1];
fCnew++;
fTagLfCor[0] = (Int_t)0;
fTagHfCov = new Int_t[1];
fCnew++;
fTagHfCov[0] = (Int_t)0;
fTagHfCor = new Int_t[1];
fCnew++;
fTagHfCor[0] = (Int_t)0;
fTagLFccMoStins = new Int_t[1];
fCnew++;
fTagLFccMoStins[0] = (Int_t)0;
fTagHFccMoStins = new Int_t[1];
fCnew++;
fTagHFccMoStins[0] = (Int_t)0;
fTagPed = new Int_t[1];
fCnew++;
fTagPed[0] = (Int_t)0;
fTagTno = new Int_t[1];
fCnew++;
fTagTno[0] = (Int_t)0;
fTagMeanCorss = new Int_t[1];
fCnew++;
fTagMeanCorss[0] = (Int_t)0;
fTagLfn = new Int_t[1];
fCnew++;
fTagLfn[0] = (Int_t)0;
fTagHfn = new Int_t[1];
fCnew++;
fTagHfn[0] = (Int_t)0;
fTagSigCorss = new Int_t[1];
fCnew++;
fTagSigCorss[0] = (Int_t)0;
fTagAvPed = new Int_t[1];
fCnew++;
fTagAvPed[0] = (Int_t)0;
fTagAvTno = new Int_t[1];
fCnew++;
fTagAvTno[0] = (Int_t)0;
fTagAvLfn = new Int_t[1];
fCnew++;
fTagAvLfn[0] = (Int_t)0;
fTagAvHfn = new Int_t[1];
fCnew++;
fTagAvHfn[0] = (Int_t)0;
fTagAvMeanCorss = new Int_t[1];
fCnew++;
fTagAvMeanCorss[0] = (Int_t)0;
fTagAvSigCorss = new Int_t[1];
fCnew++;
fTagAvSigCorss[0] = (Int_t)0;
//====================================================================================
//
// allocation for fT1d_StexStinFromIndex[] and init to fSpecialStexStinNotIndexed
//
//====================================================================================
if (fT1d_StexStinFromIndex == nullptr) {
fT1d_StexStinFromIndex = new Int_t[fEcal->MaxStinEcnaInStex()];
fCnew++;
}
for (Int_t i0_Stin = 0; i0_Stin < fEcal->MaxStinEcnaInStex(); i0_Stin++) {
fT1d_StexStinFromIndex[i0_Stin] = fSpecialStexStinNotIndexed;
}
//------------------------------------------------------------- (GetReadyToReadData)
//====================================================================================
//
// allocation of the 3D array fT3d_AdcValues[channel][sample][events] (ADC values)
//
// This array is filled in the GetSampleAdcValues(...) method
//
//====================================================================================
if (fT3d_AdcValues == nullptr) {
//............ Allocation for the 3d array
std::cout << "*TEcnaRun::GetReadyToReadData(...)> Allocation of 3D array for ADC distributions."
<< " Nb of requested evts = " << fFileHeader->fReqNbOfEvts << std::endl
<< " This number must not be too large"
<< " (no failure after this message means alloc OK)." << std::endl;
fT3d_AdcValues = new Double_t**[fEcal->MaxCrysEcnaInStex()];
fCnew++;
fT3d2_AdcValues = new Double_t*[fEcal->MaxCrysEcnaInStex() * fNbSampForFic];
fCnew++;
fT3d1_AdcValues = new Double_t[fEcal->MaxCrysEcnaInStex() * fNbSampForFic * fFileHeader->fReqNbOfEvts];
fCnew++;
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
fT3d_AdcValues[i0StexEcha] = &fT3d2_AdcValues[0] + i0StexEcha * fNbSampForFic;
for (Int_t j0Sample = 0; j0Sample < fNbSampForFic; j0Sample++) {
fT3d2_AdcValues[fNbSampForFic * i0StexEcha + j0Sample] =
&fT3d1_AdcValues[0] + fFileHeader->fReqNbOfEvts * (fNbSampForFic * i0StexEcha + j0Sample);
}
}
}
//................................. Init to zero
for (Int_t iza = 0; iza < fEcal->MaxCrysEcnaInStex(); iza++) {
for (Int_t izb = 0; izb < fNbSampForFic; izb++) {
for (Int_t izc = 0; izc < fFileHeader->fReqNbOfEvts; izc++) {
if (fT3d_AdcValues[iza][izb][izc] != (Double_t)0) {
fMiscDiag[0]++;
fT3d_AdcValues[iza][izb][izc] = (Double_t)0;
}
}
}
}
//--------------------------------------------------------- (GetReadyToReadData)
//====================================================================================
//
// allocation of the 2D array fT2d_NbOfEvts[channel][sample] (Max nb of evts)
//
//====================================================================================
if (fT2d_NbOfEvts == nullptr) {
fT2d_NbOfEvts = new Int_t*[fEcal->MaxCrysEcnaInStex()];
fCnew++;
fT1d_NbOfEvts = new Int_t[fEcal->MaxCrysEcnaInStex() * fNbSampForFic];
fCnew++;
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
fT2d_NbOfEvts[i0StexEcha] = &fT1d_NbOfEvts[0] + i0StexEcha * fNbSampForFic;
}
//................ Init the array to 0
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fNbSampForFic; i0Sample++) {
[[clang::suppress]] fT2d_NbOfEvts[i0StexEcha][i0Sample] = 0;
}
}
} else {
std::cerr << "!TEcnaRun::GetReadyToReadData(...)> *** ERROR *** No allocation for fT2d_NbOfEvts!"
<< " Pointer already not NULL " << fTTBELL << std::endl;
// {Int_t cintoto; std::cout << "Enter: 0 and RETURN to continue or: CTRL C to exit"
// << std::endl; std::cin >> cintoto;}
}
} else {
std::cerr << std::endl
<< "!TEcnaRun::GetReadyToReadData(...)> "
<< " *** ERROR *** " << std::endl
<< " --------------------------------------------------" << std::endl
<< " NULL or NEGATIVE values for arguments" << std::endl
<< " with expected positive values:" << std::endl
<< " Number of Stins in Stex = " << fEcal->MaxStinEcnaInStex() << std::endl
<< " Number of crystals in Stin = " << fEcal->MaxCrysInStin() << std::endl
<< " Number of samples by channel = " << fNbSampForFic << std::endl
<< std::endl
<< std::endl
<< " hence, no memory allocation for array member has been performed." << std::endl;
std::cout << "Enter: 0 and RETURN to continue or: CTRL C to exit";
Int_t toto;
std::cin >> toto;
}
//----------------------------------------------------------- (GetReadyToReadData)
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
std::cout << "*TEcnaRun::GetReadyToReadData(...)>" << std::endl
<< " The method has been called with the following argument values:" << std::endl
<< " Analysis name = " << fFileHeader->fTypAna << std::endl
<< " Run number = " << fFileHeader->fRunNumber << std::endl
<< " Run type = " << fFileHeader->fRunType << std::endl
<< " First requested event number = " << fFileHeader->fFirstReqEvtNumber << std::endl
<< " Last requested event number = " << fFileHeader->fLastReqEvtNumber << std::endl
<< " " << fStexName.Data() << " number = " << fFileHeader->fStex
<< std::endl
<< " Number of " << fStinName.Data() << " in " << fStexName.Data() << " = "
<< fEcal->MaxStinEcnaInStex() << std::endl
<< " Number of crystals in " << fStinName.Data() << " = " << fEcal->MaxCrysInStin()
<< std::endl
<< " Number of samples by channel = " << fNbSampForFic << std::endl
<< std::endl;
}
fReadyToReadData = 1; // set flag
} else {
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "!TEcnaRun::GetReadyToReadData(...) > WARNING/CORRECTION:" << std::endl
<< "! The fisrt requested event number is not positive (nfirst = " << nfirst << ") " << fTTBELL
<< std::endl;
}
}
} else {
if (fFlagPrint != fCodePrintNoComment) {
std::cout << std::endl
<< "!TEcnaRun::GetReadyToReadData(...)> WARNING/CORRECTION:" << std::endl
<< "! The number of requested events (nbevts = " << nbevts << ") is too large." << std::endl
<< "! Last event number = " << nlast << " > number of entries = " << nentries << ". " << fTTBELL
<< std::endl
<< std::endl;
}
}
} else {
std::cout << "!TEcnaRun::GetReadyToReadData(...) *** ERROR ***> "
<< " The first requested event number is greater than the number of entries." << fTTBELL << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::GetReadyToReadData(...)> Leaving the method. fReadyToReadData = " << fReadyToReadData
<< std::endl;
}
} // end of GetReadyToReadData
//====================================================================================================
//
// GetSampleAdcValues: method called by the CMSSW analyzer (cmsRun)
//
// At each event, put the Sample ADC value in the 3D array: fT3d_AdcValues[i0StexEcha][i0Sample][i0EventIndex]
//
// |============================================================|
// | |
// | (Stex,Stin) means: (SM,tower) for EB and: (Dee,SC) for EE |
// | |
// |============================================================|
//
// (Stin number <-> Stin index correspondance, ADC sample values)
//
// THIS METHOD IS CALLED INSIDE THE LOOPS OVER:
// ( EVENTS (tower or SC (CRYSTAL in tower or SC (SAMPLES))))
//
// Arguments: Event = event number. Range = [ 1, fFileHeader->fReqNbOfEvts ]
// n1StexStin = Stin number in Stex. Range = [ 1, fEcal->MaxStinEcnaInStex() ]
// i0StinEcha = channel number in Stin. Range = [ 0, fEcal->MaxCrysInStin() - 1 ]
// sample = ADC sample number. Range = [ 0, fNbSampForFic - 1 ]
// adcvalue = ADC sample value.
//
//====================================================================================================
Bool_t TEcnaRun::GetSampleAdcValues(const Int_t& n1EventNumber,
const Int_t& n1StexStin,
const Int_t& i0StinEcha,
const Int_t& i0Sample,
const Double_t& adcvalue) {
//Building of the arrays fT1d_StexStinFromIndex[] and fT3d_AdcValues[][][]
fBuildEvtNotSkipped++; // event not skipped by cmsRun
Bool_t ret_code = kFALSE;
Int_t i0EventIndex = n1EventNumber - 1; // INDEX FOR Event number
Int_t i0StexStinEcna = n1StexStin - 1; // INDEX FOR StexStin = Number_of_the_Stin_in_Stex - 1
Int_t i_trouve = 0;
//.................................................................. (GetSampleAdcValues)
if (fReadyToReadData == 1) {
if (n1StexStin >= 1 && n1StexStin <= fEcal->MaxStinEcnaInStex()) {
if (i0StinEcha >= 0 && i0StinEcha < fEcal->MaxCrysInStin()) {
if (i0Sample >= 0 && i0Sample < fEcal->MaxSampADC()) {
//..... Put the StexStin number in 1D array fT1d_StexStinFromIndex[] = Stin index + 1
if (fT1d_StexStinFromIndex != nullptr) // table fT1d_StexStinFromIndex[index] already allocated
{
ret_code = kTRUE;
// StexStin already indexed
if (n1StexStin == fT1d_StexStinFromIndex[i0StexStinEcna]) {
i_trouve = 1;
}
// StexStin index not found: set index for new StexStin
if (i_trouve != 1) {
if (fT1d_StexStinFromIndex[i0StexStinEcna] == fSpecialStexStinNotIndexed) {
fT1d_StexStinFromIndex[i0StexStinEcna] = n1StexStin;
fFileHeader->fStinNumbersCalc = 1;
fTagStinNumbers[0] = 1;
fStinIndexBuilt++; // number of found Stins
if (fFlagPrint == fCodePrintAllComments) {
if (fStinIndexBuilt == 1) {
std::cout << std::endl
<< "*TEcnaRun::GetSampleAdcValues(...)> event " << n1EventNumber << " : first event for "
<< fStexName.Data() << " " << fFileHeader->fStex << "; " << fStinName.Data() << "s : ";
}
if (fFlagSubDet == "EB") {
std::cout << fT1d_StexStinFromIndex[i0StexStinEcna] << ", ";
}
if (fFlagSubDet == "EE") {
std::cout << fEcalNumbering->GetDeeSCConsFrom1DeeSCEcna(fFileHeader->fStex,
fT1d_StexStinFromIndex[i0StexStinEcna])
<< ", ";
}
}
//.................................................... (GetSampleAdcValues)
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " (" << fStinIndexBuilt << " " << fStinName.Data() << " found), channel " << i0StinEcha
<< ", i0Sample " << i0Sample << std::endl;
}
ret_code = kTRUE;
} // if ( fT1d_StexStinFromIndex[i0StexStinEcna] == fSpecialStexStinNotIndexed )
else {
std::cout << "!TEcnaRun::GetSampleAdcValues(...)> *** ERROR ***> NOT ALLOWED if RESULT. "
<< " n1StexStin = " << n1StexStin << ", fT1d_StexStinFromIndex[" << i0StexStinEcna
<< "] = " << fT1d_StexStinFromIndex[i0StexStinEcna]
<< ", fStinIndexBuilt = " << fStinIndexBuilt << fTTBELL << std::endl;
ret_code = kFALSE;
}
} // if (i_trouve != 1 )
} // if( fT1d_StexStinFromIndex != 0 )
else {
std::cout << "!TEcnaRun, GetSampleAdcValues *** ERROR ***> "
<< " fT1d_StexStinFromIndex = " << fT1d_StexStinFromIndex
<< " fT1d_StexStinFromIndex[] ALLOCATION NOT DONE" << fTTBELL << std::endl;
ret_code = kFALSE;
} //.................................................................. (GetSampleAdcValues)
} // end of if( i0Sample >= 0 && i0Sample < fNbSampForFic )
else {
//.......Reading data => Message and error only if sample >= fEcal->MaxSampADC()
// (not fNbSampForFic, the later is used only for calculations)
if (i0Sample >= fEcal->MaxSampADC()) {
std::cout << "!TEcnaRun::GetSampleAdcValues(...) *** ERROR ***> "
<< " sample number = " << i0Sample << ". OUT OF BOUNDS"
<< " (max = " << fNbSampForFic << ")" << fTTBELL << std::endl;
ret_code = kFALSE;
} else {
ret_code = kTRUE;
}
} // else of if( i0Sample >= 0 && i0Sample < fNbSampForFic )
} // end of if( i0StinEcha >= 0 && i0StinEcha < fEcal->MaxCrysInStin() )
else {
std::cout << "!TEcnaRun::GetSampleAdcValues(...) *** ERROR ***> "
<< " channel number in " << fStinName.Data() << " = " << i0StinEcha << ". OUT OF BOUNDS"
<< " (max = " << fEcal->MaxCrysInStin() << ")" << fTTBELL << std::endl;
ret_code = kFALSE;
} // else of if( i0StinEcha >= 0 && i0StinEcha < fEcal->MaxCrysInStin() )
} else {
std::cout << "!TEcnaRun::GetSampleAdcValues(...) *** ERROR ***> " << fStinName.Data() << " number in "
<< fStexName.Data() << " = " << n1StexStin << ". OUT OF BOUNDS"
<< " (max = " << fEcal->MaxStinEcnaInStex() << ")" << fTTBELL << std::endl;
ret_code = kFALSE;
}
//.................................................................. (GetSampleAdcValues)
//........ Filling of the 2D array of the event numbers in the data reading loop and
// filling of the 3D array of the ADC sample values
//
// ONLY if ret_code == kTRUE
if (ret_code == kTRUE) {
//............ 1) Conversion (Stin,i0StinEcha) -> i0StexEcha (same numbering for EB and EE)
//==========================================================================================
// n1StexStin (Tower or SC): 1 2 3
// iStexStin 0 1 2
//
// i0StinEcha: 0......24 0......24 0......24
//
// i0StexEcha : 0......24 25......49 50......74 grouped by StexStin's
// i0StexEcha+1 (Xtal): 1......25 26......50 51......75
//
//==========================================================================================
Int_t i0StexEcha = i0StexStinEcna * fEcal->MaxCrysInStin() + i0StinEcha;
//--------------------------------------------------------- (GetSampleAdcValues)
if (i0StexEcha >= 0 && i0StexEcha < fEcal->MaxCrysEcnaInStex()) {
//............ 2) Increase of the nb of evts for (StexEcha,sample) (events found in the data)
(fT2d_NbOfEvts[i0StexEcha][i0Sample])++; // value after first incrementation = 1
fTagNbOfEvts[0] = 1;
fFileHeader->fNbOfEvtsCalc = 1;
//............ 3) Filling of the 3D array of the ADC values
if (i0EventIndex >= 0 && i0EventIndex < fFileHeader->fReqNbOfEvts) {
if (i0Sample >= 0 && i0Sample < fNbSampForFic) {
fT3d_AdcValues[i0StexEcha][i0Sample][i0EventIndex] = adcvalue;
} else {
std::cout << "!TEcnaRun::GetSampleAdcValues(...) *** ERROR ***> "
<< " sample index = " << i0Sample << ". OUT OF BOUNDS"
<< " (max = " << fNbSampForFic << ")" << fTTBELL << std::endl;
}
} else {
std::cout << "!TEcnaRun::GetSampleAdcValues(...) *** ERROR ***> "
<< " event number = " << n1EventNumber << ". OUT OF BOUNDS"
<< " (max = " << fFileHeader->fReqNbOfEvts << ")" << fTTBELL << std::endl;
ret_code = kFALSE;
}
} else {
std::cout << "!TEcnaRun::GetSampleAdcValues(...) *** ERROR ***> "
<< " CHANNEL NUMBER OUT OF BOUNDS" << std::endl
<< " i0StexEcha number = " << i0StexEcha << " , n1StexStin = " << n1StexStin
<< " , i0StinEcha = " << i0StinEcha
<< " , fEcal->MaxCrysEcnaInStex() = " << fEcal->MaxCrysEcnaInStex() << fTTBELL << std::endl;
ret_code = kFALSE;
// {Int_t cintoto; std::cout << "TAPER 0 POUR CONTINUER" << std::endl; cin >> cintoto;}
}
} // end of if( ret_code == kTRUE )
else {
std::cout << "!TEcnaRun::GetSampleAdcValues(...) *** ERROR ***> ret_code = kFALSE " << fTTBELL << std::endl;
}
} // end of if(fReadyToReadData == 1)
else {
std::cout << "!TEcnaRun::GetSampleAdcValues(...) *** ERROR ***> GetReadyToReadData(...) not called." << fTTBELL
<< std::endl;
ret_code = kFALSE;
}
//.................................................................. (GetSampleAdcValues)
if (ret_code == kFALSE) {
std::cout << "!TEcnaRun::GetSampleAdcValues(...)> *** ERROR ***> ret_code = " << ret_code
<< " (FALSE). Event: " << n1EventNumber << ", " << fStexName.Data() << ": " << fFileHeader->fStex << ", "
<< fStinName.Data() << ": " << n1StexStin << ", channel: " << i0StinEcha << ", Sample: " << i0Sample
<< ", ADC value: " << adcvalue << std::endl;
}
return ret_code;
}
//------------- ( end of GetSampleAdcValues ) -----------------------
//====================================================================================================
//
// ReadSampleAdcValues: Get the Sample ADC values from file by using TEcnaRead.
//
//====================================================================================================
Bool_t TEcnaRun::ReadSampleAdcValues() { return ReadSampleAdcValues(fEcal->MaxSampADC()); }
Bool_t TEcnaRun::ReadSampleAdcValues(const Int_t& nb_samp_for_calc) {
// read the Sample ADC values from "ADC" result root files (ReadSampleAdcValues)
// put the number of sample for calculations in attribute fNbSampForCalc
// and call the method without arguments
// We must have: nb_samp_for_calc <= fFileHeader->fNbOfSamples (= nb of samples in ROOT file)
fNbSampForCalc = nb_samp_for_calc;
// TEcnaRead* MyRootFile = new TEcnaRead(fFlagSubDet.Data(), fCnaParPaths, fCnaParCout,
// fFileHeader, fEcalNumbering, fCnaWrite); // fCnew++;
TEcnaRead* MyRootFile = new TEcnaRead(fObjectManager, fFlagSubDet.Data()); // fCnew++;
MyRootFile->PrintNoComment();
MyRootFile->FileParameters(fFileHeader->fTypAna,
fFileHeader->fNbOfSamples,
fFileHeader->fRunNumber,
fFileHeader->fFirstReqEvtNumber,
fFileHeader->fLastReqEvtNumber,
fFileHeader->fReqNbOfEvts,
fFileHeader->fStex,
fCnaParPaths->ResultsRootFilePath().Data());
Bool_t ok_read = MyRootFile->LookAtRootFile();
fFileHeader->fStartTime = MyRootFile->GetStartTime();
fFileHeader->fStopTime = MyRootFile->GetStopTime();
fFileHeader->fStartDate = MyRootFile->GetStartDate();
fFileHeader->fStopDate = MyRootFile->GetStopDate();
if (ok_read == kTRUE) {
fRootFileName = MyRootFile->GetRootFileName();
fRootFileNameShort = MyRootFile->GetRootFileNameShort();
std::cout << "*TEcnaRun::ReadSampleAdcValues> Reading sample ADC values from file: " << std::endl
<< " " << fRootFileName << std::endl;
size_t i_no_data = 0;
//.......... Read the StinNumbers in the old file (ReadSampleAdcValues)
TVectorD vec(fEcal->MaxStinEcnaInStex());
for (Int_t i = 0; i < fEcal->MaxStinEcnaInStex(); i++) {
vec(i) = (Double_t)0.;
}
vec = MyRootFile->ReadStinNumbers(fEcal->MaxStinEcnaInStex());
if (MyRootFile->DataExist() == kTRUE) {
fTagStinNumbers[0] = 1;
fFileHeader->fStinNumbersCalc = 1;
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
fT1d_StexStinFromIndex[i0StexStinEcna] = (Int_t)vec(i0StexStinEcna);
}
} else {
i_no_data++;
}
//.......... Read the Numbers of Events in the old file (ReadSampleAdcValues)
TMatrixD partial_matrix(fEcal->MaxCrysInStin(), fFileHeader->fNbOfSamples);
for (Int_t i = 0; i < fEcal->MaxCrysInStin(); i++) {
for (Int_t j = 0; j < fFileHeader->fNbOfSamples; j++) {
partial_matrix(i, j) = (Double_t)0.;
}
}
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
Int_t n1StexStin = MyRootFile->GetStexStinFromIndex(i0StexStinEcna);
if (n1StexStin != -1) {
partial_matrix =
MyRootFile->ReadNumberOfEventsForSamples(n1StexStin, fEcal->MaxCrysInStin(), fFileHeader->fNbOfSamples);
if (MyRootFile->DataExist() == kTRUE) {
fTagNbOfEvts[0] = 1;
fFileHeader->fNbOfEvtsCalc = 1;
for (Int_t i0StinCrys = 0; i0StinCrys < fEcal->MaxCrysInStin(); i0StinCrys++) {
Int_t i0StexEcha = (n1StexStin - 1) * fEcal->MaxCrysInStin() + i0StinCrys;
for (Int_t i0Sample = 0; i0Sample < fFileHeader->fNbOfSamples; i0Sample++) {
fT2d_NbOfEvts[i0StexEcha][i0Sample] = (Int_t)partial_matrix(i0StinCrys, i0Sample);
}
}
} else {
i_no_data++;
}
}
}
//.......... Read the Sample ADC values in the old file (ReadSampleAdcValues)
Double_t*** fT3d_read_AdcValues = MyRootFile->ReadSampleAdcValuesSameFile(
fEcal->MaxCrysEcnaInStex(), fFileHeader->fNbOfSamples, fFileHeader->fReqNbOfEvts);
if (MyRootFile->DataExist() == kTRUE) {
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fFileHeader->fNbOfSamples; i0Sample++) {
for (Int_t i_event = 0; i_event < fFileHeader->fReqNbOfEvts; i_event++) {
fT3d_AdcValues[i0StexEcha][i0Sample][i_event] = fT3d_read_AdcValues[i0StexEcha][i0Sample][i_event];
}
}
}
} else {
i_no_data++;
}
if (i_no_data) {
std::cout << "!TEcnaRun::ReadSampleAdcValues(...)> *ERROR* =====> "
<< " Read failure. i_no_data = " << i_no_data << fTTBELL << std::endl;
}
} else {
std::cout << "!TEcnaRun::ReadSampleAdcValues(...)> *ERROR* =====> "
<< " ROOT file not found" << fTTBELL << std::endl;
}
delete MyRootFile; // fCdelete++;
return ok_read;
}
//------------- ( end of ReadSampleAdcValues ) -----------------------
//-------------------------------------------------------------------------
//
// Get the ROOT file name (long and short)
//
//-------------------------------------------------------------------------
const TString& TEcnaRun::GetRootFileName() const { return fRootFileName; }
const TString& TEcnaRun::GetRootFileNameShort() const { return fRootFileNameShort; }
//###################################################################################################
//
// THE FOLLOWING METHODS ARE CALLED AFTER THE LOOPS OVER EVENTS, STINS, CRYSTALS AND SAMPLES
//
//###################################################################################################
//=========================================================================
//
// Set start time, stop time, StartDate, StopDate
//
//=========================================================================
void TEcnaRun::StartStopTime(time_t t_startime, time_t t_stoptime) {
// Put the start an stop time (if they exist) in fFileHeader class attributes.
fFileHeader->fStartTime = t_startime;
fFileHeader->fStopTime = t_stoptime;
}
void TEcnaRun::StartStopDate(const TString& c_startdate, const TString& c_stopdate) {
// Put the start an stop date (if they exist) in fFileHeader class attributes.
fFileHeader->fStartDate = c_startdate;
fFileHeader->fStopDate = c_stopdate;
}
//=========================================================================
//
// GetReadyToCompute() (technical)
//
//=========================================================================
void TEcnaRun::GetReadyToCompute() {
//
// MAKE THE RESULTS FILE NAME and
// CHECK OF THE NUMBER OF FOUND EVENTS AND init fNumberOfEvents
// (number used to compute the average values over the events)
// The number of events fNumberOfEvents is extracted from the array fT2d_NbOfEvts[]
// which has been filled by the GetSampleAdcValues(...) method
//..................... Making of the Root File name that will be written
fCnaWrite->RegisterFileParameters(fFileHeader->fTypAna.Data(),
fFileHeader->fNbOfSamples,
fFileHeader->fRunNumber,
fFileHeader->fFirstReqEvtNumber,
fFileHeader->fLastReqEvtNumber,
fFileHeader->fReqNbOfEvts,
fFileHeader->fStex);
fCnaWrite->fMakeResultsFileName(); // set fRootFileName, fRootFileNameShort
//..................... Checking numbers of found events channel by channel
if (fT2d_NbOfEvts != nullptr) {
fNumberOfEvents = fCnaWrite->NumberOfEventsAnalysis(
fT2d_NbOfEvts, fEcal->MaxCrysEcnaInStex(), fNbSampForFic, fFileHeader->fReqNbOfEvts);
} else {
std::cout << "*TEcnaRun::GetReadyToCompute()> no data? fT2d_NbOfEvts = " << fT2d_NbOfEvts << std::endl;
}
}
// end of GetReadyToCompute()
//-------------------------------------------------------------------
//
// SampleValues() (technical)
//
// Written in .root file corresponding to analysis name
// beginning with: "Adc" (see EcnaAnalyzer.cc in package "Modules")
//
//-------------------------------------------------------------------
void TEcnaRun::SampleValues() {
//3D histo of the sample ADC values for all the triples (StexEcha, sample, event)
// The histo is already in fT3d_AdcValues[][][]
// this method sets the "Tag", increment the "f...Calc" (and must be kept for that)
// f...Calc > 0 => allow writing on file.
if (fFileHeader->fAdcEvtCalc > 0) {
fFileHeader->fAdcEvtCalc = 0;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
fTagAdcEvt[i0StexEcha] = 1;
fFileHeader->fAdcEvtCalc++;
}
}
//=========================================================================
//
// C A L C U L A T I O N M E T H O D S
//
// fTag... = 1 => Calculation done. OK for writing on result file
// ...Calc++ => Incrementation for result file size.
//
//=========================================================================
void TEcnaRun::StandardCalculations() {
SampleMeans();
SampleSigmas();
CorrelationsBetweenSamples();
Pedestals(); // => mean over Xtal's
TotalNoise();
LowFrequencyNoise();
HighFrequencyNoise();
MeanCorrelationsBetweenSamples();
SigmaOfCorrelationsBetweenSamples();
AveragePedestals(); // Average => mean over Stin's (Tower if EB, SC if EE)
AverageTotalNoise();
AverageLowFrequencyNoise();
AverageHighFrequencyNoise();
AverageMeanCorrelationsBetweenSamples();
AverageSigmaOfCorrelationsBetweenSamples();
}
void TEcnaRun::Expert1Calculations() {
// long time, big file
LowFrequencyCorrelationsBetweenChannels();
HighFrequencyCorrelationsBetweenChannels();
}
void TEcnaRun::Expert2Calculations() {
// long time, no big file
// expert 1 is called (if not called before) without writing in file.
// Results are used only in memory to compute expert2 calculations
LowFrequencyMeanCorrelationsBetweenStins();
HighFrequencyMeanCorrelationsBetweenStins();
}
//====================================================================
//
// E X P E C T A T I O N V A L U E S , V A R I A N C E S
//
//====================================================================
//----------------------------------------------------------------
// Calculation of the expectation values of the samples
// for all the StexEchas
//
// SMean(c,s) = E_e[A(c,s,e*)]
// A(c,s,e) : ADC value for channel c, sample s, event e
// E_e : average over the events
//----------------------------------------------------------------
void TEcnaRun::SampleMeans() {
// Calculation of the expectation values over events
// for the samples 0 to fNbSampForCalc and for all the StexEchas
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::SampleMeans() " << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation: sample expectation values over the events"
<< " for each channel." << std::endl;
}
//................... Allocation fT2d_ev
if (fT2d_ev == nullptr) {
Int_t n_samp = fNbSampForCalc;
Int_t n_StexEcha = fEcal->MaxCrysEcnaInStex();
fT2d_ev = new Double_t*[n_StexEcha];
fCnew++;
fT1d_ev = new Double_t[n_StexEcha * n_samp];
fCnew++;
for (Int_t i = 0; i < n_StexEcha; i++) {
fT2d_ev[i] = &fT1d_ev[0] + i * n_samp;
}
}
//................... init fT2d_ev to zero
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
[[clang::suppress]]
if (fT2d_ev[i0StexEcha][i0Sample] != (Double_t)0) {
fMiscDiag[1]++;
fT2d_ev[i0StexEcha][i0Sample] = (Double_t)0;
}
}
}
//................... Calculation
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
for (Int_t i_event = 0; i_event < fNumberOfEvents; i_event++) {
[[clang::suppress]] fT2d_ev[i0StexEcha][i0Sample] += fT3d_AdcValues[i0StexEcha][i0Sample][i_event];
}
[[clang::suppress]] fT2d_ev[i0StexEcha][i0Sample] /= fNumberOfEvents;
}
}
fTagMSp[0] = 1;
fFileHeader->fMSpCalc++;
}
//--------------------------------------------------------
// Calculation of the sigmas of the samples
// for all the StexEchas
//
// SSigma(c,s) = sqrt{ Cov_e[A(c,s,e*),A(c,s,e*)] }
// A(c,s,e) : ADC value for channel c, sample s, event e
// Cov_e : covariance over the events
//--------------------------------------------------------
void TEcnaRun::SampleSigmas() {
//Calculation of the sigmas of the samples for all the StexEchas
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::SampleSigmas()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation: sample ADC sigmas over the events "
<< " for each channel." << std::endl;
}
//... preliminary calculation of the expectation values if not done yet.
// The tag is set to 1 after call to the method. It is reset to 0
// because the expectation values must not be written in the result ROOT file
// (since the tag was equal to 0)
if (fTagMSp[0] != 1) {
SampleMeans();
fTagMSp[0] = 0;
}
//................... Allocation fT2d_sig
if (fT2d_sig == nullptr) {
Int_t n_StexEcha = fEcal->MaxCrysEcnaInStex();
Int_t n_samp = fNbSampForCalc;
fT2d_sig = new Double_t*[n_StexEcha];
fCnew++;
fT1d_sig = new Double_t[n_StexEcha * n_samp];
fCnew++;
for (Int_t i0StexEcha = 0; i0StexEcha < n_StexEcha; i0StexEcha++) {
fT2d_sig[i0StexEcha] = &fT1d_sig[0] + i0StexEcha * n_samp;
}
}
// ................... init fT2d_sig to zero
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
[[clang::suppress]]
if (fT2d_sig[i0StexEcha][i0Sample] != (Double_t)0) {
fMiscDiag[2]++;
fT2d_sig[i0StexEcha][i0Sample] = (Double_t)0;
}
}
}
//................... Calculation
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
Double_t variance = (Double_t)0.;
for (Int_t i_event = 0; i_event < fNumberOfEvents; i_event++) {
Double_t ecart = fT3d_AdcValues[i0StexEcha][i0Sample][i_event] - fT2d_ev[i0StexEcha][i0Sample];
variance += ecart * ecart;
}
variance /= fNumberOfEvents;
[[clang::suppress]] fT2d_sig[i0StexEcha][i0Sample] = sqrt(variance);
}
}
fTagSSp[0] = 1;
fFileHeader->fSSpCalc++;
}
//====================================================================
//
// C O V A R I A N C E S & C O R R E L A T I O N S
//
// B E T W E E N S A M P L E S
//
//====================================================================
//-----------------------------------------------------------
// Calculation of the covariances between samples
// for all the StexEchas
// Cov(c;s,s') = Cov_e[ A(c,s,e*) , A(c,s',e*) ]
// = E_e[ ( A(c,s,e*) - E_e[A(c,s,e*)] )*
// ( A(c,s',e*) - E_e[A(c,s',e*)] ) ]
// A(c,s,e) : ADC value for channel c, sample s, event e
// E_e , Cov_e : average, covariance over the events
//-----------------------------------------------------------
void TEcnaRun::CovariancesBetweenSamples() {
//Calculation of the covariances between samples for all the StexEchas
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::CovariancesBetweenSamples()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation: covariances between samples"
<< " for each channel." << std::endl;
}
//................... Allocations cov_ss
if (fT3d_cov_ss == nullptr) {
const Int_t n_samp = fNbSampForCalc;
const Int_t n_StexEcha = fEcal->MaxCrysEcnaInStex();
fT3d_cov_ss = new Double_t**[n_StexEcha];
fCnew++;
fT3d2_cov_ss = new Double_t*[n_StexEcha * n_samp];
fCnew++;
fT3d1_cov_ss = new Double_t[n_StexEcha * n_samp * n_samp];
fCnew++;
for (Int_t i = 0; i < n_StexEcha; i++) {
fT3d_cov_ss[i] = &fT3d2_cov_ss[0] + i * n_samp;
for (Int_t j = 0; j < n_samp; j++) {
fT3d2_cov_ss[n_samp * i + j] = &fT3d1_cov_ss[0] + n_samp * (n_samp * i + j);
}
}
}
//.................. Calculation (= init)
//.................. computation of half of the matrix, diagonal included)
//... preliminary calculation of the expectation values if not done yet.
// The tag is set to 1 after call to the method. It is reset to 0
// because the expectation values must not be written in the result ROOT file
// (since the tag was equal to 0)
// Results in array fT2d_ev[j0StexEcha][i0Sample]
if (fTagMSp[0] != 1) {
SampleMeans();
fTagMSp[0] = 0;
}
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
for (Int_t j0Sample = 0; j0Sample <= i0Sample; j0Sample++) {
[[clang::suppress]] fT3d_cov_ss[j0StexEcha][i0Sample][j0Sample] = (Double_t)0;
for (Int_t i_event = 0; i_event < fNumberOfEvents; i_event++) {
fT3d_cov_ss[j0StexEcha][i0Sample][j0Sample] +=
(fT3d_AdcValues[j0StexEcha][i0Sample][i_event] - fT2d_ev[j0StexEcha][i0Sample]) *
(fT3d_AdcValues[j0StexEcha][j0Sample][i_event] - fT2d_ev[j0StexEcha][j0Sample]);
}
fT3d_cov_ss[j0StexEcha][i0Sample][j0Sample] /= (Double_t)fNumberOfEvents;
fT3d_cov_ss[j0StexEcha][j0Sample][i0Sample] = fT3d_cov_ss[j0StexEcha][i0Sample][j0Sample];
}
}
fTagCovCss[j0StexEcha] = 1;
fFileHeader->fCovCssCalc++;
}
}
//-----------------------------------------------------------
//
// Calculation of the correlations between samples
// for all the StexEchas
// Cor(c;s,s') = Cov(c;s,s')/sqrt{ Cov(c;s,s)*Cov(c;s',s') }
//-----------------------------------------------------------
void TEcnaRun::CorrelationsBetweenSamples() {
//Calculation of the correlations between samples for all the StexEchas
//... preliminary calculation of the covariances if not done yet.
// Test only the first tag since the cov are computed globaly
// but set all the tags to 0 because we don't want to write
// the covariances in the result ROOT file
if (fTagCovCss[0] != 1) {
CovariancesBetweenSamples();
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
fTagCovCss[j0StexEcha] = 0;
}
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::CorrelationsBetweenSamples()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation: correlations between samples"
<< " for each channel." << std::endl;
}
//................... Allocations cor_ss
if (fT3d_cor_ss == nullptr) {
const Int_t n_samp = fNbSampForCalc;
const Int_t n_StexEcha = fEcal->MaxCrysEcnaInStex();
fT3d_cor_ss = new Double_t**[n_StexEcha];
fCnew++;
fT3d2_cor_ss = new Double_t*[n_StexEcha * n_samp];
fCnew++;
fT3d1_cor_ss = new Double_t[n_StexEcha * n_samp * n_samp];
fCnew++;
for (Int_t i = 0; i < n_StexEcha; i++) {
fT3d_cor_ss[i] = &fT3d2_cor_ss[0] + i * n_samp;
for (Int_t j = 0; j < n_samp; j++) {
fT3d2_cor_ss[n_samp * i + j] = &fT3d1_cor_ss[0] + n_samp * (n_samp * i + j);
}
}
}
//..................... calculation of the correlations (=init)
//......................computation of half of the matrix, diagonal included (verif = 1)
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
for (Int_t j0Sample = 0; j0Sample <= i0Sample; j0Sample++) {
if ((fT3d_cov_ss[j0StexEcha][i0Sample][i0Sample] > 0) && (fT3d_cov_ss[j0StexEcha][j0Sample][j0Sample] > 0)) {
[[clang::suppress]] fT3d_cor_ss[j0StexEcha][i0Sample][j0Sample] =
fT3d_cov_ss[j0StexEcha][i0Sample][j0Sample] /
(sqrt(fT3d_cov_ss[j0StexEcha][i0Sample][i0Sample]) * sqrt(fT3d_cov_ss[j0StexEcha][j0Sample][j0Sample]));
} else {
[[clang::suppress]] fT3d_cor_ss[j0StexEcha][i0Sample][j0Sample] = (Double_t)0; // prevoir compteur + fTTBELL
}
fT3d_cor_ss[j0StexEcha][j0Sample][i0Sample] = fT3d_cor_ss[j0StexEcha][i0Sample][j0Sample];
}
}
fTagCorCss[j0StexEcha] = 1;
fFileHeader->fCorCssCalc++;
}
}
//===========================================================================
//
// M E A N P E D E S T A L S , T O T A L N O I S E ,
// L O W F R E Q U E N C Y N O I S E ,
// H I G H F R E Q U E N C Y N O I S E
// M E A N O F C O R ( S , S ), S I G M A O F C O R ( S , S )
//
//===========================================================================
//-------------------------------------------------------------------------
//
// Calculation of the Pedestals for each channel in Stex
// tag: Ped
// Pedestal(c ) = E_e[ E_s[A(c ,s*,e*)] ]
// A(c,s,e) : ADC value for channel c, sample s, event e
// E_e : average over the events
// E_s : average over the samples
//
//-------------------------------------------------------------------------
void TEcnaRun::Pedestals() {
// Calculation, for each channel, of the expectation values
// (over the samples 0 to fNbSampForCalc-1) of the ADC expectation values
// (over the events)
//... preliminary calculation of the expectation values if not done yet
if (fTagMSp[0] != 1) {
SampleMeans();
fTagMSp[0] = 0;
}
//................... Allocation ev_ev + init to zero (mandatory)
if (fT1d_ev_ev == nullptr) {
fT1d_ev_ev = new Double_t[fEcal->MaxCrysEcnaInStex()];
fCnew++;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
[[clang::suppress]]
if (fT1d_ev_ev[i0StexEcha] != (Double_t)0) {
fMiscDiag[11]++;
fT1d_ev_ev[i0StexEcha] = (Double_t)0;
}
}
//..................... Calculation
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::Pedestals()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for all the channels, of the expectation values (over the samples 1 to "
<< fNbSampForCalc << ")" << std::endl
<< " of the ADC expectation values (over the events)." << std::endl;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
[[clang::suppress]] fT1d_ev_ev[i0StexEcha] += fT2d_ev[i0StexEcha][i0Sample];
}
[[clang::suppress]] fT1d_ev_ev[i0StexEcha] /= fNbSampForCalc;
}
fTagPed[0] = 1;
fFileHeader->fPedCalc++;
}
//------------------------ (end of Pedestals) ----------------------------
//------------------------------------------------------------------------------
//
// Calculation of the TN (Total Noise)
// tag: Tno
//
// TotalNoise(c) = E_s[ sqrt{ E_e[ ( A(c ,s*,e*) - E_e[A(c ,s*,e*)] )^2 ] } ]
// A(c,s,e) : ADC value for channel c, sample s, event e
// E_e : average over the events
// E_s : average over the samples
//
//------------------------------------------------------------------------------
void TEcnaRun::TotalNoise() {
// Calculation, for each channel, of the expectation values
// (over the samples 0 to fNbSampForCalc-1) of the sigmas
// (over the events)
//... preliminary calculation of the sigmas if not done yet
if (fTagSSp[0] != 1) {
SampleSigmas();
fTagSSp[0] = 0;
}
//................... Allocation ev_ev + init to zero (mandatory)
if (fT1d_evsamp_of_sigevt == nullptr) {
fT1d_evsamp_of_sigevt = new Double_t[fEcal->MaxCrysEcnaInStex()];
fCnew++;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
if (fT1d_evsamp_of_sigevt[i0StexEcha] != (Double_t)0) {
fMiscDiag[12]++;
[[clang::suppress]] fT1d_evsamp_of_sigevt[i0StexEcha] = (Double_t)0;
}
}
//..................... Calculation
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::TotalNoise()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for all the channels, of the expectation values (over the samples 1 to "
<< fNbSampForCalc << ")" << std::endl
<< " of the ADC expectation values (over the events)." << std::endl;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
if (fT2d_sig[i0StexEcha][i0Sample] < 0) {
std::cout << "!TEcnaRun::TotalNoise() *** ERROR ***> Negative sigma!" << fTTBELL << std::endl;
} else {
[[clang::suppress]] fT1d_evsamp_of_sigevt[i0StexEcha] += fT2d_sig[i0StexEcha][i0Sample];
}
}
[[clang::suppress]] fT1d_evsamp_of_sigevt[i0StexEcha] /= fNbSampForCalc;
}
fTagTno[0] = 1;
fFileHeader->fTnoCalc++;
}
//------------------------ (end of TotalNoise) ----------------------------
//---------------------------------------------------------------------------------
//
// Calculation of the LFN (Low Frequency Noise)
// tag: Lfn
//
// LowFqNoise(c) = sqrt{ E_e[ ( E_s[A(c ,s*,e*)] - E_e[ E_s[A(c ,s*,e*)] ] )^2 ] }
// A(c,s,e) : ADC value for channel c, sample s, event e
// E_e : average over the events
// E_s : average over the samples
//
//---------------------------------------------------------------------------------
void TEcnaRun::LowFrequencyNoise() {
// Calculation, for each channel, of the sigma (over the events)
// of the ADC expectation values (over the samples 0 to fNbSampForCalc-1)
//................... Allocation fT1d_sigevt_of_evsamp + init to zero (mandatory)
if (fT1d_sigevt_of_evsamp == nullptr) {
fT1d_sigevt_of_evsamp = new Double_t[fEcal->MaxCrysEcnaInStex()];
fCnew++;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
if (fT1d_sigevt_of_evsamp[i0StexEcha] != (Double_t)0) {
fMiscDiag[13]++;
[[clang::suppress]] fT1d_sigevt_of_evsamp[i0StexEcha] = (Double_t)0;
}
}
//................... Allocation mean_over_samples
TVectorD mean_over_samples(fNumberOfEvents);
for (Int_t i = 0; i < fNumberOfEvents; i++) {
mean_over_samples(i) = (Double_t)0.;
}
//..................... Calculation
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::LowFrequencyNoise()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for each channel, of the sigma (over the events)" << std::endl
<< " of the ADC expectation values (over the samples 1 to " << fNbSampForCalc << ")."
<< std::endl;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
// Calculation of the mean over the events of the mean over the samples
Double_t mean_over_events = (Double_t)0;
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
// Calculation, for each event, of the mean over the samples
mean_over_samples(n_event) = (Double_t)0.;
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
mean_over_samples(n_event) += fT3d_AdcValues[i0StexEcha][i0Sample][n_event];
}
mean_over_samples(n_event) /= (Double_t)fNbSampForCalc;
mean_over_events += mean_over_samples(n_event);
}
mean_over_events /= (Double_t)fNumberOfEvents;
// Calculation of the sigma over the events of the mean over the samples
Double_t var = (Double_t)0;
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
Double_t ecart = mean_over_samples(n_event) - mean_over_events;
var += ecart * ecart;
}
var /= (Double_t)fNumberOfEvents;
fT1d_sigevt_of_evsamp[i0StexEcha] = sqrt(var);
}
fTagLfn[0] = 1;
fFileHeader->fLfnCalc++;
}
//------------------------ (end of LowFrequencyNoise) ----------------------------
//---------------------------------------------------------------------------------
//
// Calculation of the HFN (High Frequency Noise)
// tag: Hfn
//
// HighFqNoise(c) = E_e[ sqrt{ E_s[ (A(c ,s*,e*) - E_s[A(c ,s*,e*)] )^2 ] } ]
// A(c,s,e) : ADC value for channel c, sample s, event e
// E_e : average over the events
// E_s : average over the samples
//
//---------------------------------------------------------------------------------
void TEcnaRun::HighFrequencyNoise() {
// Calculation, for each channel, of the mean (over the events)
// of the ADC sigmas (over the samples 0 to fNbSampForCalc-1)
//................... Allocation fT1d_evevt_of_sigsamp + init to zero (mandatory)
if (fT1d_evevt_of_sigsamp == nullptr) {
fT1d_evevt_of_sigsamp = new Double_t[fEcal->MaxCrysEcnaInStex()];
fCnew++;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
if (fT1d_evevt_of_sigsamp[i0StexEcha] != (Double_t)0) {
fMiscDiag[14]++;
[[clang::suppress]] fT1d_evevt_of_sigsamp[i0StexEcha] = (Double_t)0;
}
}
//................... Allocations mean_over_samples, sigma_over_sample
TVectorD mean_over_samples(fNumberOfEvents);
for (Int_t i = 0; i < fNumberOfEvents; i++) {
mean_over_samples(i) = (Double_t)0.;
}
TVectorD sigma_over_samples(fNumberOfEvents);
for (Int_t i = 0; i < fNumberOfEvents; i++) {
sigma_over_samples(i) = (Double_t)0.;
}
//..................... Calculation
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::HighFrequencyNoise()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for each channel, of the sigma (over the events)" << std::endl
<< " of the ADC expectation values (over the samples 1 to " << fNbSampForCalc << ")."
<< std::endl;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
//..................... Calculation of the sigma over samples
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
// Calculation, for each event, of the mean over the samples
mean_over_samples(n_event) = (Double_t)0.;
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
mean_over_samples(n_event) += fT3d_AdcValues[i0StexEcha][i0Sample][n_event];
}
mean_over_samples(n_event) /= (Double_t)fNbSampForCalc;
// Calculation, for each event, of the sigma over the samples
Double_t var_over_samples = (Double_t)0;
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
Double_t deviation = fT3d_AdcValues[i0StexEcha][i0Sample][n_event] - mean_over_samples(n_event);
var_over_samples += deviation * deviation;
}
var_over_samples /= (Double_t)fNbSampForCalc;
if (var_over_samples < 0) {
std::cout << "!TEcnaRun::HighFrequencyNoise() *** ERROR ***> Negative variance! " << fTTBELL << std::endl;
} else {
sigma_over_samples(n_event) = sqrt(var_over_samples);
}
}
//....... Calculation of the mean over the events of the sigma over samples
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
fT1d_evevt_of_sigsamp[i0StexEcha] += sigma_over_samples(n_event);
}
fT1d_evevt_of_sigsamp[i0StexEcha] /= (Double_t)fNumberOfEvents;
}
fTagHfn[0] = 1;
fFileHeader->fHfnCalc++;
}
//------------------------ (end of HighFrequencyNoise) ----------------------------
//-------------------------------------------------------------------------
//
// Calculation of the expectation values of (sample,sample)
// correlations for all the channels (mean cor(s,s))
// tag: MeanCorss
//
// MeanCorss(c) = E_s,s'[ Cor(c;s,s') ]
// E_s,s': average over couples of samples (half correlation matrix)
//
//-------------------------------------------------------------------------
void TEcnaRun::MeanCorrelationsBetweenSamples() {
// Calculation, for all the channels, of the expectation values
// of the correlations between the first fNbSampForCalc samples
//... preliminary calculation of the correlations if not done yet
// (test only the first element since the cor are computed globaly)
if (fTagCorCss[0] != 1) {
CorrelationsBetweenSamples();
fTagCorCss[0] = 0;
}
//................... Allocations ev_cor_ss + init to zero (mandatory)
if (fT1d_ev_cor_ss == nullptr) {
Int_t n_StexEcha = fEcal->MaxCrysEcnaInStex();
fT1d_ev_cor_ss = new Double_t[n_StexEcha];
fCnew++;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
if (fT1d_ev_cor_ss[i0StexEcha] != (Double_t)0) {
fMiscDiag[15]++;
fT1d_ev_cor_ss[i0StexEcha] = (Double_t)0;
}
}
//.......... 1D array half_cor_ss[N(N-1)/2] to put the N (sample,sample) correlations
// ( half of (them minus the diagonal) )
Int_t ndim = (Int_t)(fNbSampForCalc * (fNbSampForCalc - 1) / 2);
TVectorD half_cor_ss(ndim);
for (Int_t i = 0; i < ndim; i++) {
half_cor_ss(i) = (Double_t)0.;
}
//..................... Calculation
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::MeanCorrelationsBetweenSamples()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for all the channels, of the expectation values of the" << std::endl
<< " correlations between the first " << fNbSampForCalc << " samples." << std::endl;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
//..................... half_cor_ss() array filling
Int_t i_count = 0;
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
for (Int_t j0Sample = 0; j0Sample < i0Sample; j0Sample++) {
half_cor_ss(i_count) = fT3d_cor_ss[i0StexEcha][i0Sample][j0Sample];
i_count++;
}
}
//...................... mean cor(s,s') calculation
fT1d_ev_cor_ss[i0StexEcha] = (Double_t)0;
for (Int_t i_rcor = 0; i_rcor < ndim; i_rcor++) {
fT1d_ev_cor_ss[i0StexEcha] += half_cor_ss(i_rcor);
}
fT1d_ev_cor_ss[i0StexEcha] /= (Double_t)ndim;
}
fTagMeanCorss[0] = 1;
fFileHeader->fMeanCorssCalc++;
}
//--------------- (end of MeanCorrelationsBetweenSamples) -----------
//-------------------------------------------------------------------------
//
// Calculation of the sigmas of the (sample,sample) correlations
// for all the channels (sigma of cor(s,s))
// tag: SigCorss
//
// SigmaCorss(c) = E_s,s'[ Cor(c;s,s') - E_s,s'[ Cor(c;s,s') ] ]
// E_s,s': average over couples of samples (half correlation matrix)
//
//--------------------------------------------------------------------------
void TEcnaRun::SigmaOfCorrelationsBetweenSamples() {
//Calculation of the sigmas of the (sample,sample) correlations for all the StexEchas
//... preliminary calculation of the mean cor(s,s') if not done yet
// (test only the first element since the cor are computed globaly)
// Results available in array fT1d_ev_cor_ss[i0StexEcha]
if (fTagMeanCorss[0] != 1) {
MeanCorrelationsBetweenSamples();
fTagMeanCorss[0] = 0;
}
//................... Allocations sig_cor_ss + init to zero
if (fT1d_sig_cor_ss == nullptr) {
Int_t n_StexEcha = fEcal->MaxCrysEcnaInStex();
fT1d_sig_cor_ss = new Double_t[n_StexEcha];
fCnew++;
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
if (fT1d_sig_cor_ss[i0StexEcha] != (Double_t)0) {
fMiscDiag[16]++;
fT1d_sig_cor_ss[i0StexEcha] = (Double_t)0;
}
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::SigmasOfCorrelationsBetweenSamples()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation of the sigmas of the (sample,sample)" << std::endl
<< " correlations for all the channels." << std::endl;
}
//.......... 1D array half_cor_ss[N(N-1)/2] to put the N (sample,sample) correlations
// (half of them minus the diagonal)
Int_t ndim = (Int_t)(fNbSampForCalc * (fNbSampForCalc - 1) / 2);
TVectorD half_cor_ss(ndim);
for (Int_t i = 0; i < ndim; i++) {
half_cor_ss(i) = (Double_t)0.;
}
//.................. Calculation
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
//..................... half_cor_ss() array filling
Int_t i_count = 0;
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
for (Int_t j0Sample = 0; j0Sample < i0Sample; j0Sample++) {
half_cor_ss(i_count) = fT3d_cor_ss[i0StexEcha][i0Sample][j0Sample];
i_count++;
}
}
//...................... sigma of cor(s,s') calculation
Double_t var = (Double_t)0;
for (Int_t i_rcor = 0; i_rcor < ndim; i_rcor++) {
Double_t ecart = half_cor_ss(i_rcor) - fT1d_ev_cor_ss[i0StexEcha];
var += ecart * ecart;
}
var /= (Double_t)ndim;
fT1d_sig_cor_ss[i0StexEcha] = sqrt(var);
}
fTagSigCorss[0] = 1;
fFileHeader->fSigCorssCalc++;
}
//--------------- (end of SigmaOfCorrelationsBetweenSamples) -----------
//-----------------------------------------------------------------------------
//
// Calculation of the average Pedestals for each Stin in Stex
// tag: AvPed
//
//-----------------------------------------------------------------------------
void TEcnaRun::AveragePedestals() {
// Calculation of the average
// (over the Stin's 0 to fEcal->MaxStinInStex()) of the Pedestals
//... preliminary calculation of the Pedestals if not done yet
if (fTagPed[0] != 1) {
Pedestals();
fTagPed[0] = 0;
}
//................... Allocation av_mped + init to zero (mandatory)
if (fT1d_av_mped == nullptr) {
fT1d_av_mped = new Double_t[fEcal->MaxStinEcnaInStex()];
fCnew++;
}
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
if (fT1d_av_mped[i0StexStinEcna] != (Double_t)0) {
fMiscDiag[41]++;
fT1d_av_mped[i0StexStinEcna] = (Double_t)0;
}
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::AveragePedestals()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for all the " << fStinName.Data() << "s, of the average Pedestals"
<< std::endl;
}
//................... Calculation
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
Int_t n1StexStinEcna = i0StexStinEcna + 1;
fT1d_av_mped[i0StexStinEcna] = (Double_t)0;
for (Int_t i0StinEcha = 0; i0StinEcha < fEcal->MaxCrysInStin(); i0StinEcha++) {
Int_t i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(n1StexStinEcna, i0StinEcha);
if (fStexName == "SM ") {
fT1d_av_mped[i0StexStinEcna] += fT1d_ev_ev[i0StexEcha];
}
if (fStexName == "Dee") {
//---------------- Special translation for mixed SCEcna (29 and 32)
// Xtal 11 of SCEcna 29 -> Xtal 11 of SCEcna 10
// Xtal 11 of SCEcna 32 -> Xtal 11 of SCEcna 11
Int_t n1StinEcha = i0StinEcha + 1;
if (n1StexStinEcna == 10 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(29, i0StinEcha);
}
if (n1StexStinEcna == 11 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(32, i0StinEcha);
}
if (!((n1StexStinEcna == 29 || n1StexStinEcna == 32) && n1StinEcha == 11)) {
fT1d_av_mped[i0StexStinEcna] += fT1d_ev_ev[i0StexEcha];
}
}
}
Double_t xdivis = (Double_t)0.;
if (fStexName == "SM ") {
xdivis = (Double_t)fEcal->MaxCrysInStin();
}
if (fStexName == "Dee") {
xdivis = (Double_t)fEcalNumbering->MaxCrysInStinEcna(fFileHeader->fStex, n1StexStinEcna, "TEcnaRun");
}
fT1d_av_mped[i0StexStinEcna] = fT1d_av_mped[i0StexStinEcna] / xdivis;
}
fTagAvPed[0] = 1;
fFileHeader->fAvPedCalc++;
}
//-----------------------------------------------------------------------------
//
// Calculation of the average total noise for each Stin in Stex
// tag: AvTno
//
//-----------------------------------------------------------------------------
void TEcnaRun::AverageTotalNoise() {
// Calculation of the average
// (over the Stin's 0 to fEcal->MaxStinInStex()) of the Total Noise
//... preliminary calculation of the averaged Total Noise if not done yet
if (fTagTno[0] != 1) {
TotalNoise();
fTagTno[0] = 0;
}
//................... Allocation av_totn + init to zero (mandatory)
if (fT1d_av_totn == nullptr) {
fT1d_av_totn = new Double_t[fEcal->MaxStinEcnaInStex()];
fCnew++;
}
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
if (fT1d_av_totn[i0StexStinEcna] != (Double_t)0) {
fMiscDiag[42]++;
fT1d_av_totn[i0StexStinEcna] = (Double_t)0;
}
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::AverageTotalNoise()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for all the " << fStinName.Data() << "s, of the average total Noise"
<< std::endl;
}
//................... Calculation
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
Int_t n1StexStinEcna = i0StexStinEcna + 1;
fT1d_av_totn[i0StexStinEcna] = (Double_t)0;
for (Int_t i0StinEcha = 0; i0StinEcha < fEcal->MaxCrysInStin(); i0StinEcha++) {
Int_t i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(n1StexStinEcna, i0StinEcha);
if (fStexName == "SM ") {
fT1d_av_totn[i0StexStinEcna] += fT1d_evsamp_of_sigevt[i0StexEcha];
}
if (fStexName == "Dee") {
//---------------- Special translation for mixed SCEcna (29 and 32)
// Xtal 11 of SCEcna 29 -> Xtal 11 of SCEcna 10
// Xtal 11 of SCEcna 32 -> Xtal 11 of SCEcna 11
Int_t n1StinEcha = i0StinEcha + 1;
if (n1StexStinEcna == 10 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(29, i0StinEcha);
}
if (n1StexStinEcna == 11 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(32, i0StinEcha);
}
if (!((n1StexStinEcna == 29 || n1StexStinEcna == 32) && n1StinEcha == 11)) {
fT1d_av_totn[i0StexStinEcna] += fT1d_evsamp_of_sigevt[i0StexEcha];
}
}
}
Double_t xdivis = (Double_t)0.;
if (fStexName == "SM ") {
xdivis = (Double_t)fEcal->MaxCrysInStin();
}
if (fStexName == "Dee") {
xdivis = (Double_t)fEcalNumbering->MaxCrysInStinEcna(fFileHeader->fStex, n1StexStinEcna, "TEcnaRun");
}
fT1d_av_totn[i0StexStinEcna] = fT1d_av_totn[i0StexStinEcna] / xdivis;
}
fTagAvTno[0] = 1;
fFileHeader->fAvTnoCalc++;
}
//-----------------------------------------------------------------------------
//
// Calculation of the average Low Frequency noise for each Stin in Stex
// tag: AvLfn
//
//-----------------------------------------------------------------------------
void TEcnaRun::AverageLowFrequencyNoise() {
// Calculation of the average
// (over the Stin's 0 to fEcal->MaxStinInStex()) of the Low Frequency Noise
//... preliminary calculation of the Low Frequency Noise if not done yet
if (fTagLfn[0] != 1) {
LowFrequencyNoise();
fTagLfn[0] = 0;
}
//................... Allocation av_lofn + init to zero (mandatory)
if (fT1d_av_lofn == nullptr) {
fT1d_av_lofn = new Double_t[fEcal->MaxStinEcnaInStex()];
fCnew++;
}
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
if (fT1d_av_lofn[i0StexStinEcna] != (Double_t)0) {
fMiscDiag[43]++;
fT1d_av_lofn[i0StexStinEcna] = (Double_t)0;
}
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::AverageLowFrequencyNoise()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for all the " << fStinName.Data() << "s, of the average Low Frequency Noise"
<< std::endl;
}
//................... Calculation
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
Int_t n1StexStinEcna = i0StexStinEcna + 1;
fT1d_av_lofn[i0StexStinEcna] = (Double_t)0;
for (Int_t i0StinEcha = 0; i0StinEcha < fEcal->MaxCrysInStin(); i0StinEcha++) {
Int_t i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(n1StexStinEcna, i0StinEcha);
if (fStexName == "SM ") {
fT1d_av_lofn[i0StexStinEcna] += fT1d_sigevt_of_evsamp[i0StexEcha];
}
if (fStexName == "Dee") {
//---------------- Special translation for mixed SCEcna (29 and 32)
// Xtal 11 of SCEcna 29 -> Xtal 11 of SCEcna 10
// Xtal 11 of SCEcna 32 -> Xtal 11 of SCEcna 11
Int_t n1StinEcha = i0StinEcha + 1;
if (n1StexStinEcna == 10 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(29, i0StinEcha);
}
if (n1StexStinEcna == 11 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(32, i0StinEcha);
}
if (!((n1StexStinEcna == 29 || n1StexStinEcna == 32) && n1StinEcha == 11)) {
fT1d_av_lofn[i0StexStinEcna] += fT1d_sigevt_of_evsamp[i0StexEcha];
}
}
}
Double_t xdivis = (Double_t)0.;
if (fStexName == "SM ") {
xdivis = (Double_t)fEcal->MaxCrysInStin();
}
if (fStexName == "Dee") {
xdivis = (Double_t)fEcalNumbering->MaxCrysInStinEcna(fFileHeader->fStex, n1StexStinEcna, "TEcnaRun");
}
fT1d_av_lofn[i0StexStinEcna] = fT1d_av_lofn[i0StexStinEcna] / xdivis;
}
fTagAvLfn[0] = 1;
fFileHeader->fAvLfnCalc++;
}
//-----------------------------------------------------------------------------
//
// Calculation of the average high frequency noise for each Stin in Stex
// tag: AvHfn
//
//-----------------------------------------------------------------------------
void TEcnaRun::AverageHighFrequencyNoise() {
// Calculation of the average
// (over the Stin's 0 to fEcal->MaxStinInStex()) of the High Frequency Noise
//... preliminary calculation of the High Frequency Noise if not done yet
if (fTagHfn[0] != 1) {
HighFrequencyNoise();
fTagHfn[0] = 0;
}
//................... Allocation av_hifn + init to zero (mandatory)
if (fT1d_av_hifn == nullptr) {
fT1d_av_hifn = new Double_t[fEcal->MaxStinEcnaInStex()];
fCnew++;
}
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
if (fT1d_av_hifn[i0StexStinEcna] != (Double_t)0) {
fMiscDiag[44]++;
fT1d_av_hifn[i0StexStinEcna] = (Double_t)0;
}
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::AverageHighFrequencyNoise()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for all the " << fStinName.Data() << "s, of the average High Frequency Noise"
<< std::endl;
}
//................... Calculation
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
Int_t n1StexStinEcna = i0StexStinEcna + 1;
fT1d_av_hifn[i0StexStinEcna] = (Double_t)0;
for (Int_t i0StinEcha = 0; i0StinEcha < fEcal->MaxCrysInStin(); i0StinEcha++) {
Int_t i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(n1StexStinEcna, i0StinEcha);
if (fStexName == "SM ") {
fT1d_av_hifn[i0StexStinEcna] += fT1d_evevt_of_sigsamp[i0StexEcha];
}
if (fStexName == "Dee") {
//---------------- Special translation for mixed SCEcna (29 and 32)
// Xtal 11 of SCEcna 29 -> Xtal 11 of SCEcna 10
// Xtal 11 of SCEcna 32 -> Xtal 11 of SCEcna 11
Int_t n1StinEcha = i0StinEcha + 1;
if (n1StexStinEcna == 10 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(29, i0StinEcha);
}
if (n1StexStinEcna == 11 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(32, i0StinEcha);
}
if (!((n1StexStinEcna == 29 || n1StexStinEcna == 32) && n1StinEcha == 11)) {
fT1d_av_hifn[i0StexStinEcna] += fT1d_evevt_of_sigsamp[i0StexEcha];
}
}
}
Double_t xdivis = (Double_t)0.;
if (fStexName == "SM ") {
xdivis = (Double_t)fEcal->MaxCrysInStin();
}
if (fStexName == "Dee") {
xdivis = (Double_t)fEcalNumbering->MaxCrysInStinEcna(fFileHeader->fStex, n1StexStinEcna, "TEcnaRun");
}
fT1d_av_hifn[i0StexStinEcna] = fT1d_av_hifn[i0StexStinEcna] / xdivis;
}
fTagAvHfn[0] = 1;
fFileHeader->fAvHfnCalc++;
}
//-----------------------------------------------------------------------------
//
// Calculation of the average mean cor(s,s) for each Stin in Stex
// tag: AvMeanCorss
//
//-----------------------------------------------------------------------------
void TEcnaRun::AverageMeanCorrelationsBetweenSamples() {
// Calculation of the average
// (over the Stin's 0 to fEcal->MaxStinInStex()) of the mean cor(s,s)
//... preliminary calculation of the mean cor(s,s) if not done yet
if (fTagMeanCorss[0] != 1) {
MeanCorrelationsBetweenSamples();
fTagMeanCorss[0] = 0;
}
//................... Allocation av_ev_corss + init to zero (mandatory)
if (fT1d_av_ev_corss == nullptr) {
fT1d_av_ev_corss = new Double_t[fEcal->MaxStinEcnaInStex()];
fCnew++;
}
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
if (fT1d_av_ev_corss[i0StexStinEcna] != (Double_t)0) {
fMiscDiag[45]++;
fT1d_av_ev_corss[i0StexStinEcna] = (Double_t)0;
}
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::AverageMeanCorrelationsBetweenSamples()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for all the " << fStinName.Data() << "s, of the average mean cor(s,s)"
<< std::endl;
}
//................... Calculation
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
Int_t n1StexStinEcna = i0StexStinEcna + 1;
fT1d_av_ev_corss[i0StexStinEcna] = (Double_t)0;
for (Int_t i0StinEcha = 0; i0StinEcha < fEcal->MaxCrysInStin(); i0StinEcha++) {
Int_t i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(n1StexStinEcna, i0StinEcha);
if (fStexName == "SM ") {
fT1d_av_ev_corss[i0StexStinEcna] += fT1d_ev_cor_ss[i0StexEcha];
}
if (fStexName == "Dee") {
//---------------- Special translation for mixed SCEcna (29 and 32)
// Xtal 11 of SCEcna 29 -> Xtal 11 of SCEcna 10
// Xtal 11 of SCEcna 32 -> Xtal 11 of SCEcna 11
Int_t n1StinEcha = i0StinEcha + 1;
if (n1StexStinEcna == 10 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(29, i0StinEcha);
}
if (n1StexStinEcna == 11 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(32, i0StinEcha);
}
if (!((n1StexStinEcna == 29 || n1StexStinEcna == 32) && n1StinEcha == 11)) {
fT1d_av_ev_corss[i0StexStinEcna] += fT1d_ev_cor_ss[i0StexEcha];
}
}
}
Double_t xdivis = (Double_t)0.;
if (fStexName == "SM ") {
xdivis = (Double_t)fEcal->MaxCrysInStin();
}
if (fStexName == "Dee") {
xdivis = (Double_t)fEcalNumbering->MaxCrysInStinEcna(fFileHeader->fStex, n1StexStinEcna, "TEcnaRun");
}
fT1d_av_ev_corss[i0StexStinEcna] = fT1d_av_ev_corss[i0StexStinEcna] / xdivis;
}
fTagAvMeanCorss[0] = 1;
fFileHeader->fAvMeanCorssCalc++;
}
//-----------------------------------------------------------------------------
//
// Calculation of the average sigma of cor(s,s) for each Stin in Stex
// tag: AvSigCorss
//
//-----------------------------------------------------------------------------
void TEcnaRun::AverageSigmaOfCorrelationsBetweenSamples() {
// Calculation of the average
// (over the Stin's 0 to fEcal->MaxStinInStex()) of the sigma of cor(s,s)
//... preliminary calculation of the sigma of cor(s,s) if not done yet
if (fTagSigCorss[0] != 1) {
SigmaOfCorrelationsBetweenSamples();
fTagSigCorss[0] = 0;
}
//................... Allocation av_sig_corss + init to zero (mandatory)
if (fT1d_av_sig_corss == nullptr) {
fT1d_av_sig_corss = new Double_t[fEcal->MaxStinEcnaInStex()];
fCnew++;
}
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
if (fT1d_av_sig_corss[i0StexStinEcna] != (Double_t)0) {
fMiscDiag[46]++;
fT1d_av_sig_corss[i0StexStinEcna] = (Double_t)0;
}
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::AverageSigmaOfCorrelationsBetweenSamples()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for all the " << fStinName.Data() << "s, of the average sigma of cor(s,s)"
<< std::endl;
}
//................... Calculation
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
Int_t n1StexStinEcna = i0StexStinEcna + 1;
fT1d_av_sig_corss[i0StexStinEcna] = (Double_t)0;
for (Int_t i0StinEcha = 0; i0StinEcha < fEcal->MaxCrysInStin(); i0StinEcha++) {
Int_t i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(n1StexStinEcna, i0StinEcha);
if (fStexName == "SM ") {
fT1d_av_sig_corss[i0StexStinEcna] += fT1d_sig_cor_ss[i0StexEcha];
}
if (fStexName == "Dee") {
//---------------- Special translation for mixed SCEcna (29 and 32)
// Xtal 11 of SCEcna 29 -> Xtal 11 of SCEcna 10
// Xtal 11 of SCEcna 32 -> Xtal 11 of SCEcna 11
Int_t n1StinEcha = i0StinEcha + 1;
if (n1StexStinEcna == 10 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(29, i0StinEcha);
}
if (n1StexStinEcna == 11 && n1StinEcha == 11) {
i0StexEcha = fEcalNumbering->Get0StexEchaFrom1StexStinAnd0StinEcha(32, i0StinEcha);
}
if (!((n1StexStinEcna == 29 || n1StexStinEcna == 32) && n1StinEcha == 11)) {
fT1d_av_sig_corss[i0StexStinEcna] += fT1d_sig_cor_ss[i0StexEcha];
}
}
}
Double_t xdivis = (Double_t)0.;
if (fStexName == "SM ") {
xdivis = (Double_t)fEcal->MaxCrysInStin();
}
if (fStexName == "Dee") {
xdivis = (Double_t)fEcalNumbering->MaxCrysInStinEcna(fFileHeader->fStex, n1StexStinEcna, "TEcnaRun");
}
fT1d_av_sig_corss[i0StexStinEcna] = fT1d_av_sig_corss[i0StexStinEcna] / xdivis;
}
fTagAvSigCorss[0] = 1;
fFileHeader->fAvSigCorssCalc++;
}
//======================================================================
//
// C O V A R I A N C E S & C O R R E L A T I O N S
//
// B E T W E E N C H A N N E L S
//
//======================================================================
//----------------------------------------------------------------------
//
// Calculation of the Low Frequency Covariances between channels
//
// LFCov(Ci,Cj) = Cov_e[ E_s[A(Ci,s*,e*)] , E_s[A(Cj,s*,e*) ]
//
// = E_e[ ( E_s[A(Ci,s*,e*)] - E_e[ E_s[A(Ci,s*,e*)] ] )*
// ( E_s[A(Cj,s*,e*)] - E_e[ E_s[A(Cj,s*,e*)] ] ) ]
//
// A(Ci,s,e) : ADC value for channel Ci, sample s, event e
//
// E_e , Cov_e : average, covariance over the events
// E_s : average over the samples
//
// e* : random variable associated to events
// s* : random variable associated to samples
//
//----------------------------------------------------------------------
void TEcnaRun::LowFrequencyCovariancesBetweenChannels() {
//Calculation of the Low Frequency Covariances between channels
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::LowFrequencyCovariancesBetweenChannels()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation of the Low Frequency Covariances between channels" << std::endl;
}
//................. allocation fT2d_lf_cov + init to zero (mandatory)
if (fT2d_lf_cov == nullptr) {
const Int_t n_StexEcha = fEcal->MaxCrysEcnaInStex();
fT2d_lf_cov = new Double_t*[n_StexEcha];
fCnew++;
fT2d1_lf_cov = new Double_t[n_StexEcha * n_StexEcha];
fCnew++;
for (Int_t i0StexEcha = 0; i0StexEcha < n_StexEcha; i0StexEcha++) {
fT2d_lf_cov[i0StexEcha] = &fT2d1_lf_cov[0] + i0StexEcha * n_StexEcha;
}
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
if (fT2d_lf_cov[i0StexEcha][j0StexEcha] != (Double_t)0) {
fMiscDiag[21]++;
[[clang::suppress]] fT2d_lf_cov[i0StexEcha][j0StexEcha] = (Double_t)0;
}
}
}
//........................................... Calculation (LowFrequencyCovariancesBetweenChannels)
//................... Allocation mean_over_samples(i0StexEcha, n_event)
TMatrixD mean_over_samples(fEcal->MaxCrysEcnaInStex(), fNumberOfEvents);
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
mean_over_samples(i0StexEcha, n_event) = (Double_t)0.;
}
}
//................... Allocation MoeOfMos(i0StexEcha)
TVectorD MoeOfMos(fEcal->MaxCrysEcnaInStex());
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
MoeOfMos(i0StexEcha) = (Double_t)0.;
}
//................... Calculation
if (fFlagPrint != fCodePrintNoComment) {
std::cout << " Calculation, for each pair of channels, of the covariance (over the events)" << std::endl
<< " between the ADC expectation values (over the samples 1 to " << fNbSampForCalc << ")."
<< std::endl;
}
std::cout << " Please, wait (end at i= " << fEcal->MaxCrysEcnaInStex() << "): " << std::endl;
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
MoeOfMos(i0StexEcha) = (Double_t)0;
if ((fFlagSubDet == "EE" && fEcalNumbering->StexEchaForCons(fFileHeader->fStex, i0StexEcha) > 0) ||
(fFlagSubDet == "EB")) {
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
// Calculation, for each event, of the mean over the samples ( = E_s[A(c_i,s*,e_n] )
mean_over_samples(i0StexEcha, n_event) = (Double_t)0.;
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
mean_over_samples(i0StexEcha, n_event) += fT3d_AdcValues[i0StexEcha][i0Sample][n_event];
}
mean_over_samples(i0StexEcha, n_event) /= (Double_t)fNbSampForCalc;
}
//Calculation of the mean over the events of E_s[A(c_i,s*,e_n] ( = E_e[E_s[A(c_i,s*,e*]] )
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
MoeOfMos(i0StexEcha) += mean_over_samples(i0StexEcha, n_event);
}
MoeOfMos(i0StexEcha) /= (Double_t)fNumberOfEvents;
}
}
//... Calculation of half of the matrix, diagonal included (LowFrequencyCovariancesBetweenChannels)
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
if ((fFlagSubDet == "EE" && fEcalNumbering->StexEchaForCons(fFileHeader->fStex, i0StexEcha) > 0) ||
(fFlagSubDet == "EB")) {
for (Int_t j0StexEcha = 0; j0StexEcha <= i0StexEcha; j0StexEcha++) {
if ((fFlagSubDet == "EE" && fEcalNumbering->StexEchaForCons(fFileHeader->fStex, j0StexEcha) > 0) ||
(fFlagSubDet == "EB")) {
fT2d_lf_cov[i0StexEcha][j0StexEcha] = (Double_t)0;
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
fT2d_lf_cov[i0StexEcha][j0StexEcha] += (mean_over_samples(i0StexEcha, n_event) - MoeOfMos(i0StexEcha)) *
(mean_over_samples(j0StexEcha, n_event) - MoeOfMos(j0StexEcha));
}
fT2d_lf_cov[i0StexEcha][j0StexEcha] /= (Double_t)fNumberOfEvents;
fT2d_lf_cov[j0StexEcha][i0StexEcha] = fT2d_lf_cov[i0StexEcha][j0StexEcha];
}
}
if (i0StexEcha % 100 == 0) {
std::cout << i0StexEcha << "[LFN Cov], ";
}
}
}
std::cout << std::endl;
fTagLfCov[0] = 1;
fFileHeader->fLfCovCalc++;
}
//---------- (end of LowFrequencyCovariancesBetweenChannels ) --------------------
//------------------------------------------------------------------
//
// Calculation of the Low Frequency Correlations between channels
//
// LFCor(Ci,Cj) = LFCov(Ci,Cj)/sqrt(LFCov(Ci,Ci)*LFCov(Cj,Cj))
//
//------------------------------------------------------------------
void TEcnaRun::LowFrequencyCorrelationsBetweenChannels() {
//Calculation of the Low Frequency Correlations between channels
//... preliminary calculation of the covariances if not done yet.
if (fTagLfCov[0] != 1) {
LowFrequencyCovariancesBetweenChannels();
fTagLfCov[0] = 0;
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::LowFrequencyCorrelationsBetweenChannels()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation of the Low Frequency Correlations between channels" << std::endl
<< " Starting allocation. " << std::endl;
}
//................. allocation fT2d_lf_cor + init to zero (mandatory)
if (fT2d_lf_cor == nullptr) {
const Int_t n_StexEcha = fEcal->MaxCrysEcnaInStex();
fT2d_lf_cor = new Double_t*[n_StexEcha];
fCnew++;
fT2d1_lf_cor = new Double_t[n_StexEcha * n_StexEcha];
fCnew++;
for (Int_t i0StexEcha = 0; i0StexEcha < n_StexEcha; i0StexEcha++) {
fT2d_lf_cor[i0StexEcha] = &fT2d1_lf_cor[0] + i0StexEcha * n_StexEcha;
}
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
if (fT2d_lf_cor[i0StexEcha][j0StexEcha] != (Double_t)0) {
fMiscDiag[22]++;
[[clang::suppress]] fT2d_lf_cor[i0StexEcha][j0StexEcha] = (Double_t)0;
}
}
}
//................. calculation
//........................... computation of half of the matrix, diagonal included
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
if ((fFlagSubDet == "EE" && fEcalNumbering->StexEchaForCons(fFileHeader->fStex, i0StexEcha) > 0) ||
(fFlagSubDet == "EB")) {
for (Int_t j0StexEcha = 0; j0StexEcha <= i0StexEcha; j0StexEcha++) {
if ((fFlagSubDet == "EE" && fEcalNumbering->StexEchaForCons(fFileHeader->fStex, j0StexEcha) > 0) ||
(fFlagSubDet == "EB")) {
if (fT2d_lf_cov[i0StexEcha][i0StexEcha] > 0 && fT2d_lf_cov[j0StexEcha][j0StexEcha] > 0) {
fT2d_lf_cor[i0StexEcha][j0StexEcha] =
fT2d_lf_cov[i0StexEcha][j0StexEcha] /
((Double_t)sqrt(fT2d_lf_cov[i0StexEcha][i0StexEcha] * fT2d_lf_cov[j0StexEcha][j0StexEcha]));
} else {
fT2d_lf_cor[i0StexEcha][j0StexEcha] = (Double_t)0.;
}
fT2d_lf_cor[j0StexEcha][i0StexEcha] = fT2d_lf_cor[i0StexEcha][j0StexEcha];
}
}
}
if (i0StexEcha % 100 == 0) {
std::cout << i0StexEcha << "[LFN Cor], ";
}
}
std::cout << std::endl;
fTagLfCor[0] = 1;
fFileHeader->fLfCorCalc++;
}
//--------------- (end of LowFrequencyCorrelationsBetweenChannels) --------------------
//------------------------------------------------------------------
//
// Calculation of the High Frequency Covariances between channels
//
// HFCov(Ci,Cj) = E_e[ Cov_s[ A(Ci,s*,e*) , A(Cj,s*,e*) ] ]
//
// = E_e[ E_s[ ( A(Ci,s*,e*) - E_s[A(Ci,s*,e*)] )*
// ( A(Cj,s*,e*) - E_s[A(Cj,s*,e*)] ) ] ]
//
// A(Ci,s,e) : ADC value for channel Ci, sample s, event e
//
// E_e : average over the events
// E_s , Cov_s : average, covariance over the samples
//
//------------------------------------------------------------------
void TEcnaRun::HighFrequencyCovariancesBetweenChannels() {
//Calculation of the High Frequency Covariances between channels
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::HighFrequencyCovariancesBetweenChannels()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation of the High Frequency Covariances between channels" << std::endl;
}
//................. allocation fT2d_hf_cov + init to zero (mandatory)
if (fT2d_hf_cov == nullptr) {
const Int_t n_StexEcha = fEcal->MaxCrysEcnaInStex();
fT2d_hf_cov = new Double_t*[n_StexEcha];
fCnew++;
fT2d1_hf_cov = new Double_t[n_StexEcha * n_StexEcha];
fCnew++;
for (Int_t i0StexEcha = 0; i0StexEcha < n_StexEcha; i0StexEcha++) {
fT2d_hf_cov[i0StexEcha] = &fT2d1_hf_cov[0] + i0StexEcha * n_StexEcha;
}
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
if (fT2d_hf_cov[i0StexEcha][j0StexEcha] != (Double_t)0) {
fMiscDiag[23]++;
[[clang::suppress]] fT2d_hf_cov[i0StexEcha][j0StexEcha] = (Double_t)0;
}
}
}
//................... Allocation mean_over_samples(i0StexEcha, n_event)
TMatrixD mean_over_samples(fEcal->MaxCrysEcnaInStex(), fNumberOfEvents);
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
mean_over_samples(i0StexEcha, n_event) = (Double_t)0.;
}
}
//................... Allocation cov_over_samp(i0StexEcha,j0StexEcha)
TMatrixD cov_over_samp(fEcal->MaxCrysEcnaInStex(), fEcal->MaxCrysEcnaInStex());
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
cov_over_samp(i0StexEcha, j0StexEcha) = (Double_t)0.;
}
}
//........................................... Calculation (HighFrequencyCovariancesBetweenChannels)
if (fFlagPrint != fCodePrintNoComment) {
std::cout << " Calculation of the mean (over the events)" << std::endl
<< " of the covariances between the channels (over the samples 1 to " << fNbSampForCalc << ")."
<< std::endl;
}
std::cout << " Please, wait (end at i= " << fEcal->MaxCrysEcnaInStex() << "): " << std::endl;
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
if ((fFlagSubDet == "EE" && fEcalNumbering->StexEchaForCons(fFileHeader->fStex, i0StexEcha) > 0) ||
(fFlagSubDet == "EB")) {
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
// Calculation, for each event, of the mean over the samples ( = E_s[A(c_i,s*,e_n] )
mean_over_samples(i0StexEcha, n_event) = (Double_t)0.;
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
mean_over_samples(i0StexEcha, n_event) += fT3d_AdcValues[i0StexEcha][i0Sample][n_event];
}
mean_over_samples(i0StexEcha, n_event) /= (Double_t)fNbSampForCalc;
}
}
if (i0StexEcha % 100 == 0) {
std::cout << i0StexEcha << "[HFNa Cov], ";
}
}
std::cout << std::endl;
std::cout << " Please, wait (end at i= " << fEcal->MaxCrysEcnaInStex() << "): " << std::endl;
//... Calculation of half of the matrix, diagonal included (HighFrequencyCovariancesBetweenChannels)
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
if ((fFlagSubDet == "EE" && fEcalNumbering->StexEchaForCons(fFileHeader->fStex, i0StexEcha) > 0) ||
(fFlagSubDet == "EB")) {
for (Int_t j0StexEcha = 0; j0StexEcha <= i0StexEcha; j0StexEcha++) {
if ((fFlagSubDet == "EE" && fEcalNumbering->StexEchaForCons(fFileHeader->fStex, j0StexEcha) > 0) ||
(fFlagSubDet == "EB")) {
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
// Calculation, for each event, of the covariance over the samples
cov_over_samp(i0StexEcha, j0StexEcha) = (Double_t)0;
for (Int_t i0Sample = 0; i0Sample < fNbSampForCalc; i0Sample++) {
cov_over_samp(i0StexEcha, j0StexEcha) +=
(fT3d_AdcValues[i0StexEcha][i0Sample][n_event] - mean_over_samples(i0StexEcha, n_event)) *
(fT3d_AdcValues[j0StexEcha][i0Sample][n_event] - mean_over_samples(j0StexEcha, n_event));
}
cov_over_samp(i0StexEcha, j0StexEcha) /= (Double_t)fNbSampForCalc;
}
//....... Calculation of the mean over the events of Cov_s[A(c_i,s*,e*),A(c_j,s*,e*)]
//......... Calculation of half of the matrix, diagonal included
fT2d_hf_cov[i0StexEcha][j0StexEcha] = (Double_t)0;
for (Int_t n_event = 0; n_event < fNumberOfEvents; n_event++) {
fT2d_hf_cov[i0StexEcha][j0StexEcha] += cov_over_samp(i0StexEcha, j0StexEcha);
}
fT2d_hf_cov[i0StexEcha][j0StexEcha] /= (Double_t)fNumberOfEvents;
fT2d_hf_cov[j0StexEcha][i0StexEcha] = fT2d_hf_cov[i0StexEcha][j0StexEcha];
}
}
}
if (i0StexEcha % 100 == 0) {
std::cout << i0StexEcha << "[HFNb Cov], ";
}
}
std::cout << std::endl;
fTagHfCov[0] = 1;
fFileHeader->fHfCovCalc++;
}
//---------- (end of HighFrequencyCovariancesBetweenChannels ) --------------------
//------------------------------------------------------------------
//
// Calculation of the High Frequency Correlations between channels
//
// HFCor(Ci,Cj) = HFCov(Ci,Cj)/sqrt(HFCov(Ci,Ci)*HFCov(Cj,Cj))
//
//------------------------------------------------------------------
void TEcnaRun::HighFrequencyCorrelationsBetweenChannels() {
//Calculation of the High Frequency Correlations between channels
//... preliminary calculation of the covariances if not done yet.
if (fTagHfCov[0] != 1) {
HighFrequencyCovariancesBetweenChannels();
fTagHfCov[0] = 0;
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::HighFrequencyCorrelationsBetweenChannels()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation of the High Frequency Correlations between channels" << std::endl
<< " Starting allocation. " << std::endl;
}
//................. allocation fT2d_hf_cor + init to zero (mandatory)
if (fT2d_hf_cor == nullptr) {
const Int_t n_StexEcha = fEcal->MaxCrysEcnaInStex();
fT2d_hf_cor = new Double_t*[n_StexEcha];
fCnew++;
fT2d1_hf_cor = new Double_t[n_StexEcha * n_StexEcha];
fCnew++;
for (Int_t i0StexEcha = 0; i0StexEcha < n_StexEcha; i0StexEcha++) {
fT2d_hf_cor[i0StexEcha] = &fT2d1_hf_cor[0] + i0StexEcha * n_StexEcha;
}
}
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
if (fT2d_hf_cor[i0StexEcha][j0StexEcha] != (Double_t)0) {
fMiscDiag[24]++;
[[clang::suppress]] fT2d_hf_cor[i0StexEcha][j0StexEcha] = (Double_t)0;
}
}
}
//................. calculation
//........................... computation of half of the matrix, diagonal included
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
if ((fFlagSubDet == "EE" && fEcalNumbering->StexEchaForCons(fFileHeader->fStex, i0StexEcha) > 0) ||
(fFlagSubDet == "EB")) {
for (Int_t j0StexEcha = 0; j0StexEcha <= i0StexEcha; j0StexEcha++) {
if ((fFlagSubDet == "EE" && fEcalNumbering->StexEchaForCons(fFileHeader->fStex, j0StexEcha) > 0) ||
(fFlagSubDet == "EB")) {
if (fT2d_hf_cov[i0StexEcha][i0StexEcha] > 0 && fT2d_hf_cov[j0StexEcha][j0StexEcha] > 0) {
fT2d_hf_cor[i0StexEcha][j0StexEcha] =
fT2d_hf_cov[i0StexEcha][j0StexEcha] / ((Double_t)sqrt(fT2d_hf_cov[i0StexEcha][i0StexEcha]) *
(Double_t)sqrt(fT2d_hf_cov[j0StexEcha][j0StexEcha]));
} else {
fT2d_hf_cor[i0StexEcha][j0StexEcha] = (Double_t)0.;
}
fT2d_hf_cor[j0StexEcha][i0StexEcha] = fT2d_hf_cor[i0StexEcha][j0StexEcha];
}
}
}
if (i0StexEcha % 100 == 0) {
std::cout << i0StexEcha << "[HFN Cor], ";
}
}
std::cout << std::endl;
fTagHfCor[0] = 1;
fFileHeader->fHfCorCalc++;
}
//------- (end of HighFrequencyCorrelationsBetweenChannels) ----------
//=================================================================================
//
// L O W & H I G H F R E Q U E N C Y C O R R E L A T I O N S
//
// B E T W E E N T O W E R S ( E B ) O R S C s ( E E )
//
//=================================================================================
//-----------------------------------------------------------------------------
// Calculation of the mean Low Frequency Correlations
// between channels for each Stin
//-----------------------------------------------------------------------------
void TEcnaRun::LowFrequencyMeanCorrelationsBetweenTowers() { LowFrequencyMeanCorrelationsBetweenStins(); }
void TEcnaRun::LowFrequencyMeanCorrelationsBetweenSCs() { LowFrequencyMeanCorrelationsBetweenStins(); }
void TEcnaRun::LowFrequencyMeanCorrelationsBetweenStins() {
//Calculation of the mean Low Frequency Correlations
//between channels for each Stin
//... preliminary calculation of the Low Frequency Cor(c,c) if not done yet
// Only one tag (dim=1) to set to 0 (no write in the result ROOT file)
if (fTagLfCor[0] != 1) {
LowFrequencyCorrelationsBetweenChannels();
fTagLfCor[0] = 0;
}
//..... mean fT2d_lfcc_mostins for each pair (Stin_X,Stin_Y)
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::LowFrequencyMeanCorrelationsBetweenStins()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation of the mean, for each " << fStinName.Data() << ", of the" << std::endl
<< " Low Frequency Correlations between channels." << std::endl;
}
//................. allocation fT2d_lfcc_mostins + init to zero (mandatory)
if (fT2d_lfcc_mostins == nullptr) {
const Int_t n_Stin = fEcal->MaxStinEcnaInStex();
fT2d_lfcc_mostins = new Double_t*[n_Stin];
fCnew++;
fT2d1_lfcc_mostins = new Double_t[n_Stin * n_Stin];
fCnew++;
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < n_Stin; i0StexStinEcna++) {
fT2d_lfcc_mostins[i0StexStinEcna] = &fT2d1_lfcc_mostins[0] + i0StexStinEcna * n_Stin;
}
}
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
if (fT2d_lfcc_mostins[i0StexStinEcna][j0StexStinEcna] != (Double_t)0) {
fMiscDiag[31]++;
[[clang::suppress]] fT2d_lfcc_mostins[i0StexStinEcna][j0StexStinEcna] = (Double_t)0;
}
}
}
//..... Calculation of the mean LF Cor(c,c) for each pair (Stin_X,Stin_Y)
//
// ! => Warning: this matrix is NOT symmetric => take N*N elements
// Only (Stin,Stin) matrix is symmetric.
// (StinEcha,StinEcha) matrix inside a (Stin,Stin) element is NOT symmetric
// (except for the (Stin,Stin) DIAGONAL elements)
// Then:
// 1D array half_LFccMos[N*N] to put the (channel,channel) correlations
Int_t ndim = (Int_t)(fEcal->MaxCrysInStin() * fEcal->MaxCrysInStin());
TVectorD half_LFccMos(ndim);
for (Int_t i = 0; i < ndim; i++) {
half_LFccMos(i) = (Double_t)0.;
}
//..................... Calculation
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::LowFrequencyMeanCorrelationsBetweenStins()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for each " << fStinName.Data() << ", of the mean " << std::endl
<< " Low Frequency cor(c,c)." << std::endl;
}
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
//................... .Copy the Mean Correlations(c,c') in 1D vector half_LFccMos()
Int_t i_count = 0;
for (Int_t i0StinCrys = 0; i0StinCrys < fEcal->MaxCrysInStin(); i0StinCrys++) {
Int_t i0StexEcha = i0StexStinEcna * fEcal->MaxCrysInStin() + i0StinCrys;
for (Int_t j0StinCrys = 0; j0StinCrys < fEcal->MaxCrysInStin(); j0StinCrys++) {
Int_t j0StexEcha = j0StexStinEcna * fEcal->MaxCrysInStin() + j0StinCrys;
if ((i0StexEcha >= 0 && i0StexEcha < fEcal->MaxCrysEcnaInStex()) &&
(j0StexEcha >= 0 && j0StexEcha < fEcal->MaxCrysEcnaInStex())) {
half_LFccMos(i_count) = fT2d_lf_cor[i0StexEcha][j0StexEcha];
i_count++;
} else {
std::cout << "!TEcnaRun::LowFrequencyMeanCorrelationsBetweenStins()> Channel number out of range."
<< "i0StexEcha = " << i0StexEcha << ", j0StexEcha = " << j0StexEcha << fTTBELL << std::endl;
}
}
}
//...... Calculation of the mean absolute values of the LF mean Correlations(c,c')
[[clang::suppress]] fT2d_lfcc_mostins[i0StexStinEcna][j0StexStinEcna] = (Double_t)0;
for (Int_t i_rcor = 0; i_rcor < ndim; i_rcor++) {
[[clang::suppress]] fT2d_lfcc_mostins[i0StexStinEcna][j0StexStinEcna] += fabs(half_LFccMos(i_rcor));
}
[[clang::suppress]] fT2d_lfcc_mostins[i0StexStinEcna][j0StexStinEcna] /= (Double_t)ndim;
}
if (i0StexStinEcna % 10 == 0) {
std::cout << i0StexStinEcna << "[LFN MCtt], ";
}
}
std::cout << std::endl;
fTagLFccMoStins[0] = 1;
fFileHeader->fLFccMoStinsCalc++;
} // ------- end of LowFrequencyMeanCorrelationsBetweenStins() -------
//-----------------------------------------------------------------------------
// Calculation of the mean High Frequency Correlations
// between channels for each Stin
//-----------------------------------------------------------------------------
void TEcnaRun::HighFrequencyMeanCorrelationsBetweenTowers() { HighFrequencyMeanCorrelationsBetweenStins(); }
void TEcnaRun::HighFrequencyMeanCorrelationsBetweenSCs() { HighFrequencyMeanCorrelationsBetweenStins(); }
void TEcnaRun::HighFrequencyMeanCorrelationsBetweenStins() {
//Calculation of the mean High Frequency Correlations
//between channels for each Stin
//... preliminary calculation of the High Frequency Cor(c,c) if not done yet
// Only one tag (dim=1) to set to 0 (no write in the result ROOT file)
if (fTagHfCor[0] != 1) {
HighFrequencyCorrelationsBetweenChannels();
fTagHfCor[0] = 0;
}
//..... mean fT2d_hfcc_mostins for each pair (Stin_X,Stin_Y)
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::HighFrequencyMeanCorrelationsBetweenStins()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation of the mean, for each " << fFlagSubDet.Data() << ", of the" << std::endl
<< " High Frequency Correlations between channels." << std::endl;
}
//................. allocation fT2d_hfcc_mostins + init to zero (mandatory)
if (fT2d_hfcc_mostins == nullptr) {
const Int_t n_Stin = fEcal->MaxStinEcnaInStex();
fT2d_hfcc_mostins = new Double_t*[n_Stin];
fCnew++;
fT2d1_hfcc_mostins = new Double_t[n_Stin * n_Stin];
fCnew++;
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < n_Stin; i0StexStinEcna++) {
fT2d_hfcc_mostins[i0StexStinEcna] = &fT2d1_hfcc_mostins[0] + i0StexStinEcna * n_Stin;
}
}
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
if (fT2d_hfcc_mostins[i0StexStinEcna][j0StexStinEcna] != (Double_t)0) {
fMiscDiag[32]++;
[[clang::suppress]] fT2d_hfcc_mostins[i0StexStinEcna][j0StexStinEcna] = (Double_t)0;
}
}
}
//..... Calculation of the mean HF Cor(c,c) for each pair (Stin_X,Stin_Y)
//
// ! => Warning: this matrix is NOT symmetric => take N*N elements
// Only (Stin,Stin) matrix is symmetric.
// (StinEcha,StinEcha) matrix inside a (Stin,Stin) element is NOT symmetric
// (except for the (Stin,Stin) DIAGONAL elements)
// Then:
// 1D array half_LFccMos[N*N] to put the (channel,channel) correlations
Int_t ndim = (Int_t)(fEcal->MaxCrysInStin() * fEcal->MaxCrysInStin());
TVectorD half_HFccMos(ndim);
for (Int_t i = 0; i < ndim; i++) {
half_HFccMos(i) = (Double_t)0.;
}
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::HighFrequencyMeanCorrelationsBetweenStins()" << std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << " Calculation, for each " << fFlagSubDet.Data() << ", of the mean " << std::endl
<< " High Frequency cor(c,c)." << std::endl;
}
//..................... Calculation
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
//.................... Copy the relevant Mean Correlations(c,c') in 1D vector half_HFccMos()
Int_t i_count = 0;
for (Int_t i0StinCrys = 0; i0StinCrys < fEcal->MaxCrysInStin(); i0StinCrys++) {
Int_t i0StexEcha = i0StexStinEcna * fEcal->MaxCrysInStin() + i0StinCrys;
for (Int_t j0StinCrys = 0; j0StinCrys < fEcal->MaxCrysInStin(); j0StinCrys++) {
Int_t j0StexEcha = j0StexStinEcna * fEcal->MaxCrysInStin() + j0StinCrys;
if ((i0StexEcha >= 0 && i0StexEcha < fEcal->MaxCrysEcnaInStex()) &&
(j0StexEcha >= 0 && j0StexEcha < fEcal->MaxCrysEcnaInStex())) {
half_HFccMos(i_count) = fT2d_hf_cor[i0StexEcha][j0StexEcha];
i_count++;
} else {
std::cout << "!TEcnaRun::HighFrequencyMeanCorrelationsBetweenStins()> Channel number out of range."
<< "i0StexEcha = " << i0StexEcha << ", j0StexEcha = " << j0StexEcha << fTTBELL << std::endl;
}
}
}
//..... Calculation of the mean absolute values of the HF mean Correlations(c,c')
fT2d_hfcc_mostins[i0StexStinEcna][j0StexStinEcna] = (Double_t)0;
for (Int_t i_rcor = 0; i_rcor < ndim; i_rcor++) {
[[clang::suppress]] fT2d_hfcc_mostins[i0StexStinEcna][j0StexStinEcna] += fabs(half_HFccMos(i_rcor));
}
[[clang::suppress]] fT2d_hfcc_mostins[i0StexStinEcna][j0StexStinEcna] /= (Double_t)ndim;
}
if (i0StexStinEcna % 10 == 0) {
std::cout << i0StexStinEcna << "[HFN MCtt], ";
}
}
std::cout << std::endl;
fTagHFccMoStins[0] = 1;
fFileHeader->fHFccMoStinsCalc++;
} // ------- end of HighFrequencyMeanCorrelationsBetweenStins() -------
//=========================================================================
//
// W R I T I N G M E T H O D S
//
//=========================================================================
//=========================================================================
//
// W R I T I N G M E T H O D S : R O O T F I L E S
//
//=========================================================================
//-------------------------------------------------------------
//
// OpenRootFile
//
//-------------------------------------------------------------
Bool_t TEcnaRun::OpenRootFile(const Text_t* name, const TString& status) {
//Open the Root file
Bool_t ok_open = kFALSE;
TString s_name;
s_name = fCnaParPaths->ResultsRootFilePath();
s_name.Append('/');
s_name.Append(name);
//gCnaRootFile = new TEcnaRootFile(fObjectManager, s_name.Data(), status); fCnew++;
Long_t iCnaRootFile = fObjectManager->GetPointerValue("TEcnaRootFile");
if (iCnaRootFile == 0) {
gCnaRootFile = new TEcnaRootFile(fObjectManager, s_name.Data(), status); /* Anew("gCnaRootFile");*/
} else {
gCnaRootFile = (TEcnaRootFile*)iCnaRootFile;
gCnaRootFile->ReStart(s_name.Data(), status);
}
if (gCnaRootFile->fRootFileStatus == "RECREATE") {
ok_open = gCnaRootFile->OpenW();
}
if (gCnaRootFile->fRootFileStatus == "READ") {
ok_open = gCnaRootFile->OpenR();
}
if (!ok_open) // unable to open file
{
std::cout << "TEcnaRun::OpenRootFile> Cannot open file " << s_name.Data() << std::endl;
} else {
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::OpenRootFile> Open ROOT file OK for file " << s_name.Data() << std::endl;
}
fOpenRootFile = kTRUE;
}
return ok_open;
}
//-------------------------------------------------------------
//
// CloseRootFile
//
//-------------------------------------------------------------
Bool_t TEcnaRun::CloseRootFile(const Text_t* name) {
//Close the Root file
TString s_name;
s_name = fCnaParPaths->ResultsRootFilePath();
s_name.Append('/');
s_name.Append(name);
Bool_t ok_close = kFALSE;
if (fOpenRootFile == kTRUE) {
gCnaRootFile->CloseFile();
if (fFlagPrint != fCodePrintAllComments) {
std::cout << "*TEcnaRun::CloseRootFile> ROOT file " << s_name.Data() << " closed." << std::endl;
}
// delete gCnaRootFile; gCnaRootFile = 0; fCdelete++;
fOpenRootFile = kFALSE;
ok_close = kTRUE;
} else {
std::cout << "*TEcnaRun::CloseRootFile(...)> No close since no file is open." << fTTBELL << std::endl;
}
return ok_close;
}
//-------------------------------------------------------------
//
// WriteRootFile without arguments.
// Call WriteRootFile WITH argument (file name)
// after an automatic generation of the file name.
//
// Codification for the file name:
// see comment at the beginning of this file
//
//-------------------------------------------------------------
//=================================================================================
//
// WriteRootFile() ====> D O N ' T S U P P R E S S ! ! !
// Called by the analyzer in package: "Modules"
//
//=================================================================================
Bool_t TEcnaRun::WriteRootFile() {
//Write the Root file.
//File name automatically generated by fCnaWrite->fMakeResultsFileName()
//previously called in GetReadyToCompute().
Bool_t ok_write = kFALSE;
//============================= check number of found events
Int_t nCountEvts = 0;
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < fFileHeader->fNbOfSamples; i0Sample++) {
nCountEvts += fT2d_NbOfEvts[i0StexEcha][i0Sample];
}
}
if (nCountEvts <= 0) {
//============== no write if no event found
std::cout << "!TEcnaRun::WriteRootFile()> No event found for file " << fCnaWrite->GetRootFileNameShort().Data()
<< ". File will not be written." << std::endl;
ok_write = kTRUE;
} else {
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile()> Results are going to be written in the ROOT file: " << std::endl
<< " " << fCnaWrite->GetRootFileName().Data() << std::endl;
}
const Text_t* FileShortName = (const Text_t*)fCnaWrite->GetRootFileNameShort().Data();
ok_write = WriteRootFile(FileShortName, fFileHeader->fNbOfSamples);
if (ok_write == kTRUE) {
if (fFlagPrint != fCodePrintNoComment) {
std::cout << "*TEcnaRun::WriteRootFile()> Writing OK for file " << fCnaWrite->GetRootFileName().Data()
<< std::endl;
}
} else {
std::cout << "!TEcnaRun::WriteRootFile()> Writing FAILLED for file " << fCnaWrite->GetRootFileName().Data()
<< fTTBELL << std::endl;
}
}
return ok_write;
} // end of WriteRootFile()
//--------------------------------------------------------------------
//
// WriteNewRootFile with argument
// Called by TEcnaGui for results file of the Calculations method
// analysis type and nb of samples changed, other arguments kept
//
//--------------------------------------------------------------------
Bool_t TEcnaRun::WriteNewRootFile(const TString& TypAna) {
//Write a new Root file. File name automatically generated by fCnaWrite->fMakeResultsFileName()
//called here.
Bool_t ok_write = kFALSE;
fCnaWrite->RegisterFileParameters(TypAna.Data(),
fNbSampForCalc,
fFileHeader->fRunNumber,
fFileHeader->fFirstReqEvtNumber,
fFileHeader->fLastReqEvtNumber,
fFileHeader->fReqNbOfEvts,
fFileHeader->fStex,
fFileHeader->fStartDate,
fFileHeader->fStopDate,
fFileHeader->fStartTime,
fFileHeader->fStopTime);
fCnaWrite->fMakeResultsFileName(); // set fRootFileName, fRootFileNameShort
fNewRootFileName = fCnaWrite->GetRootFileName();
fNewRootFileNameShort = fCnaWrite->GetRootFileNameShort();
const Text_t* FileShortName = (const Text_t*)fNewRootFileNameShort.Data();
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteNewRootFile()> Results are going to be written in the ROOT file: " << std::endl
<< " " << fNewRootFileNameShort.Data() << std::endl;
}
ok_write = WriteRootFile(FileShortName, fNbSampForCalc);
return ok_write;
}
//-------------------------------------------------------------------------
//
// Get the new ROOT file name (long and short)
// (called by TEcnaGui in Calculations method)
//
//-------------------------------------------------------------------------
const TString& TEcnaRun::GetNewRootFileName() const { return fNewRootFileName; }
const TString& TEcnaRun::GetNewRootFileNameShort() const { return fNewRootFileNameShort; }
//--------------------------------------------------------------------
//
// WriteRootFile with argument
//
//--------------------------------------------------------------------
Bool_t TEcnaRun::WriteRootFile(const Text_t* name, Int_t& argNbSampWrite) {
//Write the Root file
const Text_t* file_name = name;
Bool_t ok_write = kFALSE;
if (fOpenRootFile) {
std::cout << "!TEcnaRun::WriteRootFile(...) *** ERROR ***> Writing on file already open." << fTTBELL << std::endl;
} else {
// List of the different element types and associated parameters as ordered in the ROOT file (smaller -> larger)
// ==========
//
// WARNING *** HERE SIZES ARE THESE FOR THE BARREL (1700 Xtals) and for 10 samples ***
//
// Nb of Type of element Type Type Size Comment
// elements Number Name
//
// 1 fMatHis(1,StexStin) ( 0) cTypNumbers 1*( 1, 68) = 68
// 1 fMatHis(1,StexStin) (12) cTypAvPed 1*( 1, 68) = 68
// 1 fMatHis(1,StexStin) ( 3) cTypAvTno 1*( 1, 68) = 68
// 1 fMatHis(1,StexStin) ( 4) cTypAvLfn 1*( 1, 68) = 68
// 1 fMatHis(1,StexStin) ( 5) cTypAvHfn 1*( 1, 68) = 68
// 1 fMatHis(1,StexStin) (13) cTypAvMeanCorss 1*( 1, 68) = 68
// 1 fMatHis(1,StexStin) (14) cTypAvSigCorss 1*( 1, 68) = 68
// 1 fMatHis(1,StexEcha) (16) cTypPed 1*( 1,1700) = 1 700
// 1 fMatHis(1,StexEcha) (17) cTypTno 1*( 1,1700) = 1 700
// 1 fMatHis(1,StexEcha) (10) cTypMeanCorss 1*( 1,1700) = 1 700
// 1 fMatHis(1,StexEcha) (18) cTypLfn 1*( 1,1700) = 1 700
// 1 fMatHis(1,StexEcha) (19) cTypHfn 1*( 1,1700) = 1 700
// 1 fMatHis(1,StexEcha) (11) cTypSigCorss 1*( 1,1700) = 1 700
// 1 fMatMat(Stin,Stin) (23) cTypLFccMoStins 1*( 68, 68) = 4 624
// 1 fMatMat(Stin,Stin) (24) cTypHFccMoStins 1*( 68, 68) = 4 624
// 1 fMatHis(StexEcha, sample) (15) cTypNbOfEvts 1*(1700, 10) = 17 000
// 1 fMatHis(StexEcha, sample) ( 1) cTypMSp 1*(1700, 10) = 17 000
// 1 fMatHis(StexEcha, sample) ( 2) cTypSSp 1*(1700, 10) = 17 000
// StexEcha fMatMat(sample, sample) ( 8) cTypCovCss 1700*( 10, 10) = 170 000
// StexEcha fMatMat(sample, sample ( 9) cTypCorCss 1700*( 10, 10) = 170 000
// StexEcha fMatHis(sample, bin_evt) (20) cTypAdcEvt, 1700*( 10, 150) = 2 550 000
// 1 fMatMat(StexEcha, StexEcha) (21) cTypLfCov 1*(1700,1700) = 2 890 000
// 1 fMatMat(StexEcha, StexEcha) (22) cTypLfCor 1*(1700,1700) = 2 890 000
// 1 fMatMat(StexEcha, StexEcha) ( 6) cTypHfCov 1*(1700,1700) = 2 890 000 // (06/05/08)
// 1 fMatMat(StexEcha, StexEcha) ( 7) cTypHfCor 1*(1700,1700) = 2 890 000 // (06/05/08)
//......................................................................................................
OpenRootFile(file_name, "RECREATE");
TString typ_name = "?";
Int_t v_nb_times = 0;
Int_t v_dim_one = 0;
Int_t v_dim_two = 0;
Int_t v_size = 0;
Int_t v_tot = 0;
Int_t v_tot_writ = 0;
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
//
// ===> no general method and no translation to TEcnaWrite
// because the fT1d.. and fT2d... arrays
// are attributes of TEcnaRun (calls to the "TRootXXXX" methods)
//
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
//-------------------------- Stin numbers
// 1 fMatHis(1,Stin) ( 0) cTypNumbers 1*( 1, 68) = 68
Int_t MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "StinNumbers";
v_nb_times = fFileHeader->fStinNumbersCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxStinEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagStinNumbers[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypNumbers;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootStinNumbers();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Average Pedestals (1 value per Stin)
// 1 fMatHis(1, StexStin) (12) cTypAvPed 1*(1, 68) = 68
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "AvPed";
v_nb_times = fFileHeader->fAvPedCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxStinEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagAvPed[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypAvPed;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootAvPed();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Average Total noise
// StexEcha fMatHis(1, StexStin) ( 3) cTypAvTno 1*(1, 68) = 68
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "AvTno";
v_nb_times = fFileHeader->fAvTnoCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxStinEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagAvTno[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypAvTno;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootAvTno();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Average Low frequency noise
// 1 fMatHis(1, StexStin) ( 4) cTypAvLfn 1*(1, 68) = 68
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "AvLfn";
v_nb_times = fFileHeader->fAvLfnCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxStinEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagAvLfn[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypAvLfn;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootAvLfn();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Average High frequency noise
// 1 fMatHis(1, StexStin) ( 5) cTypAvHfn 1*(1, 68) = 68
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "AvHfn";
v_nb_times = fFileHeader->fAvHfnCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxStinEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagAvHfn[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypAvHfn;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootAvHfn();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Average mean cor(s,s)
// 1 fMatHis(1, StexStin) (13) cTypAvMeanCorss 1*(1, 68) = 68
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "AvMeanCorss";
v_nb_times = fFileHeader->fAvMeanCorssCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxStinEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagAvMeanCorss[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypAvMeanCorss;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootAvEvCorss();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Average sigma of cor(s,s)
// 1 fMatHis(1, StexStin) (14) cTypAvSigCorss 1*(1, 68) = 68
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "AvSigCorss";
v_nb_times = fFileHeader->fAvSigCorssCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxStinEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagAvSigCorss[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypAvSigCorss;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootAvSigCorss();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Expectation values of the expectation values of the samples (pedestals)
// 1 fMatHis(1,StexEcha) (16) cTypPed 1*( 1,1700) = 1 700
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "Ped";
v_nb_times = fFileHeader->fPedCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxCrysEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagPed[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypPed;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootPed();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Expectation values of the sigmas the samples
// 1 fMatHis(1,StexEcha) (17) cTypTno 1*( 1,1700) = 1 700
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "Tno";
v_nb_times = fFileHeader->fTnoCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxCrysEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagTno[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypTno;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootTno();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Expectation values of the correlations between the samples
// 1 fMatHis(1,StexEcha) (10) cTypMeanCorss 1*( 1,1700) = 1 700
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "MeanCorss";
v_nb_times = fFileHeader->fMeanCorssCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxCrysEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagMeanCorss[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypMeanCorss;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootMeanCorss();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Sigmas of the expectation values of the samples
// 1 fMatHis(1,StexEcha) (18) cTypLfn 1*( 1,1700) = 1 700
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "Lfn";
v_nb_times = fFileHeader->fLfnCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxCrysEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagLfn[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypLfn;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootLfn();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Sigmas of the sigmas of the samples
// 1 fMatHis(1,StexEcha) (19) cTypHfn 1*( 1,1700) = 1 700
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "Hfn";
v_nb_times = fFileHeader->fHfnCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxCrysEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagHfn[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypHfn;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootHfn();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Sigmas of the correlations between the samples
// 1 fMatHis(1,StexEcha) (11) cTypSigCorss 1*( 1,1700) = 1 700
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "SigCorss";
v_nb_times = fFileHeader->fSigCorssCalc;
v_dim_one = 1;
v_dim_two = fEcal->MaxCrysEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagSigCorss[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypSigCorss;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootSigCorss();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//----- Mean Covariances between StexEchas (averaged over samples) for all (Stin_X,Stin_Y)
// 1 fMatMat(Stin,Stin) (23) cTypLFccMoStins 1*( 68, 68) = 4 624
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "LFccMoStins";
v_nb_times = fFileHeader->fLFccMoStinsCalc;
v_dim_one = fEcal->MaxStinEcnaInStex();
v_dim_two = fEcal->MaxStinEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagLFccMoStins[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypLFccMoStins;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeMat(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatHis.ReSet(1, 1);
TRootLFccMoStins();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//----- Mean Correlations between StexEchas (averaged over samples) for all (Stin_X,Stin_Y)
// 1 fMatMat(Stin,Stin) (24) cTypHFccMoStins 1*( 68, 68) = 4 624
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "HFccMoStins";
v_nb_times = fFileHeader->fHFccMoStinsCalc;
v_dim_one = fEcal->MaxStinEcnaInStex();
v_dim_two = fEcal->MaxStinEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagHFccMoStins[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypHFccMoStins;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeMat(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatHis.ReSet(1, 1);
TRootHFccMoStins();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Numbers of found events (NbOfEvts)
// 1 fMatHis(StexEcha, sample) (15) cTypNbOfEvts 1*(1700, 10) = 17 000
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "NbOfEvts";
v_nb_times = fFileHeader->fNbOfEvtsCalc;
v_dim_one = fEcal->MaxCrysEcnaInStex();
v_dim_two = argNbSampWrite;
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagNbOfEvts[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypNbOfEvts;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootNbOfEvts(argNbSampWrite);
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Expectation values of the samples
// 1 fMatHis(StexEcha, sample) ( 1) cTypMSp 1*(1700, 10) = 17 000
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "MSp";
v_nb_times = fFileHeader->fMSpCalc;
v_dim_one = fEcal->MaxCrysEcnaInStex();
v_dim_two = argNbSampWrite;
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagMSp[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypMSp;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootMSp(argNbSampWrite);
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Sigmas of the samples
// 1 fMatHis(StexEcha, sample) ( 2) cTypSSp 1*(1700, 10) = 17 000
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "SSp";
v_nb_times = fFileHeader->fSSpCalc;
v_dim_one = fEcal->MaxCrysEcnaInStex();
v_dim_two = argNbSampWrite;
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagSSp[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypSSp;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootSSp(argNbSampWrite);
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Covariances between samples
// StexEcha fMatMat(sample, sample) ( 8) cTypCovCss 1700*( 10, 10) = 170 000
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "CovCss";
v_nb_times = fFileHeader->fCovCssCalc;
v_dim_one = argNbSampWrite;
v_dim_two = argNbSampWrite;
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i0StexEcha = 0; i0StexEcha < v_nb_times; i0StexEcha++) {
if (fTagCovCss[i0StexEcha] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypCovCss;
gCnaRootFile->fCnaIndivResult->fIthElement = i0StexEcha;
gCnaRootFile->fCnaIndivResult->SetSizeMat(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatHis.ReSet(1, 1);
TRootCovCss(i0StexEcha, argNbSampWrite);
gCnaRootFile->fCnaResultsTree->Fill();
if (i0StexEcha == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Correlations between samples
// StexEcha fMatMat(sample, sample) ( 9) cTypCorCss 1700*( 10, 10) = 170 000
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "CorCss";
v_nb_times = fFileHeader->fCorCssCalc;
v_dim_one = argNbSampWrite;
v_dim_two = argNbSampWrite;
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i0StexEcha = 0; i0StexEcha < v_nb_times; i0StexEcha++) {
if (fTagCorCss[i0StexEcha] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypCorCss;
gCnaRootFile->fCnaIndivResult->fIthElement = i0StexEcha;
gCnaRootFile->fCnaIndivResult->SetSizeMat(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatHis.ReSet(1, 1);
TRootCorCss(i0StexEcha, argNbSampWrite);
gCnaRootFile->fCnaResultsTree->Fill();
if (i0StexEcha == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Samples as a function of event = events distributions
// StexEcha fMatHis(sample, bins) (20) cTypAdcEvt, 1700*( 10, 150) = 2 550 000
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "AdcEvt";
v_nb_times = fFileHeader->fAdcEvtCalc;
v_dim_one = argNbSampWrite;
v_dim_two = fFileHeader->fReqNbOfEvts;
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i0StexEcha = 0; i0StexEcha < v_nb_times; i0StexEcha++) {
if (fTagAdcEvt[i0StexEcha] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypAdcEvt;
gCnaRootFile->fCnaIndivResult->fIthElement = i0StexEcha;
gCnaRootFile->fCnaIndivResult->SetSizeHis(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatMat.ReSet(1, 1);
TRootAdcEvt(i0StexEcha, argNbSampWrite);
gCnaRootFile->fCnaResultsTree->Fill();
if (i0StexEcha == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Low Frequency Covariances between StexEchas
// sample fMatMat(StexEcha, StexEcha) (21) cTypLfCov 1*(1700,1700) = 2 890 000
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "LfCov";
v_nb_times = fFileHeader->fLfCovCalc;
v_dim_one = fEcal->MaxCrysEcnaInStex();
v_dim_two = fEcal->MaxCrysEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) { //=================================== Record type EB
if (fTagLfCov[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypLfCov;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeMat(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatHis.ReSet(1, 1);
TRootLfCov();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- Low Frequency Correlations between StexEchas
// sample fMatMat(StexEcha, StexEcha) (22) cTypLfCor 1*(1700,1700) = 2 890 000
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "LfCor";
v_nb_times = fFileHeader->fLfCorCalc;
v_dim_one = fEcal->MaxCrysEcnaInStex();
v_dim_two = fEcal->MaxCrysEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagLfCor[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypLfCor;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeMat(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatHis.ReSet(1, 1);
TRootLfCor();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- High Frequency Covariances between StexEchas
// sample fMatMat(StexEcha, StexEcha) (6) cTypHfCov 1*(1700,1700) = 2 890 000
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "HfCov";
v_nb_times = fFileHeader->fHfCovCalc;
v_dim_one = fEcal->MaxCrysEcnaInStex();
v_dim_two = fEcal->MaxCrysEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagHfCov[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypHfCov;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeMat(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatHis.ReSet(1, 1);
TRootHfCov();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//-------------------------- High Frequency Correlations between StexEchas
// sample fMatMat(StexEcha, StexEcha) (7) cTypHfCor 1*(1700,1700) = 2 890 000
MaxCar = fgMaxCar;
typ_name.Resize(MaxCar);
typ_name = "HfCor";
v_nb_times = fFileHeader->fHfCorCalc;
v_dim_one = fEcal->MaxCrysEcnaInStex();
v_dim_two = fEcal->MaxCrysEcnaInStex();
v_size = v_nb_times * v_dim_one * v_dim_two;
v_tot += v_size;
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(18) << typ_name << ": " << std::setw(4) << v_nb_times
<< " * (" << std::setw(4) << v_dim_one << "," << std::setw(4) << v_dim_two << ") = " << std::setw(9)
<< v_size;
}
for (Int_t i = 0; i < v_nb_times; i++) {
if (fTagHfCor[0] == 1) {
gCnaRootFile->fCnaIndivResult->fTypOfCnaResult = cTypHfCor;
gCnaRootFile->fCnaIndivResult->fIthElement = i;
gCnaRootFile->fCnaIndivResult->SetSizeMat(v_dim_one, v_dim_two);
gCnaRootFile->fCnaIndivResult->fMatHis.ReSet(1, 1);
TRootHfCor();
gCnaRootFile->fCnaResultsTree->Fill();
if (i == 0 && fFlagPrint == fCodePrintAllComments) {
std::cout << " => WRITTEN ON FILE ";
v_tot_writ += v_size;
}
}
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << std::endl;
}
//---------------------------------------------- WRITING
//...................................... file
gCnaRootFile->fRootFile->Write();
//...................................... header
fFileHeader->Write();
//...................................... status message
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> " << std::setw(20) << "TOTAL: " << std::setw(21)
<< "CALCULATED = " << std::setw(9) << v_tot << " => WRITTEN ON FILE = " << std::setw(9) << v_tot_writ
<< std::endl;
}
if (fFlagPrint == fCodePrintAllComments) {
std::cout << "*TEcnaRun::WriteRootFile(...)> Write OK in file " << file_name << " in directory:" << std::endl
<< " " << fCnaParPaths->ResultsRootFilePath().Data() << std::endl;
}
ok_write = kTRUE;
//...................................... close
CloseRootFile(file_name);
}
return ok_write;
} //-------------- End of WriteRootFile(...) -----------------------
//======================== "PREPA FILL" METHODS ===========================
//-------------------------------------------------------------------------
//
// Prepa Fill Stin numbers as a function of the Stin index
// (for writing in the ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootStinNumbers() {
if (fTagStinNumbers[0] == 1) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexStinEcna) = fT1d_StexStinFromIndex[j0StexStinEcna];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill last evt numbers for all the (StexEcha,sample)
// (for writing in the ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootNbOfEvts(const Int_t& argNbSampWrite) {
if (fTagNbOfEvts[0] == 1) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < argNbSampWrite; i0Sample++) {
gCnaRootFile->fCnaIndivResult->fMatHis(j0StexEcha, i0Sample) = fT2d_NbOfEvts[j0StexEcha][i0Sample];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill histogram of samples as a function of event
// (for writing in the ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootAdcEvt(const Int_t& user_StexEcha, const Int_t& argNbSampWrite) {
if (fTagAdcEvt[user_StexEcha] == 1) {
for (Int_t i0Sample = 0; i0Sample < argNbSampWrite; i0Sample++) {
//...................... all the bins set to zero
for (Int_t j_bin = 0; j_bin < fFileHeader->fReqNbOfEvts; j_bin++) {
gCnaRootFile->fCnaIndivResult->fMatHis(i0Sample, j_bin) = (Double_t)0.;
}
//...................... fill the non-zero bins
for (Int_t j_bin = 0; j_bin < fFileHeader->fReqNbOfEvts; j_bin++) {
gCnaRootFile->fCnaIndivResult->fMatHis(i0Sample, j_bin) = fT3d_AdcValues[user_StexEcha][i0Sample][j_bin];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill expectation values of the samples for all the StexEchas
// (for writing in the ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootMSp(const Int_t& argNbSampWrite) {
if (fTagMSp[0] == 1) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < argNbSampWrite; i0Sample++) {
gCnaRootFile->fCnaIndivResult->fMatHis(j0StexEcha, i0Sample) = fT2d_ev[j0StexEcha][i0Sample];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill sigmas of the samples for all the StexEchas
// (for writing in the ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootSSp(const Int_t& argNbSampWrite) {
if (fTagSSp[0] == 1) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
for (Int_t i0Sample = 0; i0Sample < argNbSampWrite; i0Sample++) {
gCnaRootFile->fCnaIndivResult->fMatHis(j0StexEcha, i0Sample) = fT2d_sig[j0StexEcha][i0Sample];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill mean covariances between StexEchas, mean over samples
// for all (Stin_X, Stin_Y)
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootLFccMoStins() {
if (fTagLFccMoStins[0] == 1) {
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
gCnaRootFile->fCnaIndivResult->fMatMat(i0StexStinEcna, j0StexStinEcna) =
fT2d_lfcc_mostins[i0StexStinEcna][j0StexStinEcna];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill mean correlations between StexEchas, mean over samples
// for all (Stin_X, Stin_Y)
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootHFccMoStins() {
if (fTagHFccMoStins[0] == 1) {
for (Int_t i0StexStinEcna = 0; i0StexStinEcna < fEcal->MaxStinEcnaInStex(); i0StexStinEcna++) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
gCnaRootFile->fCnaIndivResult->fMatMat(i0StexStinEcna, j0StexStinEcna) =
fT2d_hfcc_mostins[i0StexStinEcna][j0StexStinEcna];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill ADC distributions of the samples for all the StexEchas
// (for writing in the ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootAvTno() {
if (fTagAvTno[0] == 1) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexStinEcna) = fT1d_av_totn[j0StexStinEcna];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill ADC distributions xmin of the samples for all the StexEchas
// (for writing in the ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootAvLfn() {
if (fTagAvLfn[0] == 1) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexStinEcna) = fT1d_av_lofn[j0StexStinEcna];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill ADC distributions xmax of the samples for all the StexEchas
// (for writing in the ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootAvHfn() {
if (fTagAvHfn[0] == 1) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexStinEcna) = fT1d_av_hifn[j0StexStinEcna];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill Low Frequency covariances between StexEchas
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootLfCov() {
if (fTagLfCov[0] == 1) {
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
gCnaRootFile->fCnaIndivResult->fMatMat(i0StexEcha, j0StexEcha) = fT2d_lf_cov[i0StexEcha][j0StexEcha];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill Low Frequency correlations between StexEchas
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootLfCor() {
if (fTagLfCor[0] == 1) {
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
gCnaRootFile->fCnaIndivResult->fMatMat(i0StexEcha, j0StexEcha) = fT2d_lf_cor[i0StexEcha][j0StexEcha];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill High Frequency covariances between StexEchas
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootHfCov() {
if (fTagHfCov[0] == 1) {
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
gCnaRootFile->fCnaIndivResult->fMatMat(i0StexEcha, j0StexEcha) = fT2d_hf_cov[i0StexEcha][j0StexEcha];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill High Frequency correlations between StexEchas
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootHfCor() {
if (fTagHfCor[0] == 1) {
for (Int_t i0StexEcha = 0; i0StexEcha < fEcal->MaxCrysEcnaInStex(); i0StexEcha++) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
gCnaRootFile->fCnaIndivResult->fMatMat(i0StexEcha, j0StexEcha) = fT2d_hf_cor[i0StexEcha][j0StexEcha];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill covariances between samples for a given StexEcha
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootCovCss(const Int_t& user_StexEcha, const Int_t& argNbSampWrite) {
if (fTagCovCss[user_StexEcha] == 1) {
for (Int_t i0Sample = 0; i0Sample < argNbSampWrite; i0Sample++) {
for (Int_t j0Sample = 0; j0Sample < argNbSampWrite; j0Sample++) {
gCnaRootFile->fCnaIndivResult->fMatMat(i0Sample, j0Sample) = fT3d_cov_ss[user_StexEcha][i0Sample][j0Sample];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill correlations between samples for a given StexEcha
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootCorCss(const Int_t& user_StexEcha, const Int_t& argNbSampWrite) {
if (fTagCorCss[user_StexEcha] == 1) {
for (Int_t i0Sample = 0; i0Sample < argNbSampWrite; i0Sample++) {
for (Int_t j0Sample = 0; j0Sample < argNbSampWrite; j0Sample++) {
gCnaRootFile->fCnaIndivResult->fMatMat(i0Sample, j0Sample) = fT3d_cor_ss[user_StexEcha][i0Sample][j0Sample];
}
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill expectation values of the expectation values of the samples
// for all the StexEchas
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootPed() {
if (fTagPed[0] == 1) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexEcha) = fT1d_ev_ev[j0StexEcha];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill expectation values of the sigmas of the samples
// for all the StexEchas
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootTno() {
if (fTagTno[0] == 1) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexEcha) = fT1d_evsamp_of_sigevt[j0StexEcha];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill expectation values of the (sample,sample) correlations
// for all the StexEchas
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootMeanCorss() {
if (fTagMeanCorss[0] == 1) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexEcha) = fT1d_ev_cor_ss[j0StexEcha];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill sigmas of the expectation values of the samples
// for all the StexEchas
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootLfn() {
if (fTagLfn[0] == 1) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexEcha) = fT1d_sigevt_of_evsamp[j0StexEcha];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill sigmas of the expectation values of the sigmas
// for all the StexEchas
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootHfn() {
if (fTagHfn[0] == 1) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexEcha) = fT1d_evevt_of_sigsamp[j0StexEcha];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill sigmas of the (sample,sample) correlations
// for all the StexEchas
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootSigCorss() {
if (fTagSigCorss[0] == 1) {
for (Int_t j0StexEcha = 0; j0StexEcha < fEcal->MaxCrysEcnaInStex(); j0StexEcha++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexEcha) = fT1d_sig_cor_ss[j0StexEcha];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill Average Pedestals
// for all the StexStins
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootAvPed() {
if (fTagAvPed[0] == 1) {
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexStinEcna) = fT1d_av_mped[j0StexStinEcna];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill
//
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootAvEvCorss() {
if (fTagAvMeanCorss[0] == 1) // test 1st elt only since global calc
{
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexStinEcna) = fT1d_av_ev_corss[j0StexStinEcna];
}
}
}
//-------------------------------------------------------------------------
//
// Prepa Fill
//
// (for writing in ROOT file)
//
//-------------------------------------------------------------------------
void TEcnaRun::TRootAvSigCorss() {
if (fTagAvSigCorss[0] == 1) // test 1st elt only since global calc
{
for (Int_t j0StexStinEcna = 0; j0StexStinEcna < fEcal->MaxStinEcnaInStex(); j0StexStinEcna++) {
gCnaRootFile->fCnaIndivResult->fMatHis(0, j0StexStinEcna) = fT1d_av_sig_corss[j0StexStinEcna];
}
}
}
//=========================================================================
//
// METHODS TO SET FLAGS TO PRINT (OR NOT) COMMENTS (DEBUG)
//
//=========================================================================
void TEcnaRun::PrintComments() {
// Set flags to authorize printing of some comments concerning initialisations (default)
fFlagPrint = fCodePrintComments;
std::cout << "*TEcnaRun::PrintComments()> Warnings and some comments on init will be printed" << std::endl;
}
void TEcnaRun::PrintWarnings() {
// Set flags to authorize printing of warnings
fFlagPrint = fCodePrintWarnings;
std::cout << "*TEcnaRun::PrintWarnings()> Warnings will be printed" << std::endl;
}
void TEcnaRun::PrintAllComments() {
// Set flags to authorize printing of the comments of all the methods
fFlagPrint = fCodePrintAllComments;
std::cout << "*TEcnaRun::PrintAllComments()> All the comments will be printed" << std::endl;
}
void TEcnaRun::PrintNoComment() {
// Set flags to forbid the printing of all the comments
fFlagPrint = fCodePrintNoComment;
}
//=========================== E N D ======================================
|