~matthew-littlefield/maus/devel_3

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
INFO: This is the './configure' script.  You should only
INFO: run this once. The purpose of me is to:
INFO:
INFO:     1. Check that you have a compiler
INFO:     2. Check that you have Python
INFO:     3. Check your version of Python is supported
INFO:     4. Create a file called 'env.sh'
INFO:

INFO: Attempting to use third party libraries from  /home/matt/maus_littlefield

SUCCESS: Whenever you want to use MAUS, you must 'source'
SUCCESS: the environmental variables file.  For Bourne-
SUCCESS: compatible shells like 'bash', run:
SUCCESS:
SUCCESS:      source env.sh
SUCCESS:
SUCCESS: which can be added to your respective shell's
SUCCESS: startup scripts.  Example: ~/.bashrc for 'bash'.
WARNING: MAUS already setup
scons: Reading SConscript files ...
Checking whether the C++ compiler works(cached) yes
Checking for C++ library json... (cached) yes
Checking for C++ header file json/json.h... (cached) yes
Checking for C++ library stdc++... (cached) yes
Checking for C function printf()... (cached) yes
Checking for C header file math.h... (cached) yes
Checking for C header file stdlib.h... (cached) yes
Checking for C++ header file iostream... (cached) yes
Checking for python command... (cached) yes
Checking for C++ header file Python.h... (cached) yes
Checking for swig command... (cached) yes
Checking for C library gsl... (cached) yes
Checking for C library gslcblas... (cached) yes
Checking for root command... (cached) yes

!! Found the program 'root', so MAUS will use it.

Checking for root-config command... (cached) yes
Checking for C++ library Cint... (cached) yes
Checking for C++ library Core... (cached) yes
Checking for C++ library Gpad... (cached) yes
Checking for C++ library Graf... (cached) yes
Checking for C++ library Graf3d... (cached) yes
Checking for C++ library MathCore... (cached) yes
Checking for C++ library Minuit... (cached) yes
Checking for C++ library Hist... (cached) yes
Checking for C++ library Matrix... (cached) yes
Checking for C++ library Spectrum... (cached) yes
Checking for C++ library Net... (cached) yes
Checking for C++ library Physics... (cached) yes
Checking for C++ library Postscript... (cached) yes
Checking for C++ library RIO... (cached) yes
Checking for C++ library Rint... (cached) yes
Checking for C++ library Thread... (cached) yes
Checking for C++ library Tree... (cached) yes
Checking for C++ library dl... (cached) yes
Checking for C++ library m... (cached) yes
Checking for C++ library pthread... (cached) yes
Checking for C++ header file TH1F.h... (cached) yes
Checking for C++ header file TMinuit.h... (cached) yes
Checking for C++ library CLHEP... (cached) yes

!! Found the package 'geant4', so assume you want to use it.

Checking for C++ header file G4EventManager.hh... (cached) yes
Checking for C++ library G4FR... (cached) yes
Checking for C++ library G4RayTracer... (cached) yes
Checking for C++ library G4Tree... (cached) yes
Checking for C++ library G4UIGAG... (cached) yes
Checking for C++ library G4UIbasic... (cached) yes
Checking for C++ library G4UIcommon... (cached) yes
Checking for C++ library G4VRML... (cached) yes
Checking for C++ library G4baryons... (cached) yes
Checking for C++ library G4biasing... (cached) yes
Checking for C++ library G4bosons... (cached) yes
Checking for C++ library G4brep... (cached) yes
Checking for C++ library G4csg... (cached) yes
Checking for C++ library G4cuts... (cached) yes
Checking for C++ library G4decay... (cached) yes
Checking for C++ library G4detector... (cached) yes
Checking for C++ library G4detutils... (cached) yes
Checking for C++ library G4detscorer... (cached) yes
Checking for C++ library G4digits... (cached) yes
Checking for C++ library G4emlowenergy... (cached) yes
Checking for C++ library G4empolar... (cached) yes
Checking for C++ library G4emstandard... (cached) yes
Checking for C++ library G4emutils... (cached) yes
Checking for C++ library G4error_propagation... (cached) yes
Checking for C++ library G4event... (cached) yes
Checking for C++ library G4geomBoolean... (cached) yes
Checking for C++ library G4geombias... (cached) yes
Checking for C++ library G4geomdivision... (cached) yes
Checking for C++ library G4geometrymng... (cached) yes
Checking for C++ library G4geomtext... (cached) yes
Checking for C++ library G4gflash... (cached) yes
Checking for C++ library G4globman... (cached) yes
Checking for C++ library G4graphics_reps... (cached) yes
Checking for C++ library G4had_lll_fis... (cached) yes
Checking for C++ library G4had_mod_man... (cached) yes
Checking for C++ library G4had_mod_util... (cached) yes
Checking for C++ library G4had_neu_hp... (cached) yes
Checking for C++ library G4had_preequ_exciton... (cached) yes
Checking for C++ library G4had_string_diff... (cached) yes
Checking for C++ library G4had_string_frag... (cached) yes
Checking for C++ library G4had_string_man... (cached) yes
Checking for C++ library G4had_theo_max... (cached) yes
Checking for C++ library G4hadronic_HE... (cached) yes
Checking for C++ library G4hadronic_LE... (cached) yes
Checking for C++ library G4hadronic_RPG... (cached) yes
Checking for C++ library G4hadronic_ablation... (cached) yes
Checking for C++ library G4hadronic_abrasion... (cached) yes
Checking for C++ library G4hadronic_bert_cascade... (cached) yes
Checking for C++ library G4hadronic_binary... (cached) yes
Checking for C++ library G4had_im_r_matrix... (cached) yes
Checking for C++ library G4hadronic_deex_fermi_breakup... (cached) yes
Checking for C++ library G4hadronic_deex_handler... (cached) yes
Checking for C++ library G4hadronic_deex_evaporation... (cached) yes
Checking for C++ library G4hadronic_deex_fission... (cached) yes
Checking for C++ library G4hadronic_deex_gem_evaporation... (cached) yes
Checking for C++ library G4hadronic_deex_management... (cached) yes
Checking for C++ library G4hadronic_deex_multifragmentation... (cached) yes
Checking for C++ library G4hadronic_deex_photon_evaporation... (cached) yes
Checking for C++ library G4hadronic_deex_util... (cached) yes
Checking for C++ library G4hadronic_em_dissociation... (cached) yes
Checking for C++ library G4hadronic_hetcpp_evaporation... (cached) yes
Checking for C++ library G4hadronic_hetcpp_utils... (cached) yes
Checking for C++ library G4hadronic_incl_cascade... (cached) yes
Checking for C++ library G4hadronic_interface_ci... (cached) yes
Checking for C++ library G4hadronic_body_ci... (cached) yes
Checking for C++ library G4hadronic_iso... (cached) yes
Checking for C++ library G4hadronic_leading_particle... (cached) yes
Checking for C++ library G4hadronic_mgt... (cached) yes
Checking for C++ library G4hadronic_proc... (cached) yes
Checking for C++ library G4hadronic_qgstring... (cached) yes
Checking for C++ library G4hadronic_qmd... (cached) yes
Checking for C++ library G4hadronic_radioactivedecay... (cached) yes
Checking for C++ library G4hadronic_stop... (cached) yes
Checking for C++ library G4hadronic_util... (cached) yes
Checking for C++ library G4hadronic_xsect... (cached) yes
Checking for C++ library G4hepnumerics... (cached) yes
Checking for C++ library G4hits... (cached) yes
Checking for C++ library G4intercoms... (cached) yes
Checking for C++ library G4ions... (cached) yes
Checking for C++ library G4leptons... (cached) yes
Checking for C++ library G4magneticfield... (cached) yes
Checking for C++ library G4materials... (cached) yes
Checking for C++ library G4mctruth... (cached) yes
Checking for C++ library G4mesons... (cached) yes
Checking for C++ library G4modeling... (cached) yes
Checking for C++ library G4muons... (cached) yes
Checking for C++ library G4navigation... (cached) yes
Checking for C++ library G4optical... (cached) yes
Checking for C++ library G4parameterisation... (cached) yes
Checking for C++ library G4partadj... (cached) yes
Checking for C++ library G4partman... (cached) yes
Checking for C++ library G4partutils... (cached) yes
Checking for C++ library G4phys_builders... (cached) yes
Checking for C++ library G4had_muon_nuclear... (cached) yes
Checking for C++ library G4hadronic_coherent_elastic... (cached) yes
Checking for C++ library G4emhighenergy.so... (cached) yes
Checking for C++ library G4phys_lists... (cached) yes
Checking for C++ library G4procman... (cached) yes
Checking for C++ library G4readout... (cached) yes
Checking for C++ library G4run... (cached) yes
Checking for C++ library G4scoring... (cached) yes
Checking for C++ library G4shortlived... (cached) yes
Checking for C++ library G4specsolids... (cached) yes
Checking for C++ library G4track... (cached) yes
Checking for C++ library G4tracking... (cached) yes
Checking for C++ library G4transportation... (cached) yes
Checking for C++ library G4visHepRep... (cached) yes
Checking for C++ library G4visXXX... (cached) yes
Checking for C++ library G4vis_management... (cached) yes
Checking for C++ library G4volumes... (cached) yes
Checking for C++ library G4xrays... (cached) yes
Checking for C++ library recpack... (cached) yes
Checking for C++ header file recpack/RecpackManager.h... (cached) yes
Checking for C++ library gtest... (cached) yes
Checking for C++ header file gtest/gtest.h... (cached) yes
Checking for C++ library MDunpack... (cached) yes
Checking for C++ header file unpacking/MDevent.h... (cached) yes
In cleaning mode
Removing: /home/matt/maus_littlefield/build/test_numpy.py
Removing: /home/matt/maus_littlefield/build/InputCppRoot.pyc
Removing: /home/matt/maus_littlefield/build/test_MapPyPrint.py
Removing: /home/matt/maus_littlefield/build/TestMapPyReconSetup.pyc
Removing: /home/matt/maus_littlefield/build/MapCppTOFSpacePoints.pyc
Removing: /home/matt/maus_littlefield/build/MapPyReconSetup.py
Removing: /home/matt/maus_littlefield/build/test_MapPyBeamMaker.pyc
Removing: /home/matt/maus_littlefield/build/ReducePyDoNothing.py
Removing: /home/matt/maus_littlefield/build/OutputPyFile.pyc
Removing: /home/matt/maus_littlefield/build/MapCppTOFDigits.pyc
Removing: /home/matt/maus_littlefield/build/test_OutputPyJSON.py
Removing: /home/matt/maus_littlefield/build/test_MapCppTrackerMCDigitization.py
Removing: /home/matt/maus_littlefield/build/libInputCppDAQData.so
Removing: /home/matt/maus_littlefield/build/test_evaluator.py
Removing: /home/matt/maus_littlefield/build/MapPyTestMap.py
Removing: /home/matt/maus_littlefield/build/libMapCppPrint.so
Removing: /home/matt/maus_littlefield/build/ReducePyScalersTable.pyc
Removing: /home/matt/maus_littlefield/build/test_MapCppTrackerRecon.py
Removing: /home/matt/maus_littlefield/build/test_OutputCppRoot.pyc
Removing: /home/matt/maus_littlefield/build/test_OutputPyImage.py
Removing: /home/matt/maus_littlefield/build/OutputPyDoNothing.pyc
Removing: /home/matt/maus_littlefield/build/test_cpp_unit.pyc
Removing: /home/matt/maus_littlefield/build/test_numpy.pyc
Removing: /home/matt/maus_littlefield/build/test_ReducePyCkov.pyc
Removing: /home/matt/maus_littlefield/build/libMapCppTOFMCDigitizer.so
Removing: /home/matt/maus_littlefield/build/test_ReducePyCkov.py
Removing: /home/matt/maus_littlefield/build/test_error_handler.pyc
Removing: /home/matt/maus_littlefield/build/test_InputPyEmptyDocument.pyc
Removing: /home/matt/maus_littlefield/build/test_InputCppDAQOfflineData.py
Removing: /home/matt/maus_littlefield/build/MapPyRemoveTracks.py
Removing: /home/matt/maus_littlefield/build/_InputCppDAQData.so
Removing: /home/matt/maus_littlefield/build/OutputPyImage.py
Removing: /home/matt/maus_littlefield/build/ReducePyScalers.pyc
Removing: /home/matt/maus_littlefield/build/_MapCppPrint.so
Removing: /home/matt/maus_littlefield/build/MapPyDoNothing.pyc
Removing: /home/matt/maus_littlefield/build/test_python_style.pyc
Removing: /home/matt/maus_littlefield/build/test_InputPyEmptyDocument.py
Removing: /home/matt/maus_littlefield/build/test_OutputPyDoNothing.pyc
Removing: /home/matt/maus_littlefield/build/ReducePyHistogramTDCADCCounts.pyc
Removing: /home/matt/maus_littlefield/build/_MapCppTrackerRecon.so
Removing: /home/matt/maus_littlefield/build/libInputCppRoot.so
Removing: /home/matt/maus_littlefield/build/MapPyPrint.pyc
Removing: /home/matt/maus_littlefield/build/_MapCppTOFSpacePoints.so
Removing: /home/matt/maus_littlefield/build/MapCppTrackerMCDigitization.pyc
Removing: /home/matt/maus_littlefield/build/MapCppTOFSpacePoints.py
Removing: /home/matt/maus_littlefield/build/MapPyRemoveTracks.pyc
Removing: /home/matt/maus_littlefield/build/test_ReducePyScalersTable.pyc
Removing: /home/matt/maus_littlefield/build/_InputCppRoot.so
Removing: /home/matt/maus_littlefield/build/MapPyFakeTestSimulation.pyc
Removing: /home/matt/maus_littlefield/build/test_MapCppPrint.pyc
Removing: /home/matt/maus_littlefield/build/test_root_plot.pyc
Removing: /home/matt/maus_littlefield/build/MapPyGroup.py
Removing: /home/matt/maus_littlefield/build/test_ReducePyHistogramTDCADCCounts.pyc
Removing: /home/matt/maus_littlefield/build/MAUS.pyc
Removing: /home/matt/maus_littlefield/build/test_ReducePyScalersTable.py
Removing: /home/matt/maus_littlefield/build/test_always_true.py
Removing: /home/matt/maus_littlefield/build/ReducePyScalersTable.py
Removing: /home/matt/maus_littlefield/build/InputCppDAQData.pyc
Removing: /home/matt/maus_littlefield/build/InputCppRoot.py
Removing: /home/matt/maus_littlefield/build/InputCppDAQOfflineData.py
Removing: /home/matt/maus_littlefield/build/OutputPyJSON.py
Removing: /home/matt/maus_littlefield/build/OutputCppRoot.py
Removing: /home/matt/maus_littlefield/build/libMapCppTOFSlabHits.so
Removing: /home/matt/maus_littlefield/build/test_InputPyJson.pyc
Removing: /home/matt/maus_littlefield/build/test_MapPyCkov.py
Removing: /home/matt/maus_littlefield/build/InputPyJSON.pyc
Removing: /home/matt/maus_littlefield/build/test_InputPySpillGenerator.pyc
Removing: /home/matt/maus_littlefield/build/ReducePyScalers.py
Removing: /home/matt/maus_littlefield/build/MapCppTOFSlabHits.py
Removing: /home/matt/maus_littlefield/build/MapPyBeamMaker.pyc
Removing: /home/matt/maus_littlefield/build/libOutputCppRoot.so
Removing: /home/matt/maus_littlefield/build/MapPyFakeTestSimulation.py
Removing: /home/matt/maus_littlefield/build/test_OutputCppRoot.py
Removing: /home/matt/maus_littlefield/build/test_MapPyScalersDump.pyc
Removing: /home/matt/maus_littlefield/build/InputPyJSON.py
Removing: /home/matt/maus_littlefield/build/MapPyGroup.pyc
Removing: /home/matt/maus_littlefield/build/test_InputCppRoot.py
Removing: /home/matt/maus_littlefield/build/test_MapPyRemoveTracks.pyc
Removing: /home/matt/maus_littlefield/build/MapCppTrackerMCDigitization.py
Removing: /home/matt/maus_littlefield/build/test_schema_schema.pyc
Removing: /home/matt/maus_littlefield/build/test_InputPyJson.py
Removing: /home/matt/maus_littlefield/build/InputPyEmptyDocument.py
Removing: /home/matt/maus_littlefield/build/ReducePyTOFPlot.pyc
Removing: /home/matt/maus_littlefield/build/MapPyCkovSecondPeaks.pyc
Removing: /home/matt/maus_littlefield/build/test_root_plot.py
Removing: /home/matt/maus_littlefield/build/test_MapCppTOFDigits.py
Removing: /home/matt/maus_littlefield/build/MapPyMCReconSetup.pyc
Removing: /home/matt/maus_littlefield/build/MapPyReconSetup.pyc
Removing: /home/matt/maus_littlefield/build/test_ReducePyScalers.py
Removing: /home/matt/maus_littlefield/build/test_MapCppSimulation.py
Removing: /home/matt/maus_littlefield/build/InputCppDAQOfflineData.pyc
Removing: /home/matt/maus_littlefield/build/test_OutputPyJSON.pyc
Removing: /home/matt/maus_littlefield/build/test_ReducePyROOTHistogram.py
Removing: /home/matt/maus_littlefield/build/test_ReducePyMatplotlibHistogram.py
Removing: /home/matt/maus_littlefield/build/OutputPyJSON.pyc
Removing: /home/matt/maus_littlefield/build/test_MapCppTrackerMCDigitization.pyc
Removing: /home/matt/maus_littlefield/build/test_MapCppTOFSlabHits.pyc
Removing: /home/matt/maus_littlefield/build/test_OutputPyFile.pyc
Removing: /home/matt/maus_littlefield/build/MapCppTOFDigits.py
Removing: /home/matt/maus_littlefield/build/test_cdb_mockup.pyc
Removing: /home/matt/maus_littlefield/build/MAUS.py
Removing: /home/matt/maus_littlefield/build/test_spill_schema.pyc
Removing: /home/matt/maus_littlefield/build/ReducePyDoNothing.pyc
Removing: /home/matt/maus_littlefield/build/_MapCppTrackerMCDigitization.so
Removing: /home/matt/maus_littlefield/build/test_InputCppDAQData.py
Removing: /home/matt/maus_littlefield/build/beam.pyc
Removing: /home/matt/maus_littlefield/build/test_MapCppTrackerRecon.pyc
Removing: /home/matt/maus_littlefield/build/MapCppTrackerRecon.pyc
Removing: /home/matt/maus_littlefield/build/MapPyDoNothing.py
Removing: /home/matt/maus_littlefield/build/InputCppDAQData.py
Removing: /home/matt/maus_littlefield/build/MapPyScalersDump.pyc
Removing: /home/matt/maus_littlefield/build/ReducePyROOTHistogram.py
Removing: /home/matt/maus_littlefield/build/MapCppSimulation.pyc
Removing: /home/matt/maus_littlefield/build/test_always_true.pyc
Removing: /home/matt/maus_littlefield/build/MapPyTOFPlot.pyc
Removing: /home/matt/maus_littlefield/build/InputPyEmptyDocument.pyc
Removing: /home/matt/maus_littlefield/build/_MapCppTOFDigits.so
Removing: /home/matt/maus_littlefield/build/test_InputCppRoot.pyc
Removing: /home/matt/maus_littlefield/build/_MapCppTOFMCDigitizer.so
Removing: /home/matt/maus_littlefield/build/test_InputCppDAQData.pyc
Removing: /home/matt/maus_littlefield/build/test_InputPySpillGenerator.py
Removing: /home/matt/maus_littlefield/build/test_core_go.pyc
Removing: /home/matt/maus_littlefield/build/MapPyTestMap.pyc
Removing: /home/matt/maus_littlefield/build/MapPyPrint.py
Removing: /home/matt/maus_littlefield/build/MapCppTOFMCDigitizer.pyc
Removing: /home/matt/maus_littlefield/build/test_MapCppTOFMCDigitizer.pyc
Removing: /home/matt/maus_littlefield/build/MapCppTOFMCDigitizer.py
Removing: /home/matt/maus_littlefield/build/libMapCppSimulation.so
Removing: /home/matt/maus_littlefield/build/test_MapPyFakeTestSimulation.py
Removing: /home/matt/maus_littlefield/build/TestMapPyMCReconSetup.pyc
Removing: /home/matt/maus_littlefield/build/test_cpp_style.pyc
Removing: /home/matt/maus_littlefield/build/ReduceCppTracker.pyc
Removing: /home/matt/maus_littlefield/build/MapPyScalersDump.py
Removing: /home/matt/maus_littlefield/build/MapPyTOFPlot.py
Removing: /home/matt/maus_littlefield/build/test_cpp_style.py
Removing: /home/matt/maus_littlefield/build/test_configuration.pyc
Removing: /home/matt/maus_littlefield/build/test_xml_libs.py
Removing: /home/matt/maus_littlefield/build/libMapCppTrackerRecon.so
Removing: /home/matt/maus_littlefield/build/_OutputCppRoot.so
Removing: /home/matt/maus_littlefield/build/cpplint_exceptions.py
Removing: /home/matt/maus_littlefield/build/OutputPyImage.pyc
Removing: /home/matt/maus_littlefield/build/ReduceCppTracker.py
Removing: /home/matt/maus_littlefield/build/_ReduceCppTracker.so
Removing: /home/matt/maus_littlefield/build/ReducePyHistogramTDCADCCounts.py
Removing: /home/matt/maus_littlefield/build/MapCppTrackerRecon.py
Removing: /home/matt/maus_littlefield/build/ReducePyTOFPlot.py
Removing: /home/matt/maus_littlefield/build/libReduceCppTracker.so
Removing: /home/matt/maus_littlefield/build/test_ReducePyMatplotlibHistogram.pyc
Removing: /home/matt/maus_littlefield/build/test_configuration.py
Removing: /home/matt/maus_littlefield/build/test_MapPyGroup.py
Removing: /home/matt/maus_littlefield/build/test_MapPyDoNothing.py
Removing: /home/matt/maus_littlefield/build/test_xml_libs.pyc
Removing: /home/matt/maus_littlefield/build/MapCppPrint.pyc
Removing: /home/matt/maus_littlefield/build/ReducePyCkov.pyc
Removing: /home/matt/maus_littlefield/build/TestMapPyReconSetup.py
Removing: /home/matt/maus_littlefield/build/test_MapPyBeamMaker.py
Removing: /home/matt/maus_littlefield/build/test_ReducePyScalers.pyc
Removing: /home/matt/maus_littlefield/build/MapPyMCReconSetup.py
Removing: /home/matt/maus_littlefield/build/_InputCppDAQOfflineData.so
Removing: /home/matt/maus_littlefield/build/test_MapCppTOFMCDigitizer.py
Removing: /home/matt/maus_littlefield/build/test_cpp_unit
Removing: /home/matt/maus_littlefield/build/_MapCppSimulation.so
Removing: /home/matt/maus_littlefield/build/test_MapCppTOFSlabHits.py
Removing: /home/matt/maus_littlefield/build/InputPySpillGenerator.py
Removing: /home/matt/maus_littlefield/build/test_MapPyGroup.pyc
Removing: /home/matt/maus_littlefield/build/test_cpp_unit.py
Removing: /home/matt/maus_littlefield/build/MapCppSimulation.py
Removing: /home/matt/maus_littlefield/build/ReducePyROOTHistogram.pyc
Removing: /home/matt/maus_littlefield/build/test_beam.py
Removing: /home/matt/maus_littlefield/build/test_MapCppSimulation.pyc
Removing: /home/matt/maus_littlefield/build/libMapCppTOFSpacePoints.so
Removing: /home/matt/maus_littlefield/build/InputPySpillGenerator.pyc
Removing: /home/matt/maus_littlefield/build/_MapCppTOFSlabHits.so
Removing: /home/matt/maus_littlefield/build/test_MapPyCkov.pyc
Removing: /home/matt/maus_littlefield/build/test_error_handler.py
Removing: /home/matt/maus_littlefield/build/MapPyCkov.py
Removing: /home/matt/maus_littlefield/build/ReducePyCkov.py
Removing: /home/matt/maus_littlefield/build/test_MapCppTOFDigits.pyc
Removing: /home/matt/maus_littlefield/build/test_MapPyFakeTestSimulation.pyc
Removing: /home/matt/maus_littlefield/build/optics
Removing: /home/matt/maus_littlefield/build/MapCppTOFSlabHits.pyc
Removing: /home/matt/maus_littlefield/build/libMausCpp.so
Removing: /home/matt/maus_littlefield/build/test_schema_schema.py
Removing: /home/matt/maus_littlefield/build/cpplint_exceptions.pyc
Removing: /home/matt/maus_littlefield/build/test_python_style.py
Removing: /home/matt/maus_littlefield/build/test_InputCppDAQOfflineData.pyc
Removing: /home/matt/maus_littlefield/build/test_MapPyCkovSecondPeaks.pyc
Removing: /home/matt/maus_littlefield/build/libMapCppTOFDigits.so
Removing: /home/matt/maus_littlefield/build/libMapCppTrackerMCDigitization.so
Removing: /home/matt/maus_littlefield/build/test_OutputPyFile.py
Removing: /home/matt/maus_littlefield/build/test_core_go.py
Removing: /home/matt/maus_littlefield/build/ReducePyMatplotlibHistogram.py
Removing: /home/matt/maus_littlefield/build/test_beam.pyc
Removing: /home/matt/maus_littlefield/build/test_MapCppPrint.py
Removing: /home/matt/maus_littlefield/build/test_MapCppTOFSpacePoints.pyc
Removing: /home/matt/maus_littlefield/build/TestMapPyMCReconSetup.py
Removing: /home/matt/maus_littlefield/build/test_MapCppTOFSpacePoints.py
Removing: /home/matt/maus_littlefield/build/test_MapPyDoNothing.pyc
Removing: /home/matt/maus_littlefield/build/OutputPyFile.py
Removing: /home/matt/maus_littlefield/build/MapPyCkovSecondPeaks.py
Removing: /home/matt/maus_littlefield/build/test_OutputPyImage.pyc
Removing: /home/matt/maus_littlefield/build/test_evaluator.pyc
Removing: /home/matt/maus_littlefield/build/OutputCppRoot.pyc
Removing: /home/matt/maus_littlefield/build/test_MapPyPrint.pyc
Removing: /home/matt/maus_littlefield/build/test_MapPyCkovSecondPeaks.py
Removing: /home/matt/maus_littlefield/build/beam.py
Removing: /home/matt/maus_littlefield/build/MapCppPrint.py
Removing: /home/matt/maus_littlefield/build/MapPyBeamMaker.py
Removing: /home/matt/maus_littlefield/build/test_cdb_mockup.py
Removing: /home/matt/maus_littlefield/build/libInputCppDAQOfflineData.so
Removing: /home/matt/maus_littlefield/build/test_ReducePyROOTHistogram.pyc
Removing: /home/matt/maus_littlefield/build/OutputPyDoNothing.py
Removing: /home/matt/maus_littlefield/build/MapPyCkov.pyc
Removing: /home/matt/maus_littlefield/build/test_MapPyRemoveTracks.py
Removing: /home/matt/maus_littlefield/build/test_ReducePyHistogramTDCADCCounts.py
Removing: /home/matt/maus_littlefield/build/test_MapPyScalersDump.py
Removing: /home/matt/maus_littlefield/build/test_spill_schema.py
Removing: /home/matt/maus_littlefield/build/test_OutputPyDoNothing.py
Removing: /home/matt/maus_littlefield/build/ReducePyMatplotlibHistogram.pyc
['rootcint', '-f', '/home/matt/maus_littlefield/src/common_cpp/DataStructure//MausDataStructure.cc', '-c', '-I/home/matt/maus_littlefield/third_party/install/include', '-I/home/matt/maus_littlefield/third_party/install/include/python2.7', '-I/home/matt/maus_littlefield/third_party/install/include/root', '-I/home/matt/maus_littlefield/src/legacy', '-I/home/matt/maus_littlefield/src/common_cpp', '-I', '-I/home/matt/maus_littlefield/third_party/build/root_v5.30.03/include', '-I/home/matt/maus_littlefield/third_party/build/geant4.9.2.p04/include/', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/DAQData.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFEventSlabHit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/EMRSpillData.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Channels.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/KLDaq.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Scalars.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/CkovDigit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Primary.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/SciFiChannelId.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/V1290.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/SciFiEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Spill.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/MCEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Data.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/V1731.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Tag.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/EMREvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/ReconEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/CkovA.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFChannelId.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/CkovB.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Trigger.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/KLEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/ThreeVector.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFDaq.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Step.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/CkovEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Unknown.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFSlabHit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFSpacePoint.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/V830.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFDigit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/GlobalEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Pmt0.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/CkovDaq.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Pmt1.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/SpecialVirtualChannelId.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TriggerRequest.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Hit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFEventSpacePoint.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Track.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFEventDigit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/VirtualHit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TriggerEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/V1724.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/LinkDef.hh']
Found Python module: InputPyEmptyDocument
Found C++ module: InputCppDAQOfflineData
Installing src/input/InputCppDAQOfflineData
Found Python module: InputPySpillGenerator
Found C++ module: InputCppRoot
Installing src/input/InputCppRoot
Found Python module: InputPyJSON
Found C++ module: InputCppDAQData
Installing src/input/InputCppDAQData
Found Python module: MapPyCkov
Found Python module: MapPyFakeTestSimulation
Found Python module: MapPyTestMap
Found C++ module: MapCppTrackerRecon
Installing src/map/MapCppTrackerRecon
Found C++ module: MapCppTOFSlabHits
Installing src/map/MapCppTOFSlabHits
Found Python module: MapPyRemoveTracks
Found Python module: MapPyCkovSecondPeaks
Found C++ module: MapCppTOFMCDigitizer
Installing src/map/MapCppTOFMCDigitizer
Found Python module: MapPyBeamMaker
Found C++ module: MapCppPrint
Installing src/map/MapCppPrint
Found Python module: MapPyMCReconSetup
Found C++ module: MapCppTOFSpacePoints
Installing src/map/MapCppTOFSpacePoints
Found Python module: MapPyTOFPlot
Found C++ module: MapCppTOFDigits
Installing src/map/MapCppTOFDigits
Found Python module: MapPyScalersDump
Found C++ module: MapCppTrackerMCDigitization
Installing src/map/MapCppTrackerMCDigitization
Found Python module: MapPyGroup
Found Python module: MapPyReconSetup
Found Python module: MapPyPrint
Found Python module: MapPyDoNothing
Found C++ module: MapCppSimulation
Installing src/map/MapCppSimulation
Found Python module: ReducePyMatplotlibHistogram
Found Python module: ReducePyROOTHistogram
Found Python module: ReducePyHistogramTDCADCCounts
Found C++ module: ReduceCppTracker
Installing src/reduce/ReduceCppTracker
Found Python module: ReducePyTOFPlot
Found Python module: ReducePyScalers
Found Python module: ReducePyCkov
Found Python module: ReducePyDoNothing
Found Python module: ReducePyScalersTable
Found Python module: OutputPyJSON
Found C++ module: OutputCppRoot
Installing src/output/OutputCppRoot
Found Python module: OutputPyFile
Found Python module: OutputPyImage
Found Python module: OutputPyDoNothing
scons: done reading SConscript files.
scons: Cleaning targets ...
Removed src/input/InputCppDAQData/build/InputCppDAQData_wrap.cc
Removed src/input/InputCppDAQData/build/InputCppDAQData.py
Removed src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData_wrap.cc
Removed src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData.py
Removed src/input/InputCppRoot/build/InputCppRoot_wrap.cc
Removed src/input/InputCppRoot/build/InputCppRoot.py
Removed src/map/MapCppPrint/build/MapCppPrint_wrap.cc
Removed src/map/MapCppPrint/build/MapCppPrint.py
Removed src/map/MapCppSimulation/build/MapCppSimulation_wrap.cc
Removed src/map/MapCppSimulation/build/MapCppSimulation.py
Removed src/map/MapCppTOFDigits/build/MapCppTOFDigits_wrap.cc
Removed src/map/MapCppTOFDigits/build/MapCppTOFDigits.py
Removed src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer_wrap.cc
Removed src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer.py
Removed src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits_wrap.cc
Removed src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits.py
Removed src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints_wrap.cc
Removed src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints.py
Removed src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization_wrap.cc
Removed src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization.py
Removed src/map/MapCppTrackerRecon/build/MapCppTrackerRecon_wrap.cc
Removed src/map/MapCppTrackerRecon/build/MapCppTrackerRecon.py
Removed src/output/OutputCppRoot/build/OutputCppRoot_wrap.cc
Removed src/output/OutputCppRoot/build/OutputCppRoot.py
Removed src/reduce/ReduceCppTracker/build/ReduceCppTracker_wrap.cc
Removed src/reduce/ReduceCppTracker/build/ReduceCppTracker.py
Removed src/input/InputCppDAQData/build/InputCppDAQData.os
Removed src/input/InputCppDAQData/build/UnpackEventLib.os
Removed src/input/InputCppDAQData/build/InputCppDAQData_wrap.os
Removed src/legacy/BeamTools/BTSolenoid.os
Removed src/legacy/BeamTools/BTMultipole.os
Removed src/legacy/BeamTools/BTCombinedFunction.os
Removed src/legacy/BeamTools/BTFastSolenoid.os
Removed src/legacy/BeamTools/BTRFFieldMap.os
Removed src/legacy/BeamTools/BTTracker.os
Removed src/legacy/BeamTools/BTSheet.os
Removed src/legacy/BeamTools/BTFieldGroup.os
Removed src/legacy/BeamTools/BTPillBox.os
Removed src/legacy/BeamTools/BTSpaceChargeField.os
Removed src/legacy/BeamTools/BTQuad.os
Removed src/legacy/BeamTools/BTMagFieldMap.os
Removed src/legacy/BeamTools/BTFieldConstructor.os
Removed src/legacy/BeamTools/micegsl.os
Removed src/legacy/BeamTools/BTConstantField.os
Removed src/legacy/BeamTools/BTField.os
Removed src/legacy/BeamTools/BT3dFieldMap.os
Removed src/legacy/BeamTools/BTPhaser.os
Removed src/legacy/BeamTools/BTMidplaneMap.os
Removed src/legacy/Optics/OpticsModel.os
Removed src/legacy/Optics/MICETrackingAction.os
Removed src/legacy/Optics/CovarianceMatrix.os
Removed src/legacy/Optics/PhaseSpaceVector.os
Removed src/legacy/Optics/AnalysisPlaneBank.os
Removed src/legacy/Optics/Tensor.os
Removed src/legacy/Optics/Material.os
Removed src/legacy/Optics/MICEStackingAction.os
Removed src/legacy/Optics/TransferMapCalculator.os
Removed src/legacy/Optics/TransportManager.os
Removed src/legacy/Optics/TransferMap.os
Removed src/legacy/Optics/Tensor3.os
Removed src/legacy/Config/VlpcCableOsaka2.os
Removed src/legacy/Config/CoolingChannelGeom.os
Removed src/legacy/Config/VlpcCableImperial.os
Removed src/legacy/Config/MagnetParameters.os
Removed src/legacy/Config/ModuleTextFileIO.os
Removed src/legacy/Config/VlpcCableOsaka.os
Removed src/legacy/Config/SciFiCableManager.os
Removed src/legacy/Config/RFParameters.os
Removed src/legacy/Config/TofCable.os
Removed src/legacy/Config/ModuleConverter.os
Removed src/legacy/Config/VlpcCableOsaka3.os
Removed src/legacy/Config/BeamParameters.os
Removed src/legacy/Config/MiceModule.os
Removed src/legacy/Simulation/MICEPhysicsList.os
Removed src/legacy/Simulation/MICEDetectorConstruction.os
Removed src/legacy/Simulation/FillMaterials.os
Removed src/legacy/EngModel/MiceModToG4Solid.os
Removed src/legacy/EngModel/MultipoleAperture.os
Removed src/legacy/EngModel/Polycone.os
Removed src/legacy/Interface/SpecialHit.os
Removed src/legacy/Interface/G4BLBank.os
Removed src/legacy/Interface/VirtualHit.os
Removed src/legacy/Interface/MCHit.os
Removed src/legacy/Interface/XMLMessage.os
Removed src/legacy/Interface/KLHit.os
Removed src/legacy/Interface/MiceEventManager.os
Removed src/legacy/Interface/Interpolator.os
Removed src/legacy/Interface/MICEEvent.os
Removed src/legacy/Interface/Squeak.os
Removed src/legacy/Interface/Spline1D.os
Removed src/legacy/Interface/Differentiator.os
Removed src/legacy/Interface/SplineInterpolator.os
Removed src/legacy/Interface/MiceMaterials.os
Removed src/legacy/Interface/VersionInfo.os
Removed src/legacy/Interface/TriangularMesh.os
Removed src/legacy/Interface/Mesh.os
Removed src/legacy/Interface/STLUtils.os
Removed src/legacy/Interface/dataCards.os
Removed src/legacy/Interface/DataBaseReader.os
Removed src/legacy/Interface/ThreeDFieldMap.os
Removed src/legacy/Interface/RFFieldMap.os
Removed src/legacy/Interface/MagFieldMap.os
Removed src/legacy/Interface/MathUtils.os
Removed src/legacy/Interface/Squeal.os
Removed src/legacy/Interface/BetaFuncBank.os
Removed src/legacy/Interface/CkovHit.os
Removed src/legacy/Interface/RFData.os
Removed src/legacy/Interface/AnalysisEventBank.os
Removed src/legacy/Interface/MICERun.os
Removed src/legacy/Interface/MCParticle.os
Removed src/legacy/Interface/DataBaseAPI.os
Removed src/legacy/DetModel/Virtual/SpecialVirtualSD.os
Removed src/legacy/DetModel/EMR/EMRSD.os
Removed src/legacy/DetModel/TOF/TofSD.os
Removed src/legacy/DetModel/Ckov/CkovMirror.os
Removed src/legacy/DetModel/Ckov/CKOVSD.os
Removed src/legacy/DetModel/KL/KLFiber.os
Removed src/legacy/DetModel/KL/KLSD.os
Removed src/legacy/DetModel/KL/KLGlue.os
Removed src/common_cpp/Utils/MAUSEvaluator.os
Removed src/common_cpp/Utils/PyMausCpp.os
Removed src/common_cpp/Utils/JsonWrapper.os
Removed src/common_cpp/Utils/DAQChannelMap.os
Removed src/common_cpp/Utils/TOFChannelMap.os
Removed src/common_cpp/Utils/TOFCalibrationMap.os
Removed src/common_cpp/Utils/CppErrorHandler.os
Removed src/common_cpp/DetModel/MAUSSD.os
Removed src/common_cpp/FieldTools/SectorMagneticFieldMap.os
Removed src/common_cpp/FieldTools/SectorField.os
Removed src/common_cpp/JsonCppStreamer/JsonCppConverter.os
Removed src/common_cpp/JsonCppStreamer/ORStream.os
Removed src/common_cpp/JsonCppStreamer/IRStream.os
Removed src/common_cpp/JsonCppStreamer/RStream.os
Removed src/common_cpp/JsonCppStreamer/OneArgManip.os
Removed src/common_cpp/Optics/CovarianceMatrix.os
Removed src/common_cpp/Optics/PhaseSpaceVector.os
Removed src/common_cpp/Optics/TransferMap.os
Removed src/common_cpp/JsonCppProcessors/EMREventProcessor.os
Removed src/common_cpp/JsonCppProcessors/TOFSpacePointProcessor.os
Removed src/common_cpp/JsonCppProcessors/TagProcessor.os
Removed src/common_cpp/JsonCppProcessors/Pmt0Processor.os
Removed src/common_cpp/JsonCppProcessors/TOFEventSlabHitProcessor.os
Removed src/common_cpp/JsonCppProcessors/ObjectMapProcessors.os
Removed src/common_cpp/JsonCppProcessors/SpillProcessor.os
Removed src/common_cpp/JsonCppProcessors/TOFDaqProcessor.os
Removed src/common_cpp/JsonCppProcessors/TrackProcessor.os
Removed src/common_cpp/JsonCppProcessors/CkovAProcessor.os
Removed src/common_cpp/JsonCppProcessors/V1290Processor.os
Removed src/common_cpp/JsonCppProcessors/UnknownProcessor.os
Removed src/common_cpp/JsonCppProcessors/MCEventProcessor.os
Removed src/common_cpp/JsonCppProcessors/CkovDaqProcessor.os
Removed src/common_cpp/JsonCppProcessors/SciFiEventProcessor.os
Removed src/common_cpp/JsonCppProcessors/TOFEventDigitProcessor.os
Removed src/common_cpp/JsonCppProcessors/PrimaryProcessor.os
Removed src/common_cpp/JsonCppProcessors/SciFiChannelIdProcessor.os
Removed src/common_cpp/JsonCppProcessors/ArrayProcessors.os
Removed src/common_cpp/JsonCppProcessors/TriggerEventProcessor.os
Removed src/common_cpp/JsonCppProcessors/DAQDataProcessor.os
Removed src/common_cpp/JsonCppProcessors/ProcessorBase.os
Removed src/common_cpp/JsonCppProcessors/Pmt1Processor.os
Removed src/common_cpp/JsonCppProcessors/ChannelsProcessor.os
Removed src/common_cpp/JsonCppProcessors/ReconEventProcessor.os
Removed src/common_cpp/JsonCppProcessors/CkovBProcessor.os
Removed src/common_cpp/JsonCppProcessors/SpecialVirtualChannelIdProcessor.os
Removed src/common_cpp/JsonCppProcessors/HitProcessor.os
Removed src/common_cpp/JsonCppProcessors/GlobalEventProcessor.os
Removed src/common_cpp/JsonCppProcessors/V1731Processor.os
Removed src/common_cpp/JsonCppProcessors/ScalarsProcessor.os
Removed src/common_cpp/JsonCppProcessors/V830Processor.os
Removed src/common_cpp/JsonCppProcessors/TriggerProcessor.os
Removed src/common_cpp/JsonCppProcessors/TOFSlabHitProcessor.os
Removed src/common_cpp/JsonCppProcessors/TriggerRequestProcessor.os
Removed src/common_cpp/JsonCppProcessors/CkovDigitProcessor.os
Removed src/common_cpp/JsonCppProcessors/StepProcessor.os
Removed src/common_cpp/JsonCppProcessors/CkovEventProcessor.os
Removed src/common_cpp/JsonCppProcessors/TOFChannelIdProcessor.os
Removed src/common_cpp/JsonCppProcessors/KLEventProcessor.os
Removed src/common_cpp/JsonCppProcessors/V1724Processor.os
Removed src/common_cpp/JsonCppProcessors/KLDaqProcessor.os
Removed src/common_cpp/JsonCppProcessors/TOFEventProcessor.os
Removed src/common_cpp/JsonCppProcessors/ThreeVectorProcessor.os
Removed src/common_cpp/JsonCppProcessors/ObjectProcessor.os
Removed src/common_cpp/JsonCppProcessors/TOFDigitProcessor.os
Removed src/common_cpp/JsonCppProcessors/EMRSpillDataProcessor.os
Removed src/common_cpp/JsonCppProcessors/PrimitivesProcessors.os
Removed src/common_cpp/JsonCppProcessors/VirtualHitProcessor.os
Removed src/common_cpp/JsonCppProcessors/TOFEventSpacePointProcessor.os
Removed src/common_cpp/DataStructure/SpecialVirtualChannelId.os
Removed src/common_cpp/DataStructure/Unknown.os
Removed src/common_cpp/DataStructure/Hit.os
Removed src/common_cpp/DataStructure/Tag.os
Removed src/common_cpp/DataStructure/GlobalEvent.os
Removed src/common_cpp/DataStructure/V1724.os
Removed src/common_cpp/DataStructure/Data.os
Removed src/common_cpp/DataStructure/Scalars.os
Removed src/common_cpp/DataStructure/V1290.os
Removed src/common_cpp/DataStructure/CkovDigit.os
Removed src/common_cpp/DataStructure/Pmt1.os
Removed src/common_cpp/DataStructure/V1731.os
Removed src/common_cpp/DataStructure/VirtualHit.os
Removed src/common_cpp/DataStructure/TOFEventSpacePoint.os
Removed src/common_cpp/DataStructure/Primary.os
Removed src/common_cpp/DataStructure/KLEvent.os
Removed src/common_cpp/DataStructure/ThreeVector.os
Removed src/common_cpp/DataStructure/Channels.os
Removed src/common_cpp/DataStructure/TOFSpacePoint.os
Removed src/common_cpp/DataStructure/CkovA.os
Removed src/common_cpp/DataStructure/CkovEvent.os
Removed src/common_cpp/DataStructure/TOFSlabHit.os
Removed src/common_cpp/DataStructure/TOFDigit.os
Removed src/common_cpp/DataStructure/Pmt0.os
Removed src/common_cpp/DataStructure/EMRSpillData.os
Removed src/common_cpp/DataStructure/TriggerRequest.os
Removed src/common_cpp/DataStructure/SciFiEvent.os
Removed src/common_cpp/DataStructure/TOFChannelId.os
Removed src/common_cpp/DataStructure/TOFEventSlabHit.os
Removed src/common_cpp/DataStructure/KLDaq.os
Removed src/common_cpp/DataStructure/CkovDaq.os
Removed src/common_cpp/DataStructure/MausDataStructure.os
Removed src/common_cpp/DataStructure/V830.os
Removed src/common_cpp/DataStructure/DAQData.os
Removed src/common_cpp/DataStructure/Spill.os
Removed src/common_cpp/DataStructure/ReconEvent.os
Removed src/common_cpp/DataStructure/Step.os
Removed src/common_cpp/DataStructure/SciFiChannelId.os
Removed src/common_cpp/DataStructure/Trigger.os
Removed src/common_cpp/DataStructure/TOFEventDigit.os
Removed src/common_cpp/DataStructure/CkovB.os
Removed src/common_cpp/DataStructure/EMREvent.os
Removed src/common_cpp/DataStructure/Track.os
Removed src/common_cpp/DataStructure/TOFDaq.os
Removed src/common_cpp/DataStructure/MCEvent.os
Removed src/common_cpp/DataStructure/TOFEvent.os
Removed src/common_cpp/DataStructure/TriggerEvent.os
Removed src/common_cpp/Simulation/MAUSEventAction.os
Removed src/common_cpp/Simulation/MAUSRunAction.os
Removed src/common_cpp/Simulation/MAUSPhysicsList.os
Removed src/common_cpp/Simulation/MAUSStackingActionKillNonMuons.os
Removed src/common_cpp/Simulation/MAUSPrimaryGeneratorAction.os
Removed src/common_cpp/Simulation/FieldPhaser.os
Removed src/common_cpp/Simulation/VirtualPlanes.os
Removed src/common_cpp/Simulation/MAUSSteppingAction.os
Removed src/common_cpp/Simulation/MAUSTrackingAction.os
Removed src/common_cpp/Simulation/MAUSGeant4Manager.os
Removed src/common_cpp/Simulation/MAUSVisManager.os
Removed src/common_cpp/Maths/Vector.os
Removed src/common_cpp/Maths/Complex.os
Removed src/common_cpp/Maths/HermitianMatrix.os
Removed src/common_cpp/Maths/Matrix.os
Removed src/common_cpp/Maths/SymmetricMatrix.os
Removed src/common_cpp/Maths/PolynomialVector.os
Removed src/common_cpp/Recon/SciFi/SciFiStraightPRTrack.os
Removed src/common_cpp/Recon/SciFi/PatternRecognition.os
Removed src/common_cpp/Recon/SciFi/SciFiHit.os
Removed src/common_cpp/Recon/SciFi/SciFiCluster.os
Removed src/common_cpp/Recon/SciFi/SciFiSpill.os
Removed src/common_cpp/Recon/SciFi/SciFiEvent.os
Removed src/common_cpp/Recon/SciFi/SciFiSpacePointRec.os
Removed src/common_cpp/Recon/SciFi/SciFiClusterRec.os
Removed src/common_cpp/Recon/SciFi/RealDataDigitization.os
Removed src/common_cpp/Recon/SciFi/SciFiDigit.os
Removed src/common_cpp/Recon/SciFi/SciFiSpacePoint.os
Removed src/common_cpp/Recon/SciFi/SimpleLine.os
Removed src/common_cpp/DetModel/SciFi/DoubletFiberParam.os
Removed src/common_cpp/DetModel/SciFi/SciFiSD.os
Removed src/common_cpp/DetModel/SciFi/SciFiPlane.os
Removed src/common_cpp/libMausCpp.so
Removed src/input/InputCppDAQData/build/_InputCppDAQData.so
Removed src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData.os
Removed src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData_wrap.os
Removed src/input/InputCppDAQData/build/libInputCppDAQData.so
Removed src/input/InputCppDAQOfflineData/build/_InputCppDAQOfflineData.so
Removed src/input/InputCppRoot/build/InputCppRoot.os
Removed src/input/InputCppRoot/build/InputCppRoot_wrap.os
Removed src/input/InputCppRoot/build/_InputCppRoot.so
Removed src/map/MapCppPrint/build/MapCppPrint.os
Removed src/map/MapCppPrint/build/MapCppPrint_wrap.os
Removed src/map/MapCppPrint/build/_MapCppPrint.so
Removed src/map/MapCppSimulation/build/MapCppSimulation.os
Removed src/map/MapCppSimulation/build/MapCppSimulation_wrap.os
Removed src/map/MapCppSimulation/build/_MapCppSimulation.so
Removed src/map/MapCppTOFDigits/build/MapCppTOFDigits.os
Removed src/map/MapCppTOFDigits/build/MapCppTOFDigits_wrap.os
Removed src/map/MapCppTOFDigits/build/_MapCppTOFDigits.so
Removed src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer.os
Removed src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer_wrap.os
Removed src/map/MapCppTOFMCDigitizer/build/_MapCppTOFMCDigitizer.so
Removed src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits.os
Removed src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits_wrap.os
Removed src/map/MapCppTOFSlabHits/build/_MapCppTOFSlabHits.so
Removed src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints.os
Removed src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints_wrap.os
Removed src/map/MapCppTOFSpacePoints/build/_MapCppTOFSpacePoints.so
Removed src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization.os
Removed src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization_wrap.os
Removed src/map/MapCppTrackerMCDigitization/build/_MapCppTrackerMCDigitization.so
Removed src/map/MapCppTrackerRecon/build/MapCppTrackerRecon.os
Removed src/map/MapCppTrackerRecon/build/MapCppTrackerRecon_wrap.os
Removed src/map/MapCppTrackerRecon/build/_MapCppTrackerRecon.so
Removed src/output/OutputCppRoot/build/OutputCppRoot.os
Removed src/output/OutputCppRoot/build/OutputCppRoot_wrap.os
Removed src/output/OutputCppRoot/build/_OutputCppRoot.so
Removed src/reduce/ReduceCppTracker/build/ReduceCppTracker.os
Removed src/reduce/ReduceCppTracker/build/ReduceCppTracker_wrap.os
Removed src/reduce/ReduceCppTracker/build/_ReduceCppTracker.so
Removed src/input/InputCppDAQOfflineData/build/libInputCppDAQOfflineData.so
Removed src/input/InputCppRoot/build/libInputCppRoot.so
Removed src/map/MapCppPrint/build/libMapCppPrint.so
Removed src/map/MapCppSimulation/build/libMapCppSimulation.so
Removed src/map/MapCppTOFDigits/build/libMapCppTOFDigits.so
Removed src/map/MapCppTOFMCDigitizer/build/libMapCppTOFMCDigitizer.so
Removed src/map/MapCppTOFSlabHits/build/libMapCppTOFSlabHits.so
Removed src/map/MapCppTOFSpacePoints/build/libMapCppTOFSpacePoints.so
Removed src/map/MapCppTrackerMCDigitization/build/libMapCppTrackerMCDigitization.so
Removed src/map/MapCppTrackerRecon/build/libMapCppTrackerRecon.so
Removed src/output/OutputCppRoot/build/libOutputCppRoot.so
Removed src/reduce/ReduceCppTracker/build/libReduceCppTracker.so
Removed tests/integration/test_optics/src/Optics.o
Removed tests/integration/test_optics/optics
Removed tests/cpp_unit/Utils/MAUSEvaluatorTest.o
Removed tests/cpp_unit/Utils/JsonWrapperTest.o
Removed tests/cpp_unit/Utils/CppErrorHandlerTest.o
Removed tests/cpp_unit/BeamTools/BTFieldConstructorTest.o
Removed tests/cpp_unit/BeamTools/BTTrackerTest.o
Removed tests/cpp_unit/BeamTools/BTMultipoleTest.o
Removed tests/cpp_unit/BeamTools/BTSolenoidTest.o
Removed tests/cpp_unit/DetModel/SciFiPlaneTest.o
Removed tests/cpp_unit/DetModel/DoubletFiberParamTest.o
Removed tests/cpp_unit/FieldTools/SectorMagneticFieldMapTest.o
Removed tests/cpp_unit/FieldTools/SectorFieldTest.o
Removed tests/cpp_unit/JsonCppStreamer/RStreamTest.o
Removed tests/cpp_unit/JsonCppStreamer/OneArgManipTest.o
Removed tests/cpp_unit/JsonCppStreamer/IRStreamTest.o
Removed tests/cpp_unit/JsonCppStreamer/ORStreamTest.o
Removed tests/cpp_unit/Optics/TransferMapTest.o
Removed tests/cpp_unit/Optics/CovarianceMatrixTest.o
Removed tests/cpp_unit/Optics/PhaseSpaceVectorTest.o
Removed tests/cpp_unit/JsonCppProcessors/SpillProcessorTest.o
Removed tests/cpp_unit/JsonCppProcessors/ObjectProcessorTest.o
Removed tests/cpp_unit/JsonCppProcessors/PrimitivesProcessorsTest.o
Removed tests/cpp_unit/JsonCppProcessors/ObjectMapProcessorsTest.o
Removed tests/cpp_unit/JsonCppProcessors/ArrayProcessorsTest.o
Removed tests/cpp_unit/Config/MiceModuleTest.o
Removed tests/cpp_unit/DataStructure/ReconEventTest.o
Removed tests/cpp_unit/DataStructure/SpillTest.o
Removed tests/cpp_unit/DataStructure/MCBranchTest.o
Removed tests/cpp_unit/Simulation/MAUSEventActionTest.o
Removed tests/cpp_unit/Simulation/MAUSSteppingActionTest.o
Removed tests/cpp_unit/Simulation/MAUSPrimaryGeneratorActionTest.o
Removed tests/cpp_unit/Simulation/MAUSGeant4ManagerTest.o
Removed tests/cpp_unit/Simulation/VirtualPlaneTest.o
Removed tests/cpp_unit/Simulation/MAUSTrackingActionTest.o
Removed tests/cpp_unit/EngModel/MiceModToG4SolidTest.o
Removed tests/cpp_unit/Maths/VectorTest.o
Removed tests/cpp_unit/Maths/PolynomialVectorTest.o
Removed tests/cpp_unit/Maths/SymmetricMatrixTest.o
Removed tests/cpp_unit/Maths/ComplexTest.o
Removed tests/cpp_unit/Maths/MatrixTest.o
Removed tests/cpp_unit/Maths/HermitianMatrixTest.o
Removed tests/cpp_unit/Interface/MathUtilsTest.o
Removed tests/cpp_unit/Interface/STLUtilsTest.o
Removed tests/cpp_unit/Interface/SquealTest.o
Removed tests/cpp_unit/Interface/DifferentiatorTest.o
Removed tests/cpp_unit/Interface/MeshTest.o
Removed tests/cpp_unit/Interface/TriangularMeshTest.o
Removed tests/cpp_unit/Interface/SqueakTest.o
Removed tests/cpp_unit/Interface/dataCardsTest.o
Removed tests/cpp_unit/MAUSUnitTest.o
Removed tests/cpp_unit/test_cpp_unit
scons: done cleaning targets.
scons: Reading SConscript files ...
Checking whether the C++ compiler works(cached) yes
Checking for C++ library json... (cached) yes
Checking for C++ header file json/json.h... (cached) yes
Checking for C++ library stdc++... (cached) yes
Checking for C function printf()... (cached) yes
Checking for C header file math.h... (cached) yes
Checking for C header file stdlib.h... (cached) yes
Checking for C++ header file iostream... (cached) yes
Checking for python command... (cached) yes
Checking for C++ header file Python.h... (cached) yes
Checking for swig command... (cached) yes
Checking for C library gsl... (cached) yes
Checking for C library gslcblas... (cached) yes
Checking for root command... (cached) yes

!! Found the program 'root', so MAUS will use it.

Checking for root-config command... (cached) yes
Checking for C++ library Cint... (cached) yes
Checking for C++ library Core... (cached) yes
Checking for C++ library Gpad... (cached) yes
Checking for C++ library Graf... (cached) yes
Checking for C++ library Graf3d... (cached) yes
Checking for C++ library MathCore... (cached) yes
Checking for C++ library Minuit... (cached) yes
Checking for C++ library Hist... (cached) yes
Checking for C++ library Matrix... (cached) yes
Checking for C++ library Spectrum... (cached) yes
Checking for C++ library Net... (cached) yes
Checking for C++ library Physics... (cached) yes
Checking for C++ library Postscript... (cached) yes
Checking for C++ library RIO... (cached) yes
Checking for C++ library Rint... (cached) yes
Checking for C++ library Thread... (cached) yes
Checking for C++ library Tree... (cached) yes
Checking for C++ library dl... (cached) yes
Checking for C++ library m... (cached) yes
Checking for C++ library pthread... (cached) yes
Checking for C++ header file TH1F.h... (cached) yes
Checking for C++ header file TMinuit.h... (cached) yes
Checking for C++ library CLHEP... (cached) yes

!! Found the package 'geant4', so assume you want to use it.

Checking for C++ header file G4EventManager.hh... (cached) yes
Checking for C++ library G4FR... (cached) yes
Checking for C++ library G4RayTracer... (cached) yes
Checking for C++ library G4Tree... (cached) yes
Checking for C++ library G4UIGAG... (cached) yes
Checking for C++ library G4UIbasic... (cached) yes
Checking for C++ library G4UIcommon... (cached) yes
Checking for C++ library G4VRML... (cached) yes
Checking for C++ library G4baryons... (cached) yes
Checking for C++ library G4biasing... (cached) yes
Checking for C++ library G4bosons... (cached) yes
Checking for C++ library G4brep... (cached) yes
Checking for C++ library G4csg... (cached) yes
Checking for C++ library G4cuts... (cached) yes
Checking for C++ library G4decay... (cached) yes
Checking for C++ library G4detector... (cached) yes
Checking for C++ library G4detutils... (cached) yes
Checking for C++ library G4detscorer... (cached) yes
Checking for C++ library G4digits... (cached) yes
Checking for C++ library G4emlowenergy... (cached) yes
Checking for C++ library G4empolar... (cached) yes
Checking for C++ library G4emstandard... (cached) yes
Checking for C++ library G4emutils... (cached) yes
Checking for C++ library G4error_propagation... (cached) yes
Checking for C++ library G4event... (cached) yes
Checking for C++ library G4geomBoolean... (cached) yes
Checking for C++ library G4geombias... (cached) yes
Checking for C++ library G4geomdivision... (cached) yes
Checking for C++ library G4geometrymng... (cached) yes
Checking for C++ library G4geomtext... (cached) yes
Checking for C++ library G4gflash... (cached) yes
Checking for C++ library G4globman... (cached) yes
Checking for C++ library G4graphics_reps... (cached) yes
Checking for C++ library G4had_lll_fis... (cached) yes
Checking for C++ library G4had_mod_man... (cached) yes
Checking for C++ library G4had_mod_util... (cached) yes
Checking for C++ library G4had_neu_hp... (cached) yes
Checking for C++ library G4had_preequ_exciton... (cached) yes
Checking for C++ library G4had_string_diff... (cached) yes
Checking for C++ library G4had_string_frag... (cached) yes
Checking for C++ library G4had_string_man... (cached) yes
Checking for C++ library G4had_theo_max... (cached) yes
Checking for C++ library G4hadronic_HE... (cached) yes
Checking for C++ library G4hadronic_LE... (cached) yes
Checking for C++ library G4hadronic_RPG... (cached) yes
Checking for C++ library G4hadronic_ablation... (cached) yes
Checking for C++ library G4hadronic_abrasion... (cached) yes
Checking for C++ library G4hadronic_bert_cascade... (cached) yes
Checking for C++ library G4hadronic_binary... (cached) yes
Checking for C++ library G4had_im_r_matrix... (cached) yes
Checking for C++ library G4hadronic_deex_fermi_breakup... (cached) yes
Checking for C++ library G4hadronic_deex_handler... (cached) yes
Checking for C++ library G4hadronic_deex_evaporation... (cached) yes
Checking for C++ library G4hadronic_deex_fission... (cached) yes
Checking for C++ library G4hadronic_deex_gem_evaporation... (cached) yes
Checking for C++ library G4hadronic_deex_management... (cached) yes
Checking for C++ library G4hadronic_deex_multifragmentation... (cached) yes
Checking for C++ library G4hadronic_deex_photon_evaporation... (cached) yes
Checking for C++ library G4hadronic_deex_util... (cached) yes
Checking for C++ library G4hadronic_em_dissociation... (cached) yes
Checking for C++ library G4hadronic_hetcpp_evaporation... (cached) yes
Checking for C++ library G4hadronic_hetcpp_utils... (cached) yes
Checking for C++ library G4hadronic_incl_cascade... (cached) yes
Checking for C++ library G4hadronic_interface_ci... (cached) yes
Checking for C++ library G4hadronic_body_ci... (cached) yes
Checking for C++ library G4hadronic_iso... (cached) yes
Checking for C++ library G4hadronic_leading_particle... (cached) yes
Checking for C++ library G4hadronic_mgt... (cached) yes
Checking for C++ library G4hadronic_proc... (cached) yes
Checking for C++ library G4hadronic_qgstring... (cached) yes
Checking for C++ library G4hadronic_qmd... (cached) yes
Checking for C++ library G4hadronic_radioactivedecay... (cached) yes
Checking for C++ library G4hadronic_stop... (cached) yes
Checking for C++ library G4hadronic_util... (cached) yes
Checking for C++ library G4hadronic_xsect... (cached) yes
Checking for C++ library G4hepnumerics... (cached) yes
Checking for C++ library G4hits... (cached) yes
Checking for C++ library G4intercoms... (cached) yes
Checking for C++ library G4ions... (cached) yes
Checking for C++ library G4leptons... (cached) yes
Checking for C++ library G4magneticfield... (cached) yes
Checking for C++ library G4materials... (cached) yes
Checking for C++ library G4mctruth... (cached) yes
Checking for C++ library G4mesons... (cached) yes
Checking for C++ library G4modeling... (cached) yes
Checking for C++ library G4muons... (cached) yes
Checking for C++ library G4navigation... (cached) yes
Checking for C++ library G4optical... (cached) yes
Checking for C++ library G4parameterisation... (cached) yes
Checking for C++ library G4partadj... (cached) yes
Checking for C++ library G4partman... (cached) yes
Checking for C++ library G4partutils... (cached) yes
Checking for C++ library G4phys_builders... (cached) yes
Checking for C++ library G4had_muon_nuclear... (cached) yes
Checking for C++ library G4hadronic_coherent_elastic... (cached) yes
Checking for C++ library G4emhighenergy.so... (cached) yes
Checking for C++ library G4phys_lists... (cached) yes
Checking for C++ library G4procman... (cached) yes
Checking for C++ library G4readout... (cached) yes
Checking for C++ library G4run... (cached) yes
Checking for C++ library G4scoring... (cached) yes
Checking for C++ library G4shortlived... (cached) yes
Checking for C++ library G4specsolids... (cached) yes
Checking for C++ library G4track... (cached) yes
Checking for C++ library G4tracking... (cached) yes
Checking for C++ library G4transportation... (cached) yes
Checking for C++ library G4visHepRep... (cached) yes
Checking for C++ library G4visXXX... (cached) yes
Checking for C++ library G4vis_management... (cached) yes
Checking for C++ library G4volumes... (cached) yes
Checking for C++ library G4xrays... (cached) yes
Checking for C++ library recpack... (cached) yes
Checking for C++ header file recpack/RecpackManager.h... (cached) yes
Checking for C++ library gtest... (cached) yes
Checking for C++ header file gtest/gtest.h... (cached) yes
Checking for C++ library MDunpack... (cached) yes
Checking for C++ header file unpacking/MDevent.h... (cached) yes
['rootcint', '-f', '/home/matt/maus_littlefield/src/common_cpp/DataStructure//MausDataStructure.cc', '-c', '-I/home/matt/maus_littlefield/third_party/install/include', '-I/home/matt/maus_littlefield/third_party/install/include/python2.7', '-I/home/matt/maus_littlefield/third_party/install/include/root', '-I/home/matt/maus_littlefield/src/legacy', '-I/home/matt/maus_littlefield/src/common_cpp', '-I', '-I/home/matt/maus_littlefield/third_party/build/root_v5.30.03/include', '-I/home/matt/maus_littlefield/third_party/build/geant4.9.2.p04/include/', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/DAQData.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFEventSlabHit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/EMRSpillData.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Channels.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/KLDaq.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Scalars.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/CkovDigit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Primary.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/SciFiChannelId.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/V1290.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/SciFiEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Spill.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/MCEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Data.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/V1731.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Tag.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/EMREvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/ReconEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/CkovA.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFChannelId.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/CkovB.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Trigger.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/KLEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/ThreeVector.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFDaq.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Step.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/CkovEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Unknown.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFSlabHit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFSpacePoint.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/V830.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFDigit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/GlobalEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Pmt0.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/CkovDaq.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Pmt1.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/SpecialVirtualChannelId.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TriggerRequest.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Hit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFEventSpacePoint.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/Track.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TOFEventDigit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/VirtualHit.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/TriggerEvent.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/V1724.hh', '/home/matt/maus_littlefield/src/common_cpp/DataStructure/LinkDef.hh']
Found Python module: InputPyEmptyDocument
Found C++ module: InputCppDAQOfflineData
Installing src/input/InputCppDAQOfflineData
Found Python module: InputPySpillGenerator
Found C++ module: InputCppRoot
Installing src/input/InputCppRoot
Found Python module: InputPyJSON
Found C++ module: InputCppDAQData
Installing src/input/InputCppDAQData
Found Python module: MapPyCkov
Found Python module: MapPyFakeTestSimulation
Found Python module: MapPyTestMap
Found C++ module: MapCppTrackerRecon
Installing src/map/MapCppTrackerRecon
Found C++ module: MapCppTOFSlabHits
Installing src/map/MapCppTOFSlabHits
Found Python module: MapPyRemoveTracks
Found Python module: MapPyCkovSecondPeaks
Found C++ module: MapCppTOFMCDigitizer
Installing src/map/MapCppTOFMCDigitizer
Found Python module: MapPyBeamMaker
Found C++ module: MapCppPrint
Installing src/map/MapCppPrint
Found Python module: MapPyMCReconSetup
Found C++ module: MapCppTOFSpacePoints
Installing src/map/MapCppTOFSpacePoints
Found Python module: MapPyTOFPlot
Found C++ module: MapCppTOFDigits
Installing src/map/MapCppTOFDigits
Found Python module: MapPyScalersDump
Found C++ module: MapCppTrackerMCDigitization
Installing src/map/MapCppTrackerMCDigitization
Found Python module: MapPyGroup
Found Python module: MapPyReconSetup
Found Python module: MapPyPrint
Found Python module: MapPyDoNothing
Found C++ module: MapCppSimulation
Installing src/map/MapCppSimulation
Found Python module: ReducePyMatplotlibHistogram
Found Python module: ReducePyROOTHistogram
Found Python module: ReducePyHistogramTDCADCCounts
Found C++ module: ReduceCppTracker
Installing src/reduce/ReduceCppTracker
Found Python module: ReducePyTOFPlot
Found Python module: ReducePyScalers
Found Python module: ReducePyCkov
Found Python module: ReducePyDoNothing
Found Python module: ReducePyScalersTable
Found Python module: OutputPyJSON
Found C++ module: OutputCppRoot
Installing src/output/OutputCppRoot
Found Python module: OutputPyFile
Found Python module: OutputPyImage
Found Python module: OutputPyDoNothing
scons: done reading SConscript files.
scons: Building targets ...
swig -o src/input/InputCppDAQData/build/InputCppDAQData_wrap.cc -python -c++ src/input/InputCppDAQData/InputCppDAQData.i
Install file: "src/input/InputCppDAQData/build/InputCppDAQData.py" as "build/InputCppDAQData.py"
swig -o src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData_wrap.cc -python -c++ src/input/InputCppDAQOfflineData/InputCppDAQOfflineData.i
Install file: "src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData.py" as "build/InputCppDAQOfflineData.py"
swig -o src/input/InputCppRoot/build/InputCppRoot_wrap.cc -python -c++ src/input/InputCppRoot/InputCppRoot.i
Install file: "src/input/InputCppRoot/build/InputCppRoot.py" as "build/InputCppRoot.py"
Install file: "src/input/InputPyEmptyDocument/InputPyEmptyDocument.py" as "build/InputPyEmptyDocument.py"
Install file: "src/input/InputPyJSON/InputPyJSON.py" as "build/InputPyJSON.py"
Install file: "src/input/InputPySpillGenerator/InputPySpillGenerator.py" as "build/InputPySpillGenerator.py"
swig -o src/map/MapCppPrint/build/MapCppPrint_wrap.cc -python -c++ src/map/MapCppPrint/MapCppPrint.i
Install file: "src/map/MapCppPrint/build/MapCppPrint.py" as "build/MapCppPrint.py"
swig -o src/map/MapCppSimulation/build/MapCppSimulation_wrap.cc -python -c++ src/map/MapCppSimulation/MapCppSimulation.i
Install file: "src/map/MapCppSimulation/build/MapCppSimulation.py" as "build/MapCppSimulation.py"
swig -o src/map/MapCppTOFDigits/build/MapCppTOFDigits_wrap.cc -python -c++ src/map/MapCppTOFDigits/MapCppTOFDigits.i
Install file: "src/map/MapCppTOFDigits/build/MapCppTOFDigits.py" as "build/MapCppTOFDigits.py"
swig -o src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer_wrap.cc -python -c++ src/map/MapCppTOFMCDigitizer/MapCppTOFMCDigitizer.i
Install file: "src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer.py" as "build/MapCppTOFMCDigitizer.py"
swig -o src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits_wrap.cc -python -c++ src/map/MapCppTOFSlabHits/MapCppTOFSlabHits.i
Install file: "src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits.py" as "build/MapCppTOFSlabHits.py"
swig -o src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints_wrap.cc -python -c++ src/map/MapCppTOFSpacePoints/MapCppTOFSpacePoints.i
Install file: "src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints.py" as "build/MapCppTOFSpacePoints.py"
swig -o src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization_wrap.cc -python -c++ src/map/MapCppTrackerMCDigitization/MapCppTrackerMCDigitization.i
Install file: "src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization.py" as "build/MapCppTrackerMCDigitization.py"
swig -o src/map/MapCppTrackerRecon/build/MapCppTrackerRecon_wrap.cc -python -c++ src/map/MapCppTrackerRecon/MapCppTrackerRecon.i
Install file: "src/map/MapCppTrackerRecon/build/MapCppTrackerRecon.py" as "build/MapCppTrackerRecon.py"
Install file: "src/map/MapPyBeamMaker/MapPyBeamMaker.py" as "build/MapPyBeamMaker.py"
Install file: "src/map/MapPyCkov/MapPyCkov.py" as "build/MapPyCkov.py"
Install file: "src/map/MapPyCkovSecondPeaks/MapPyCkovSecondPeaks.py" as "build/MapPyCkovSecondPeaks.py"
Install file: "src/map/MapPyDoNothing/MapPyDoNothing.py" as "build/MapPyDoNothing.py"
Install file: "src/map/MapPyFakeTestSimulation/MapPyFakeTestSimulation.py" as "build/MapPyFakeTestSimulation.py"
Install file: "src/map/MapPyGroup/MapPyGroup.py" as "build/MapPyGroup.py"
Install file: "src/map/MapPyMCReconSetup/MapPyMCReconSetup.py" as "build/MapPyMCReconSetup.py"
Install file: "src/map/MapPyPrint/MapPyPrint.py" as "build/MapPyPrint.py"
Install file: "src/map/MapPyReconSetup/MapPyReconSetup.py" as "build/MapPyReconSetup.py"
Install file: "src/map/MapPyRemoveTracks/MapPyRemoveTracks.py" as "build/MapPyRemoveTracks.py"
Install file: "src/map/MapPyScalersDump/MapPyScalersDump.py" as "build/MapPyScalersDump.py"
Install file: "src/map/MapPyTOFPlot/MapPyTOFPlot.py" as "build/MapPyTOFPlot.py"
Install file: "src/map/MapPyTestMap/MapPyTestMap.py" as "build/MapPyTestMap.py"
swig -o src/output/OutputCppRoot/build/OutputCppRoot_wrap.cc -python -c++ src/output/OutputCppRoot/OutputCppRoot.i
Install file: "src/output/OutputCppRoot/build/OutputCppRoot.py" as "build/OutputCppRoot.py"
Install file: "src/output/OutputPyDoNothing/OutputPyDoNothing.py" as "build/OutputPyDoNothing.py"
Install file: "src/output/OutputPyFile/OutputPyFile.py" as "build/OutputPyFile.py"
Install file: "src/output/OutputPyImage/OutputPyImage.py" as "build/OutputPyImage.py"
Install file: "src/output/OutputPyJSON/OutputPyJSON.py" as "build/OutputPyJSON.py"
swig -o src/reduce/ReduceCppTracker/build/ReduceCppTracker_wrap.cc -python -c++ src/reduce/ReduceCppTracker/ReduceCppTracker.i
Install file: "src/reduce/ReduceCppTracker/build/ReduceCppTracker.py" as "build/ReduceCppTracker.py"
Install file: "src/reduce/ReducePyCkov/ReducePyCkov.py" as "build/ReducePyCkov.py"
Install file: "src/reduce/ReducePyDoNothing/ReducePyDoNothing.py" as "build/ReducePyDoNothing.py"
Install file: "src/reduce/ReducePyHistogramTDCADCCounts/ReducePyHistogramTDCADCCounts.py" as "build/ReducePyHistogramTDCADCCounts.py"
Install file: "src/reduce/ReducePyMatplotlibHistogram/ReducePyMatplotlibHistogram.py" as "build/ReducePyMatplotlibHistogram.py"
Install file: "src/reduce/ReducePyROOTHistogram/ReducePyROOTHistogram.py" as "build/ReducePyROOTHistogram.py"
Install file: "src/reduce/ReducePyScalers/ReducePyScalers.py" as "build/ReducePyScalers.py"
Install file: "src/reduce/ReducePyScalersTable/ReducePyScalersTable.py" as "build/ReducePyScalersTable.py"
Install file: "src/reduce/ReducePyTOFPlot/ReducePyTOFPlot.py" as "build/ReducePyTOFPlot.py"
Install file: "src/map/MapPyMCReconSetup/TestMapPyMCReconSetup.py" as "build/TestMapPyMCReconSetup.py"
Install file: "src/map/MapPyReconSetup/TestMapPyReconSetup.py" as "build/TestMapPyReconSetup.py"
g++ -o src/input/InputCppDAQData/build/InputCppDAQData.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/input/InputCppDAQData src/input/InputCppDAQData/InputCppDAQData.cc
g++ -o src/input/InputCppDAQData/build/UnpackEventLib.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/input/InputCppDAQData src/input/InputCppDAQData/UnpackEventLib.cc
g++ -o src/input/InputCppDAQData/build/InputCppDAQData_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/input/InputCppDAQData src/input/InputCppDAQData/build/InputCppDAQData_wrap.cc
g++ -o src/legacy/BeamTools/BTSolenoid.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTSolenoid.cc
g++ -o src/legacy/BeamTools/BTMultipole.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTMultipole.cc
g++ -o src/legacy/BeamTools/BTCombinedFunction.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTCombinedFunction.cc
g++ -o src/legacy/BeamTools/BTFastSolenoid.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTFastSolenoid.cc
g++ -o src/legacy/BeamTools/BTRFFieldMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTRFFieldMap.cc
g++ -o src/legacy/BeamTools/BTTracker.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTTracker.cc
g++ -o src/legacy/BeamTools/BTSheet.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTSheet.cc
g++ -o src/legacy/BeamTools/BTFieldGroup.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTFieldGroup.cc
g++ -o src/legacy/BeamTools/BTPillBox.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTPillBox.cc
g++ -o src/legacy/BeamTools/BTSpaceChargeField.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTSpaceChargeField.cc
g++ -o src/legacy/BeamTools/BTQuad.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTQuad.cc
g++ -o src/legacy/BeamTools/BTMagFieldMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTMagFieldMap.cc
g++ -o src/legacy/BeamTools/BTFieldConstructor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTFieldConstructor.cc
g++ -o src/legacy/BeamTools/micegsl.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/micegsl.cc
g++ -o src/legacy/BeamTools/BTConstantField.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTConstantField.cc
g++ -o src/legacy/BeamTools/BTField.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTField.cc
g++ -o src/legacy/BeamTools/BT3dFieldMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BT3dFieldMap.cc
g++ -o src/legacy/BeamTools/BTPhaser.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTPhaser.cc
g++ -o src/legacy/BeamTools/BTMidplaneMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/BeamTools/BTMidplaneMap.cc
g++ -o src/legacy/Optics/OpticsModel.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/OpticsModel.cc
g++ -o src/legacy/Optics/MICETrackingAction.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/MICETrackingAction.cc
g++ -o src/legacy/Optics/CovarianceMatrix.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/CovarianceMatrix.cc
g++ -o src/legacy/Optics/PhaseSpaceVector.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/PhaseSpaceVector.cc
g++ -o src/legacy/Optics/AnalysisPlaneBank.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/AnalysisPlaneBank.cc
g++ -o src/legacy/Optics/Tensor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/Tensor.cc
g++ -o src/legacy/Optics/Material.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/Material.cc
g++ -o src/legacy/Optics/MICEStackingAction.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/MICEStackingAction.cc
g++ -o src/legacy/Optics/TransferMapCalculator.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/TransferMapCalculator.cc
g++ -o src/legacy/Optics/TransportManager.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/TransportManager.cc
g++ -o src/legacy/Optics/TransferMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/TransferMap.cc
g++ -o src/legacy/Optics/Tensor3.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Optics/Tensor3.cc
g++ -o src/legacy/Config/VlpcCableOsaka2.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/VlpcCableOsaka2.cc
g++ -o src/legacy/Config/CoolingChannelGeom.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/CoolingChannelGeom.cc
g++ -o src/legacy/Config/VlpcCableImperial.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/VlpcCableImperial.cc
g++ -o src/legacy/Config/MagnetParameters.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/MagnetParameters.cc
g++ -o src/legacy/Config/ModuleTextFileIO.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/ModuleTextFileIO.cc
g++ -o src/legacy/Config/VlpcCableOsaka.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/VlpcCableOsaka.cc
g++ -o src/legacy/Config/SciFiCableManager.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/SciFiCableManager.cc
g++ -o src/legacy/Config/RFParameters.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/RFParameters.cc
g++ -o src/legacy/Config/TofCable.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/TofCable.cc
g++ -o src/legacy/Config/ModuleConverter.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/ModuleConverter.cc
g++ -o src/legacy/Config/VlpcCableOsaka3.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/VlpcCableOsaka3.cc
g++ -o src/legacy/Config/BeamParameters.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/BeamParameters.cc
g++ -o src/legacy/Config/MiceModule.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Config/MiceModule.cc
g++ -o src/legacy/Simulation/MICEPhysicsList.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Simulation/MICEPhysicsList.cc
g++ -o src/legacy/Simulation/MICEDetectorConstruction.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Simulation/MICEDetectorConstruction.cc
g++ -o src/legacy/Simulation/FillMaterials.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Simulation/FillMaterials.cc
g++ -o src/legacy/EngModel/MiceModToG4Solid.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/EngModel/MiceModToG4Solid.cc
g++ -o src/legacy/EngModel/MultipoleAperture.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/EngModel/MultipoleAperture.cc
g++ -o src/legacy/EngModel/Polycone.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/EngModel/Polycone.cc
g++ -o src/legacy/Interface/SpecialHit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/SpecialHit.cc
g++ -o src/legacy/Interface/G4BLBank.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/G4BLBank.cc
g++ -o src/legacy/Interface/VirtualHit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/VirtualHit.cc
g++ -o src/legacy/Interface/MCHit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/MCHit.cc
g++ -o src/legacy/Interface/XMLMessage.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/XMLMessage.cc
g++ -o src/legacy/Interface/KLHit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/KLHit.cc
g++ -o src/legacy/Interface/MiceEventManager.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/MiceEventManager.cc
g++ -o src/legacy/Interface/Interpolator.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/Interpolator.cc
g++ -o src/legacy/Interface/MICEEvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/MICEEvent.cc
g++ -o src/legacy/Interface/Squeak.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/Squeak.cc
g++ -o src/legacy/Interface/Spline1D.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/Spline1D.cc
g++ -o src/legacy/Interface/Differentiator.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/Differentiator.cc
g++ -o src/legacy/Interface/SplineInterpolator.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/SplineInterpolator.cc
g++ -o src/legacy/Interface/MiceMaterials.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/MiceMaterials.cc
g++ -o src/legacy/Interface/VersionInfo.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/VersionInfo.cc
g++ -o src/legacy/Interface/TriangularMesh.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/TriangularMesh.cc
g++ -o src/legacy/Interface/Mesh.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/Mesh.cc
g++ -o src/legacy/Interface/STLUtils.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/STLUtils.cc
g++ -o src/legacy/Interface/dataCards.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/dataCards.cc
g++ -o src/legacy/Interface/DataBaseReader.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/DataBaseReader.cc
g++ -o src/legacy/Interface/ThreeDFieldMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/ThreeDFieldMap.cc
g++ -o src/legacy/Interface/RFFieldMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/RFFieldMap.cc
g++ -o src/legacy/Interface/MagFieldMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/MagFieldMap.cc
g++ -o src/legacy/Interface/MathUtils.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/MathUtils.cc
g++ -o src/legacy/Interface/Squeal.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/Squeal.cc
g++ -o src/legacy/Interface/BetaFuncBank.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/BetaFuncBank.cc
g++ -o src/legacy/Interface/CkovHit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/CkovHit.cc
g++ -o src/legacy/Interface/RFData.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/RFData.cc
g++ -o src/legacy/Interface/AnalysisEventBank.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/AnalysisEventBank.cc
g++ -o src/legacy/Interface/MICERun.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/MICERun.cc
g++ -o src/legacy/Interface/MCParticle.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/MCParticle.cc
g++ -o src/legacy/Interface/DataBaseAPI.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/Interface/DataBaseAPI.cc
g++ -o src/legacy/DetModel/Virtual/SpecialVirtualSD.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/DetModel/Virtual/SpecialVirtualSD.cc
g++ -o src/legacy/DetModel/EMR/EMRSD.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/DetModel/EMR/EMRSD.cc
g++ -o src/legacy/DetModel/TOF/TofSD.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/DetModel/TOF/TofSD.cc
g++ -o src/legacy/DetModel/Ckov/CkovMirror.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/DetModel/Ckov/CkovMirror.cc
g++ -o src/legacy/DetModel/Ckov/CKOVSD.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/DetModel/Ckov/CKOVSD.cc
g++ -o src/legacy/DetModel/KL/KLFiber.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/DetModel/KL/KLFiber.cc
g++ -o src/legacy/DetModel/KL/KLSD.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/DetModel/KL/KLSD.cc
g++ -o src/legacy/DetModel/KL/KLGlue.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/legacy/DetModel/KL/KLGlue.cc
g++ -o src/common_cpp/Utils/MAUSEvaluator.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Utils/MAUSEvaluator.cc
g++ -o src/common_cpp/Utils/PyMausCpp.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Utils/PyMausCpp.cc
g++ -o src/common_cpp/Utils/JsonWrapper.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Utils/JsonWrapper.cc
g++ -o src/common_cpp/Utils/DAQChannelMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Utils/DAQChannelMap.cc
g++ -o src/common_cpp/Utils/TOFChannelMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Utils/TOFChannelMap.cc
g++ -o src/common_cpp/Utils/TOFCalibrationMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Utils/TOFCalibrationMap.cc
g++ -o src/common_cpp/Utils/CppErrorHandler.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Utils/CppErrorHandler.cc
g++ -o src/common_cpp/DetModel/MAUSSD.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DetModel/MAUSSD.cc
g++ -o src/common_cpp/FieldTools/SectorMagneticFieldMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/FieldTools/SectorMagneticFieldMap.cc
g++ -o src/common_cpp/FieldTools/SectorField.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/FieldTools/SectorField.cc
g++ -o src/common_cpp/JsonCppStreamer/JsonCppConverter.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppStreamer/JsonCppConverter.cc
g++ -o src/common_cpp/JsonCppStreamer/ORStream.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppStreamer/ORStream.cc
g++ -o src/common_cpp/JsonCppStreamer/IRStream.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppStreamer/IRStream.cc
g++ -o src/common_cpp/JsonCppStreamer/RStream.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppStreamer/RStream.cc
g++ -o src/common_cpp/JsonCppStreamer/OneArgManip.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppStreamer/OneArgManip.cc
g++ -o src/common_cpp/Optics/CovarianceMatrix.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Optics/CovarianceMatrix.cc
g++ -o src/common_cpp/Optics/PhaseSpaceVector.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Optics/PhaseSpaceVector.cc
g++ -o src/common_cpp/Optics/TransferMap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Optics/TransferMap.cc
g++ -o src/common_cpp/JsonCppProcessors/EMREventProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/EMREventProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TOFSpacePointProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TOFSpacePointProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TagProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TagProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/Pmt0Processor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/Pmt0Processor.cc
g++ -o src/common_cpp/JsonCppProcessors/TOFEventSlabHitProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TOFEventSlabHitProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/ObjectMapProcessors.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/ObjectMapProcessors.cc
g++ -o src/common_cpp/JsonCppProcessors/SpillProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/SpillProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TOFDaqProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TOFDaqProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TrackProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TrackProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/CkovAProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/CkovAProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/V1290Processor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/V1290Processor.cc
g++ -o src/common_cpp/JsonCppProcessors/UnknownProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/UnknownProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/MCEventProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/MCEventProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/CkovDaqProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/CkovDaqProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/SciFiEventProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/SciFiEventProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TOFEventDigitProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TOFEventDigitProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/PrimaryProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/PrimaryProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/SciFiChannelIdProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/SciFiChannelIdProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/ArrayProcessors.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/ArrayProcessors.cc
g++ -o src/common_cpp/JsonCppProcessors/TriggerEventProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TriggerEventProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/DAQDataProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/DAQDataProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/ProcessorBase.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/ProcessorBase.cc
g++ -o src/common_cpp/JsonCppProcessors/Pmt1Processor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/Pmt1Processor.cc
g++ -o src/common_cpp/JsonCppProcessors/ChannelsProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/ChannelsProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/ReconEventProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/ReconEventProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/CkovBProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/CkovBProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/SpecialVirtualChannelIdProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/SpecialVirtualChannelIdProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/HitProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/HitProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/GlobalEventProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/GlobalEventProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/V1731Processor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/V1731Processor.cc
g++ -o src/common_cpp/JsonCppProcessors/ScalarsProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/ScalarsProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/V830Processor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/V830Processor.cc
g++ -o src/common_cpp/JsonCppProcessors/TriggerProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TriggerProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TOFSlabHitProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TOFSlabHitProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TriggerRequestProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TriggerRequestProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/CkovDigitProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/CkovDigitProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/StepProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/StepProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/CkovEventProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/CkovEventProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TOFChannelIdProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TOFChannelIdProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/KLEventProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/KLEventProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/V1724Processor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/V1724Processor.cc
g++ -o src/common_cpp/JsonCppProcessors/KLDaqProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/KLDaqProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TOFEventProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TOFEventProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/ThreeVectorProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/ThreeVectorProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/ObjectProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/ObjectProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TOFDigitProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TOFDigitProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/EMRSpillDataProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/EMRSpillDataProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/PrimitivesProcessors.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/PrimitivesProcessors.cc
g++ -o src/common_cpp/JsonCppProcessors/VirtualHitProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/VirtualHitProcessor.cc
g++ -o src/common_cpp/JsonCppProcessors/TOFEventSpacePointProcessor.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/JsonCppProcessors/TOFEventSpacePointProcessor.cc
g++ -o src/common_cpp/DataStructure/SpecialVirtualChannelId.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/SpecialVirtualChannelId.cc
g++ -o src/common_cpp/DataStructure/Unknown.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Unknown.cc
g++ -o src/common_cpp/DataStructure/Hit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Hit.cc
g++ -o src/common_cpp/DataStructure/Tag.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Tag.cc
g++ -o src/common_cpp/DataStructure/GlobalEvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/GlobalEvent.cc
g++ -o src/common_cpp/DataStructure/V1724.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/V1724.cc
g++ -o src/common_cpp/DataStructure/Data.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Data.cc
g++ -o src/common_cpp/DataStructure/Scalars.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Scalars.cc
g++ -o src/common_cpp/DataStructure/V1290.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/V1290.cc
g++ -o src/common_cpp/DataStructure/CkovDigit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/CkovDigit.cc
g++ -o src/common_cpp/DataStructure/Pmt1.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Pmt1.cc
g++ -o src/common_cpp/DataStructure/V1731.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/V1731.cc
g++ -o src/common_cpp/DataStructure/VirtualHit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/VirtualHit.cc
g++ -o src/common_cpp/DataStructure/TOFEventSpacePoint.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TOFEventSpacePoint.cc
g++ -o src/common_cpp/DataStructure/Primary.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Primary.cc
g++ -o src/common_cpp/DataStructure/KLEvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/KLEvent.cc
g++ -o src/common_cpp/DataStructure/ThreeVector.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/ThreeVector.cc
g++ -o src/common_cpp/DataStructure/Channels.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Channels.cc
g++ -o src/common_cpp/DataStructure/TOFSpacePoint.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TOFSpacePoint.cc
g++ -o src/common_cpp/DataStructure/CkovA.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/CkovA.cc
g++ -o src/common_cpp/DataStructure/CkovEvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/CkovEvent.cc
g++ -o src/common_cpp/DataStructure/TOFSlabHit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TOFSlabHit.cc
g++ -o src/common_cpp/DataStructure/TOFDigit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TOFDigit.cc
g++ -o src/common_cpp/DataStructure/Pmt0.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Pmt0.cc
g++ -o src/common_cpp/DataStructure/EMRSpillData.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/EMRSpillData.cc
g++ -o src/common_cpp/DataStructure/TriggerRequest.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TriggerRequest.cc
g++ -o src/common_cpp/DataStructure/SciFiEvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/SciFiEvent.cc
g++ -o src/common_cpp/DataStructure/TOFChannelId.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TOFChannelId.cc
g++ -o src/common_cpp/DataStructure/TOFEventSlabHit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TOFEventSlabHit.cc
g++ -o src/common_cpp/DataStructure/KLDaq.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/KLDaq.cc
g++ -o src/common_cpp/DataStructure/CkovDaq.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/CkovDaq.cc
g++ -o src/common_cpp/DataStructure/MausDataStructure.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/MausDataStructure.cc
g++ -o src/common_cpp/DataStructure/V830.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/V830.cc
g++ -o src/common_cpp/DataStructure/DAQData.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/DAQData.cc
g++ -o src/common_cpp/DataStructure/Spill.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Spill.cc
g++ -o src/common_cpp/DataStructure/ReconEvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/ReconEvent.cc
g++ -o src/common_cpp/DataStructure/Step.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Step.cc
g++ -o src/common_cpp/DataStructure/SciFiChannelId.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/SciFiChannelId.cc
g++ -o src/common_cpp/DataStructure/Trigger.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Trigger.cc
g++ -o src/common_cpp/DataStructure/TOFEventDigit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TOFEventDigit.cc
g++ -o src/common_cpp/DataStructure/CkovB.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/CkovB.cc
g++ -o src/common_cpp/DataStructure/EMREvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/EMREvent.cc
g++ -o src/common_cpp/DataStructure/Track.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/Track.cc
g++ -o src/common_cpp/DataStructure/TOFDaq.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TOFDaq.cc
g++ -o src/common_cpp/DataStructure/MCEvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/MCEvent.cc
g++ -o src/common_cpp/DataStructure/TOFEvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TOFEvent.cc
g++ -o src/common_cpp/DataStructure/TriggerEvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DataStructure/TriggerEvent.cc
g++ -o src/common_cpp/Simulation/MAUSEventAction.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/MAUSEventAction.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from src/common_cpp/Simulation/MAUSEventAction.cc:21:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o src/common_cpp/Simulation/MAUSRunAction.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/MAUSRunAction.cc
g++ -o src/common_cpp/Simulation/MAUSPhysicsList.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/MAUSPhysicsList.cc
g++ -o src/common_cpp/Simulation/MAUSStackingActionKillNonMuons.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/MAUSStackingActionKillNonMuons.cc
g++ -o src/common_cpp/Simulation/MAUSPrimaryGeneratorAction.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/MAUSPrimaryGeneratorAction.cc
g++ -o src/common_cpp/Simulation/FieldPhaser.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/FieldPhaser.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from src/common_cpp/Simulation/FieldPhaser.cc:23:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o src/common_cpp/Simulation/VirtualPlanes.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/VirtualPlanes.cc
g++ -o src/common_cpp/Simulation/MAUSSteppingAction.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/MAUSSteppingAction.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from src/common_cpp/Simulation/MAUSSteppingAction.cc:27:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o src/common_cpp/Simulation/MAUSTrackingAction.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/MAUSTrackingAction.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from src/common_cpp/Simulation/MAUSTrackingAction.cc:22:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o src/common_cpp/Simulation/MAUSGeant4Manager.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/MAUSGeant4Manager.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from src/common_cpp/Simulation/MAUSGeant4Manager.cc:20:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o src/common_cpp/Simulation/MAUSVisManager.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Simulation/MAUSVisManager.cc
g++ -o src/common_cpp/Maths/Vector.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Maths/Vector.cc
g++ -o src/common_cpp/Maths/Complex.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Maths/Complex.cc
g++ -o src/common_cpp/Maths/HermitianMatrix.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Maths/HermitianMatrix.cc
g++ -o src/common_cpp/Maths/Matrix.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Maths/Matrix.cc
g++ -o src/common_cpp/Maths/SymmetricMatrix.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Maths/SymmetricMatrix.cc
g++ -o src/common_cpp/Maths/PolynomialVector.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Maths/PolynomialVector.cc
g++ -o src/common_cpp/Recon/SciFi/SciFiStraightPRTrack.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/SciFiStraightPRTrack.cc
g++ -o src/common_cpp/Recon/SciFi/PatternRecognition.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/PatternRecognition.cc
g++ -o src/common_cpp/Recon/SciFi/SciFiHit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/SciFiHit.cc
g++ -o src/common_cpp/Recon/SciFi/SciFiCluster.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/SciFiCluster.cc
g++ -o src/common_cpp/Recon/SciFi/SciFiSpill.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/SciFiSpill.cc
g++ -o src/common_cpp/Recon/SciFi/SciFiEvent.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/SciFiEvent.cc
g++ -o src/common_cpp/Recon/SciFi/SciFiSpacePointRec.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/SciFiSpacePointRec.cc
g++ -o src/common_cpp/Recon/SciFi/SciFiClusterRec.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/SciFiClusterRec.cc
g++ -o src/common_cpp/Recon/SciFi/RealDataDigitization.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/RealDataDigitization.cc
g++ -o src/common_cpp/Recon/SciFi/SciFiDigit.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/SciFiDigit.cc
g++ -o src/common_cpp/Recon/SciFi/SciFiSpacePoint.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/SciFiSpacePoint.cc
g++ -o src/common_cpp/Recon/SciFi/SimpleLine.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/Recon/SciFi/SimpleLine.cc
g++ -o src/common_cpp/DetModel/SciFi/DoubletFiberParam.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DetModel/SciFi/DoubletFiberParam.cc
g++ -o src/common_cpp/DetModel/SciFi/SciFiSD.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DetModel/SciFi/SciFiSD.cc
g++ -o src/common_cpp/DetModel/SciFi/SciFiPlane.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. src/common_cpp/DetModel/SciFi/SciFiPlane.cc
g++ -o src/common_cpp/libMausCpp.so -pthread -shared src/legacy/BeamTools/BTSolenoid.os src/legacy/BeamTools/BTMultipole.os src/legacy/BeamTools/BTCombinedFunction.os src/legacy/BeamTools/BTFastSolenoid.os src/legacy/BeamTools/BTRFFieldMap.os src/legacy/BeamTools/BTTracker.os src/legacy/BeamTools/BTSheet.os src/legacy/BeamTools/BTFieldGroup.os src/legacy/BeamTools/BTPillBox.os src/legacy/BeamTools/BTSpaceChargeField.os src/legacy/BeamTools/BTQuad.os src/legacy/BeamTools/BTMagFieldMap.os src/legacy/BeamTools/BTFieldConstructor.os src/legacy/BeamTools/micegsl.os src/legacy/BeamTools/BTConstantField.os src/legacy/BeamTools/BTField.os src/legacy/BeamTools/BT3dFieldMap.os src/legacy/BeamTools/BTPhaser.os src/legacy/BeamTools/BTMidplaneMap.os src/legacy/Optics/OpticsModel.os src/legacy/Optics/MICETrackingAction.os src/legacy/Optics/CovarianceMatrix.os src/legacy/Optics/PhaseSpaceVector.os src/legacy/Optics/AnalysisPlaneBank.os src/legacy/Optics/Tensor.os src/legacy/Optics/Material.os src/legacy/Optics/MICEStackingAction.os src/legacy/Optics/TransferMapCalculator.os src/legacy/Optics/TransportManager.os src/legacy/Optics/TransferMap.os src/legacy/Optics/Tensor3.os src/legacy/Config/VlpcCableOsaka2.os src/legacy/Config/CoolingChannelGeom.os src/legacy/Config/VlpcCableImperial.os src/legacy/Config/MagnetParameters.os src/legacy/Config/ModuleTextFileIO.os src/legacy/Config/VlpcCableOsaka.os src/legacy/Config/SciFiCableManager.os src/legacy/Config/RFParameters.os src/legacy/Config/TofCable.os src/legacy/Config/ModuleConverter.os src/legacy/Config/VlpcCableOsaka3.os src/legacy/Config/BeamParameters.os src/legacy/Config/MiceModule.os src/legacy/Simulation/MICEPhysicsList.os src/legacy/Simulation/MICEDetectorConstruction.os src/legacy/Simulation/FillMaterials.os src/legacy/EngModel/MiceModToG4Solid.os src/legacy/EngModel/MultipoleAperture.os src/legacy/EngModel/Polycone.os src/legacy/Interface/SpecialHit.os src/legacy/Interface/G4BLBank.os src/legacy/Interface/VirtualHit.os src/legacy/Interface/MCHit.os src/legacy/Interface/XMLMessage.os src/legacy/Interface/KLHit.os src/legacy/Interface/MiceEventManager.os src/legacy/Interface/Interpolator.os src/legacy/Interface/MICEEvent.os src/legacy/Interface/Squeak.os src/legacy/Interface/Spline1D.os src/legacy/Interface/Differentiator.os src/legacy/Interface/SplineInterpolator.os src/legacy/Interface/MiceMaterials.os src/legacy/Interface/VersionInfo.os src/legacy/Interface/TriangularMesh.os src/legacy/Interface/Mesh.os src/legacy/Interface/STLUtils.os src/legacy/Interface/dataCards.os src/legacy/Interface/DataBaseReader.os src/legacy/Interface/ThreeDFieldMap.os src/legacy/Interface/RFFieldMap.os src/legacy/Interface/MagFieldMap.os src/legacy/Interface/MathUtils.os src/legacy/Interface/Squeal.os src/legacy/Interface/BetaFuncBank.os src/legacy/Interface/CkovHit.os src/legacy/Interface/RFData.os src/legacy/Interface/AnalysisEventBank.os src/legacy/Interface/MICERun.os src/legacy/Interface/MCParticle.os src/legacy/Interface/DataBaseAPI.os src/legacy/DetModel/Virtual/SpecialVirtualSD.os src/legacy/DetModel/EMR/EMRSD.os src/legacy/DetModel/TOF/TofSD.os src/legacy/DetModel/Ckov/CkovMirror.os src/legacy/DetModel/Ckov/CKOVSD.os src/legacy/DetModel/KL/KLFiber.os src/legacy/DetModel/KL/KLSD.os src/legacy/DetModel/KL/KLGlue.os src/common_cpp/Utils/MAUSEvaluator.os src/common_cpp/Utils/PyMausCpp.os src/common_cpp/Utils/JsonWrapper.os src/common_cpp/Utils/DAQChannelMap.os src/common_cpp/Utils/TOFChannelMap.os src/common_cpp/Utils/TOFCalibrationMap.os src/common_cpp/Utils/CppErrorHandler.os src/common_cpp/DetModel/MAUSSD.os src/common_cpp/FieldTools/SectorMagneticFieldMap.os src/common_cpp/FieldTools/SectorField.os src/common_cpp/JsonCppStreamer/JsonCppConverter.os src/common_cpp/JsonCppStreamer/ORStream.os src/common_cpp/JsonCppStreamer/IRStream.os src/common_cpp/JsonCppStreamer/RStream.os src/common_cpp/JsonCppStreamer/OneArgManip.os src/common_cpp/Optics/CovarianceMatrix.os src/common_cpp/Optics/PhaseSpaceVector.os src/common_cpp/Optics/TransferMap.os src/common_cpp/JsonCppProcessors/EMREventProcessor.os src/common_cpp/JsonCppProcessors/TOFSpacePointProcessor.os src/common_cpp/JsonCppProcessors/TagProcessor.os src/common_cpp/JsonCppProcessors/Pmt0Processor.os src/common_cpp/JsonCppProcessors/TOFEventSlabHitProcessor.os src/common_cpp/JsonCppProcessors/ObjectMapProcessors.os src/common_cpp/JsonCppProcessors/SpillProcessor.os src/common_cpp/JsonCppProcessors/TOFDaqProcessor.os src/common_cpp/JsonCppProcessors/TrackProcessor.os src/common_cpp/JsonCppProcessors/CkovAProcessor.os src/common_cpp/JsonCppProcessors/V1290Processor.os src/common_cpp/JsonCppProcessors/UnknownProcessor.os src/common_cpp/JsonCppProcessors/MCEventProcessor.os src/common_cpp/JsonCppProcessors/CkovDaqProcessor.os src/common_cpp/JsonCppProcessors/SciFiEventProcessor.os src/common_cpp/JsonCppProcessors/TOFEventDigitProcessor.os src/common_cpp/JsonCppProcessors/PrimaryProcessor.os src/common_cpp/JsonCppProcessors/SciFiChannelIdProcessor.os src/common_cpp/JsonCppProcessors/ArrayProcessors.os src/common_cpp/JsonCppProcessors/TriggerEventProcessor.os src/common_cpp/JsonCppProcessors/DAQDataProcessor.os src/common_cpp/JsonCppProcessors/ProcessorBase.os src/common_cpp/JsonCppProcessors/Pmt1Processor.os src/common_cpp/JsonCppProcessors/ChannelsProcessor.os src/common_cpp/JsonCppProcessors/ReconEventProcessor.os src/common_cpp/JsonCppProcessors/CkovBProcessor.os src/common_cpp/JsonCppProcessors/SpecialVirtualChannelIdProcessor.os src/common_cpp/JsonCppProcessors/HitProcessor.os src/common_cpp/JsonCppProcessors/GlobalEventProcessor.os src/common_cpp/JsonCppProcessors/V1731Processor.os src/common_cpp/JsonCppProcessors/ScalarsProcessor.os src/common_cpp/JsonCppProcessors/V830Processor.os src/common_cpp/JsonCppProcessors/TriggerProcessor.os src/common_cpp/JsonCppProcessors/TOFSlabHitProcessor.os src/common_cpp/JsonCppProcessors/TriggerRequestProcessor.os src/common_cpp/JsonCppProcessors/CkovDigitProcessor.os src/common_cpp/JsonCppProcessors/StepProcessor.os src/common_cpp/JsonCppProcessors/CkovEventProcessor.os src/common_cpp/JsonCppProcessors/TOFChannelIdProcessor.os src/common_cpp/JsonCppProcessors/KLEventProcessor.os src/common_cpp/JsonCppProcessors/V1724Processor.os src/common_cpp/JsonCppProcessors/KLDaqProcessor.os src/common_cpp/JsonCppProcessors/TOFEventProcessor.os src/common_cpp/JsonCppProcessors/ThreeVectorProcessor.os src/common_cpp/JsonCppProcessors/ObjectProcessor.os src/common_cpp/JsonCppProcessors/TOFDigitProcessor.os src/common_cpp/JsonCppProcessors/EMRSpillDataProcessor.os src/common_cpp/JsonCppProcessors/PrimitivesProcessors.os src/common_cpp/JsonCppProcessors/VirtualHitProcessor.os src/common_cpp/JsonCppProcessors/TOFEventSpacePointProcessor.os src/common_cpp/DataStructure/SpecialVirtualChannelId.os src/common_cpp/DataStructure/Unknown.os src/common_cpp/DataStructure/Hit.os src/common_cpp/DataStructure/Tag.os src/common_cpp/DataStructure/GlobalEvent.os src/common_cpp/DataStructure/V1724.os src/common_cpp/DataStructure/Data.os src/common_cpp/DataStructure/Scalars.os src/common_cpp/DataStructure/V1290.os src/common_cpp/DataStructure/CkovDigit.os src/common_cpp/DataStructure/Pmt1.os src/common_cpp/DataStructure/V1731.os src/common_cpp/DataStructure/VirtualHit.os src/common_cpp/DataStructure/TOFEventSpacePoint.os src/common_cpp/DataStructure/Primary.os src/common_cpp/DataStructure/KLEvent.os src/common_cpp/DataStructure/ThreeVector.os src/common_cpp/DataStructure/Channels.os src/common_cpp/DataStructure/TOFSpacePoint.os src/common_cpp/DataStructure/CkovA.os src/common_cpp/DataStructure/CkovEvent.os src/common_cpp/DataStructure/TOFSlabHit.os src/common_cpp/DataStructure/TOFDigit.os src/common_cpp/DataStructure/Pmt0.os src/common_cpp/DataStructure/EMRSpillData.os src/common_cpp/DataStructure/TriggerRequest.os src/common_cpp/DataStructure/SciFiEvent.os src/common_cpp/DataStructure/TOFChannelId.os src/common_cpp/DataStructure/TOFEventSlabHit.os src/common_cpp/DataStructure/KLDaq.os src/common_cpp/DataStructure/CkovDaq.os src/common_cpp/DataStructure/MausDataStructure.os src/common_cpp/DataStructure/V830.os src/common_cpp/DataStructure/DAQData.os src/common_cpp/DataStructure/Spill.os src/common_cpp/DataStructure/ReconEvent.os src/common_cpp/DataStructure/Step.os src/common_cpp/DataStructure/SciFiChannelId.os src/common_cpp/DataStructure/Trigger.os src/common_cpp/DataStructure/TOFEventDigit.os src/common_cpp/DataStructure/CkovB.os src/common_cpp/DataStructure/EMREvent.os src/common_cpp/DataStructure/Track.os src/common_cpp/DataStructure/TOFDaq.os src/common_cpp/DataStructure/MCEvent.os src/common_cpp/DataStructure/TOFEvent.os src/common_cpp/DataStructure/TriggerEvent.os src/common_cpp/Simulation/MAUSEventAction.os src/common_cpp/Simulation/MAUSRunAction.os src/common_cpp/Simulation/MAUSPhysicsList.os src/common_cpp/Simulation/MAUSStackingActionKillNonMuons.os src/common_cpp/Simulation/MAUSPrimaryGeneratorAction.os src/common_cpp/Simulation/FieldPhaser.os src/common_cpp/Simulation/VirtualPlanes.os src/common_cpp/Simulation/MAUSSteppingAction.os src/common_cpp/Simulation/MAUSTrackingAction.os src/common_cpp/Simulation/MAUSGeant4Manager.os src/common_cpp/Simulation/MAUSVisManager.os src/common_cpp/Maths/Vector.os src/common_cpp/Maths/Complex.os src/common_cpp/Maths/HermitianMatrix.os src/common_cpp/Maths/Matrix.os src/common_cpp/Maths/SymmetricMatrix.os src/common_cpp/Maths/PolynomialVector.os src/common_cpp/Recon/SciFi/SciFiStraightPRTrack.os src/common_cpp/Recon/SciFi/PatternRecognition.os src/common_cpp/Recon/SciFi/SciFiHit.os src/common_cpp/Recon/SciFi/SciFiCluster.os src/common_cpp/Recon/SciFi/SciFiSpill.os src/common_cpp/Recon/SciFi/SciFiEvent.os src/common_cpp/Recon/SciFi/SciFiSpacePointRec.os src/common_cpp/Recon/SciFi/SciFiClusterRec.os src/common_cpp/Recon/SciFi/RealDataDigitization.os src/common_cpp/Recon/SciFi/SciFiDigit.os src/common_cpp/Recon/SciFi/SciFiSpacePoint.os src/common_cpp/Recon/SciFi/SimpleLine.os src/common_cpp/DetModel/SciFi/DoubletFiberParam.os src/common_cpp/DetModel/SciFi/SciFiSD.os src/common_cpp/DetModel/SciFi/SciFiPlane.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lrecpack
Install file: "src/common_cpp/libMausCpp.so" as "build/libMausCpp.so"
g++ -o src/input/InputCppDAQData/build/_InputCppDAQData.so -pthread -shared src/input/InputCppDAQData/build/InputCppDAQData.os src/input/InputCppDAQData/build/UnpackEventLib.os src/input/InputCppDAQData/build/InputCppDAQData_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/input/InputCppDAQData/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/input/InputCppDAQData/build/_InputCppDAQData.so" as "build/_InputCppDAQData.so"
g++ -o src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/input/InputCppDAQOfflineData src/input/InputCppDAQOfflineData/InputCppDAQOfflineData.cc
g++ -o src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/input/InputCppDAQOfflineData src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData_wrap.cc
g++ -o src/input/InputCppDAQData/build/libInputCppDAQData.so -pthread -shared src/input/InputCppDAQData/build/InputCppDAQData.os src/input/InputCppDAQData/build/UnpackEventLib.os src/input/InputCppDAQData/build/InputCppDAQData_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/input/InputCppDAQData/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/input/InputCppDAQData/build/libInputCppDAQData.so" as "build/libInputCppDAQData.so"
g++ -o src/input/InputCppDAQOfflineData/build/_InputCppDAQOfflineData.so -pthread -shared src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData.os src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/input/InputCppDAQOfflineData/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp -lInputCppDAQData
Install file: "src/input/InputCppDAQOfflineData/build/_InputCppDAQOfflineData.so" as "build/_InputCppDAQOfflineData.so"
g++ -o src/input/InputCppRoot/build/InputCppRoot.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/input/InputCppRoot src/input/InputCppRoot/InputCppRoot.cc
g++ -o src/input/InputCppRoot/build/InputCppRoot_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/input/InputCppRoot src/input/InputCppRoot/build/InputCppRoot_wrap.cc
g++ -o src/input/InputCppRoot/build/_InputCppRoot.so -pthread -shared src/input/InputCppRoot/build/InputCppRoot.os src/input/InputCppRoot/build/InputCppRoot_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/input/InputCppRoot/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/input/InputCppRoot/build/_InputCppRoot.so" as "build/_InputCppRoot.so"
g++ -o src/map/MapCppPrint/build/MapCppPrint.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppPrint src/map/MapCppPrint/MapCppPrint.cc
g++ -o src/map/MapCppPrint/build/MapCppPrint_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppPrint src/map/MapCppPrint/build/MapCppPrint_wrap.cc
g++ -o src/map/MapCppPrint/build/_MapCppPrint.so -pthread -shared src/map/MapCppPrint/build/MapCppPrint.os src/map/MapCppPrint/build/MapCppPrint_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppPrint/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppPrint/build/_MapCppPrint.so" as "build/_MapCppPrint.so"
g++ -o src/map/MapCppSimulation/build/MapCppSimulation.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppSimulation src/map/MapCppSimulation/MapCppSimulation.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from ./src/map/MapCppSimulation/MapCppSimulation.hh:43,
                 from src/map/MapCppSimulation/MapCppSimulation.cc:30:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o src/map/MapCppSimulation/build/MapCppSimulation_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppSimulation src/map/MapCppSimulation/build/MapCppSimulation_wrap.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from src/map/MapCppSimulation/MapCppSimulation.hh:43,
                 from src/map/MapCppSimulation/build/MapCppSimulation_wrap.cc:3043:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o src/map/MapCppSimulation/build/_MapCppSimulation.so -pthread -shared src/map/MapCppSimulation/build/MapCppSimulation.os src/map/MapCppSimulation/build/MapCppSimulation_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppSimulation/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppSimulation/build/_MapCppSimulation.so" as "build/_MapCppSimulation.so"
g++ -o src/map/MapCppTOFDigits/build/MapCppTOFDigits.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTOFDigits src/map/MapCppTOFDigits/MapCppTOFDigits.cc
g++ -o src/map/MapCppTOFDigits/build/MapCppTOFDigits_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTOFDigits src/map/MapCppTOFDigits/build/MapCppTOFDigits_wrap.cc
g++ -o src/map/MapCppTOFDigits/build/_MapCppTOFDigits.so -pthread -shared src/map/MapCppTOFDigits/build/MapCppTOFDigits.os src/map/MapCppTOFDigits/build/MapCppTOFDigits_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTOFDigits/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTOFDigits/build/_MapCppTOFDigits.so" as "build/_MapCppTOFDigits.so"
g++ -o src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTOFMCDigitizer src/map/MapCppTOFMCDigitizer/MapCppTOFMCDigitizer.cc
g++ -o src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTOFMCDigitizer src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer_wrap.cc
g++ -o src/map/MapCppTOFMCDigitizer/build/_MapCppTOFMCDigitizer.so -pthread -shared src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer.os src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTOFMCDigitizer/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTOFMCDigitizer/build/_MapCppTOFMCDigitizer.so" as "build/_MapCppTOFMCDigitizer.so"
g++ -o src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTOFSlabHits src/map/MapCppTOFSlabHits/MapCppTOFSlabHits.cc
g++ -o src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTOFSlabHits src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits_wrap.cc
g++ -o src/map/MapCppTOFSlabHits/build/_MapCppTOFSlabHits.so -pthread -shared src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits.os src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTOFSlabHits/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTOFSlabHits/build/_MapCppTOFSlabHits.so" as "build/_MapCppTOFSlabHits.so"
g++ -o src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTOFSpacePoints src/map/MapCppTOFSpacePoints/MapCppTOFSpacePoints.cc
g++ -o src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTOFSpacePoints src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints_wrap.cc
g++ -o src/map/MapCppTOFSpacePoints/build/_MapCppTOFSpacePoints.so -pthread -shared src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints.os src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTOFSpacePoints/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTOFSpacePoints/build/_MapCppTOFSpacePoints.so" as "build/_MapCppTOFSpacePoints.so"
g++ -o src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTrackerMCDigitization src/map/MapCppTrackerMCDigitization/MapCppTrackerMCDigitization.cc
g++ -o src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTrackerMCDigitization src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization_wrap.cc
g++ -o src/map/MapCppTrackerMCDigitization/build/_MapCppTrackerMCDigitization.so -pthread -shared src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization.os src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTrackerMCDigitization/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTrackerMCDigitization/build/_MapCppTrackerMCDigitization.so" as "build/_MapCppTrackerMCDigitization.so"
g++ -o src/map/MapCppTrackerRecon/build/MapCppTrackerRecon.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTrackerRecon src/map/MapCppTrackerRecon/MapCppTrackerRecon.cc
g++ -o src/map/MapCppTrackerRecon/build/MapCppTrackerRecon_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/map/MapCppTrackerRecon src/map/MapCppTrackerRecon/build/MapCppTrackerRecon_wrap.cc
g++ -o src/map/MapCppTrackerRecon/build/_MapCppTrackerRecon.so -pthread -shared src/map/MapCppTrackerRecon/build/MapCppTrackerRecon.os src/map/MapCppTrackerRecon/build/MapCppTrackerRecon_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTrackerRecon/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTrackerRecon/build/_MapCppTrackerRecon.so" as "build/_MapCppTrackerRecon.so"
g++ -o src/output/OutputCppRoot/build/OutputCppRoot.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/output/OutputCppRoot src/output/OutputCppRoot/OutputCppRoot.cc
g++ -o src/output/OutputCppRoot/build/OutputCppRoot_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/output/OutputCppRoot src/output/OutputCppRoot/build/OutputCppRoot_wrap.cc
g++ -o src/output/OutputCppRoot/build/_OutputCppRoot.so -pthread -shared src/output/OutputCppRoot/build/OutputCppRoot.os src/output/OutputCppRoot/build/OutputCppRoot_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/output/OutputCppRoot/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/output/OutputCppRoot/build/_OutputCppRoot.so" as "build/_OutputCppRoot.so"
g++ -o src/reduce/ReduceCppTracker/build/ReduceCppTracker.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/reduce/ReduceCppTracker src/reduce/ReduceCppTracker/ReduceCppTracker.cc
g++ -o src/reduce/ReduceCppTracker/build/ReduceCppTracker_wrap.os -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -fPIC -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. -Isrc/reduce/ReduceCppTracker src/reduce/ReduceCppTracker/build/ReduceCppTracker_wrap.cc
g++ -o src/reduce/ReduceCppTracker/build/_ReduceCppTracker.so -pthread -shared src/reduce/ReduceCppTracker/build/ReduceCppTracker.os src/reduce/ReduceCppTracker/build/ReduceCppTracker_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/reduce/ReduceCppTracker/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/reduce/ReduceCppTracker/build/_ReduceCppTracker.so" as "build/_ReduceCppTracker.so"
Install file: "src/map/MapPyBeamMaker/beam.py" as "build/beam.py"
Install file: "tests/style/cpplint_exceptions.py" as "build/cpplint_exceptions.py"
g++ -o src/input/InputCppDAQOfflineData/build/libInputCppDAQOfflineData.so -pthread -shared src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData.os src/input/InputCppDAQOfflineData/build/InputCppDAQOfflineData_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/input/InputCppDAQOfflineData/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp -lInputCppDAQData
Install file: "src/input/InputCppDAQOfflineData/build/libInputCppDAQOfflineData.so" as "build/libInputCppDAQOfflineData.so"
g++ -o src/input/InputCppRoot/build/libInputCppRoot.so -pthread -shared src/input/InputCppRoot/build/InputCppRoot.os src/input/InputCppRoot/build/InputCppRoot_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/input/InputCppRoot/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/input/InputCppRoot/build/libInputCppRoot.so" as "build/libInputCppRoot.so"
g++ -o src/map/MapCppPrint/build/libMapCppPrint.so -pthread -shared src/map/MapCppPrint/build/MapCppPrint.os src/map/MapCppPrint/build/MapCppPrint_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppPrint/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppPrint/build/libMapCppPrint.so" as "build/libMapCppPrint.so"
g++ -o src/map/MapCppSimulation/build/libMapCppSimulation.so -pthread -shared src/map/MapCppSimulation/build/MapCppSimulation.os src/map/MapCppSimulation/build/MapCppSimulation_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppSimulation/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppSimulation/build/libMapCppSimulation.so" as "build/libMapCppSimulation.so"
g++ -o src/map/MapCppTOFDigits/build/libMapCppTOFDigits.so -pthread -shared src/map/MapCppTOFDigits/build/MapCppTOFDigits.os src/map/MapCppTOFDigits/build/MapCppTOFDigits_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTOFDigits/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTOFDigits/build/libMapCppTOFDigits.so" as "build/libMapCppTOFDigits.so"
g++ -o src/map/MapCppTOFMCDigitizer/build/libMapCppTOFMCDigitizer.so -pthread -shared src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer.os src/map/MapCppTOFMCDigitizer/build/MapCppTOFMCDigitizer_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTOFMCDigitizer/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTOFMCDigitizer/build/libMapCppTOFMCDigitizer.so" as "build/libMapCppTOFMCDigitizer.so"
g++ -o src/map/MapCppTOFSlabHits/build/libMapCppTOFSlabHits.so -pthread -shared src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits.os src/map/MapCppTOFSlabHits/build/MapCppTOFSlabHits_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTOFSlabHits/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTOFSlabHits/build/libMapCppTOFSlabHits.so" as "build/libMapCppTOFSlabHits.so"
g++ -o src/map/MapCppTOFSpacePoints/build/libMapCppTOFSpacePoints.so -pthread -shared src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints.os src/map/MapCppTOFSpacePoints/build/MapCppTOFSpacePoints_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTOFSpacePoints/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTOFSpacePoints/build/libMapCppTOFSpacePoints.so" as "build/libMapCppTOFSpacePoints.so"
g++ -o src/map/MapCppTrackerMCDigitization/build/libMapCppTrackerMCDigitization.so -pthread -shared src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization.os src/map/MapCppTrackerMCDigitization/build/MapCppTrackerMCDigitization_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTrackerMCDigitization/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTrackerMCDigitization/build/libMapCppTrackerMCDigitization.so" as "build/libMapCppTrackerMCDigitization.so"
g++ -o src/map/MapCppTrackerRecon/build/libMapCppTrackerRecon.so -pthread -shared src/map/MapCppTrackerRecon/build/MapCppTrackerRecon.os src/map/MapCppTrackerRecon/build/MapCppTrackerRecon_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/map/MapCppTrackerRecon/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/map/MapCppTrackerRecon/build/libMapCppTrackerRecon.so" as "build/libMapCppTrackerRecon.so"
g++ -o src/output/OutputCppRoot/build/libOutputCppRoot.so -pthread -shared src/output/OutputCppRoot/build/OutputCppRoot.os src/output/OutputCppRoot/build/OutputCppRoot_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/output/OutputCppRoot/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/output/OutputCppRoot/build/libOutputCppRoot.so" as "build/libOutputCppRoot.so"
g++ -o src/reduce/ReduceCppTracker/build/libReduceCppTracker.so -pthread -shared src/reduce/ReduceCppTracker/build/ReduceCppTracker.os src/reduce/ReduceCppTracker/build/ReduceCppTracker_wrap.os -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/reduce/ReduceCppTracker/src/common_cpp -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "src/reduce/ReduceCppTracker/build/libReduceCppTracker.so" as "build/libReduceCppTracker.so"
g++ -o tests/integration/test_optics/src/Optics.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/integration/test_optics/src/Optics.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from tests/integration/test_optics/src/Optics.hh:7,
                 from tests/integration/test_optics/src/Optics.cc:10:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o tests/integration/test_optics/optics -pthread tests/integration/test_optics/src/Optics.o -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lMausCpp
Install file: "tests/integration/test_optics/optics" as "build/optics"
Install file: "src/input/InputCppDAQData/test_InputCppDAQData.py" as "build/test_InputCppDAQData.py"
Install file: "src/input/InputCppDAQOfflineData/test_InputCppDAQOfflineData.py" as "build/test_InputCppDAQOfflineData.py"
Install file: "src/input/InputCppRoot/test_InputCppRoot.py" as "build/test_InputCppRoot.py"
Install file: "src/input/InputPyEmptyDocument/test_InputPyEmptyDocument.py" as "build/test_InputPyEmptyDocument.py"
Install file: "src/input/InputPyJSON/test_InputPyJson.py" as "build/test_InputPyJson.py"
Install file: "src/input/InputPySpillGenerator/test_InputPySpillGenerator.py" as "build/test_InputPySpillGenerator.py"
Install file: "src/map/MapCppPrint/test_MapCppPrint.py" as "build/test_MapCppPrint.py"
Install file: "src/map/MapCppSimulation/test_MapCppSimulation.py" as "build/test_MapCppSimulation.py"
Install file: "src/map/MapCppTOFDigits/test_MapCppTOFDigits.py" as "build/test_MapCppTOFDigits.py"
Install file: "src/map/MapCppTOFMCDigitizer/test_MapCppTOFMCDigitizer.py" as "build/test_MapCppTOFMCDigitizer.py"
Install file: "src/map/MapCppTOFSlabHits/test_MapCppTOFSlabHits.py" as "build/test_MapCppTOFSlabHits.py"
Install file: "src/map/MapCppTOFSpacePoints/test_MapCppTOFSpacePoints.py" as "build/test_MapCppTOFSpacePoints.py"
Install file: "src/map/MapCppTrackerMCDigitization/test_MapCppTrackerMCDigitization.py" as "build/test_MapCppTrackerMCDigitization.py"
Install file: "src/map/MapCppTrackerRecon/test_MapCppTrackerRecon.py" as "build/test_MapCppTrackerRecon.py"
Install file: "src/map/MapPyBeamMaker/test_MapPyBeamMaker.py" as "build/test_MapPyBeamMaker.py"
Install file: "src/map/MapPyCkov/test_MapPyCkov.py" as "build/test_MapPyCkov.py"
Install file: "src/map/MapPyCkovSecondPeaks/test_MapPyCkovSecondPeaks.py" as "build/test_MapPyCkovSecondPeaks.py"
Install file: "src/map/MapPyDoNothing/test_MapPyDoNothing.py" as "build/test_MapPyDoNothing.py"
Install file: "src/map/MapPyFakeTestSimulation/test_MapPyFakeTestSimulation.py" as "build/test_MapPyFakeTestSimulation.py"
Install file: "src/map/MapPyGroup/test_MapPyGroup.py" as "build/test_MapPyGroup.py"
Install file: "src/map/MapPyPrint/test_MapPyPrint.py" as "build/test_MapPyPrint.py"
Install file: "src/map/MapPyRemoveTracks/test_MapPyRemoveTracks.py" as "build/test_MapPyRemoveTracks.py"
Install file: "src/map/MapPyScalersDump/test_MapPyScalersDump.py" as "build/test_MapPyScalersDump.py"
Install file: "src/output/OutputCppRoot/test_OutputCppRoot.py" as "build/test_OutputCppRoot.py"
Install file: "src/output/OutputPyDoNothing/test_OutputPyDoNothing.py" as "build/test_OutputPyDoNothing.py"
Install file: "src/output/OutputPyFile/test_OutputPyFile.py" as "build/test_OutputPyFile.py"
Install file: "src/output/OutputPyImage/test_OutputPyImage.py" as "build/test_OutputPyImage.py"
Install file: "src/output/OutputPyJSON/test_OutputPyJSON.py" as "build/test_OutputPyJSON.py"
Install file: "src/reduce/ReducePyCkov/test_ReducePyCkov.py" as "build/test_ReducePyCkov.py"
Install file: "src/reduce/ReducePyHistogramTDCADCCounts/test_ReducePyHistogramTDCADCCounts.py" as "build/test_ReducePyHistogramTDCADCCounts.py"
Install file: "src/reduce/ReducePyMatplotlibHistogram/test_ReducePyMatplotlibHistogram.py" as "build/test_ReducePyMatplotlibHistogram.py"
Install file: "src/reduce/ReducePyROOTHistogram/test_ReducePyROOTHistogram.py" as "build/test_ReducePyROOTHistogram.py"
Install file: "src/reduce/ReducePyScalers/test_ReducePyScalers.py" as "build/test_ReducePyScalers.py"
Install file: "src/reduce/ReducePyScalersTable/test_ReducePyScalersTable.py" as "build/test_ReducePyScalersTable.py"
Install file: "tests/py_unit/test_always_true.py" as "build/test_always_true.py"
Install file: "src/map/MapPyBeamMaker/test_beam.py" as "build/test_beam.py"
Install file: "tests/py_unit/test_cdb_mockup.py" as "build/test_cdb_mockup.py"
Install file: "tests/py_unit/test_configuration.py" as "build/test_configuration.py"
Install file: "tests/py_unit/test_core_go.py" as "build/test_core_go.py"
Install file: "tests/style/test_cpp_style.py" as "build/test_cpp_style.py"
g++ -o tests/cpp_unit/Utils/MAUSEvaluatorTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Utils/MAUSEvaluatorTest.cc
g++ -o tests/cpp_unit/Utils/JsonWrapperTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Utils/JsonWrapperTest.cc
g++ -o tests/cpp_unit/Utils/CppErrorHandlerTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Utils/CppErrorHandlerTest.cc
g++ -o tests/cpp_unit/BeamTools/BTFieldConstructorTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/BeamTools/BTFieldConstructorTest.cc
g++ -o tests/cpp_unit/BeamTools/BTTrackerTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/BeamTools/BTTrackerTest.cc
g++ -o tests/cpp_unit/BeamTools/BTMultipoleTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/BeamTools/BTMultipoleTest.cc
g++ -o tests/cpp_unit/BeamTools/BTSolenoidTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/BeamTools/BTSolenoidTest.cc
g++ -o tests/cpp_unit/DetModel/SciFiPlaneTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/DetModel/SciFiPlaneTest.cc
g++ -o tests/cpp_unit/DetModel/DoubletFiberParamTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/DetModel/DoubletFiberParamTest.cc
g++ -o tests/cpp_unit/FieldTools/SectorMagneticFieldMapTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/FieldTools/SectorMagneticFieldMapTest.cc
g++ -o tests/cpp_unit/FieldTools/SectorFieldTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/FieldTools/SectorFieldTest.cc
g++ -o tests/cpp_unit/JsonCppStreamer/RStreamTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/JsonCppStreamer/RStreamTest.cc
g++ -o tests/cpp_unit/JsonCppStreamer/OneArgManipTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/JsonCppStreamer/OneArgManipTest.cc
tests/cpp_unit/JsonCppStreamer/OneArgManipTest.cc: In member function 'void tmprstream::operator=(const tmprstream&)':
tests/cpp_unit/JsonCppStreamer/OneArgManipTest.cc:37: warning: format not a string literal and no format arguments
tests/cpp_unit/JsonCppStreamer/OneArgManipTest.cc:37: warning: format not a string literal and no format arguments
g++ -o tests/cpp_unit/JsonCppStreamer/IRStreamTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/JsonCppStreamer/IRStreamTest.cc
g++ -o tests/cpp_unit/JsonCppStreamer/ORStreamTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/JsonCppStreamer/ORStreamTest.cc
g++ -o tests/cpp_unit/Optics/TransferMapTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Optics/TransferMapTest.cc
g++ -o tests/cpp_unit/Optics/CovarianceMatrixTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Optics/CovarianceMatrixTest.cc
g++ -o tests/cpp_unit/Optics/PhaseSpaceVectorTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Optics/PhaseSpaceVectorTest.cc
g++ -o tests/cpp_unit/JsonCppProcessors/SpillProcessorTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/JsonCppProcessors/SpillProcessorTest.cc
g++ -o tests/cpp_unit/JsonCppProcessors/ObjectProcessorTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/JsonCppProcessors/ObjectProcessorTest.cc
g++ -o tests/cpp_unit/JsonCppProcessors/PrimitivesProcessorsTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/JsonCppProcessors/PrimitivesProcessorsTest.cc
g++ -o tests/cpp_unit/JsonCppProcessors/ObjectMapProcessorsTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/JsonCppProcessors/ObjectMapProcessorsTest.cc
g++ -o tests/cpp_unit/JsonCppProcessors/ArrayProcessorsTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/JsonCppProcessors/ArrayProcessorsTest.cc
In file included from tests/cpp_unit/JsonCppProcessors/ArrayProcessorsTest.cc:19:
third_party/install/include/gtest/gtest.h: In function 'testing::AssertionResult testing::internal::CmpHelperEQ(const char*, const char*, const T1&, const T2&) [with T1 = unsigned int, T2 = int]':
third_party/install/include/gtest/gtest.h:1300:   instantiated from 'static testing::AssertionResult testing::internal::EqHelper<lhs_is_null_literal>::Compare(const char*, const char*, const T1&, const T2&) [with T1 = size_t, T2 = int, bool lhs_is_null_literal = false]'
tests/cpp_unit/JsonCppProcessors/ArrayProcessorsTest.cc:73:   instantiated from here
third_party/install/include/gtest/gtest.h:1263: warning: comparison between signed and unsigned integer expressions
g++ -o tests/cpp_unit/Config/MiceModuleTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Config/MiceModuleTest.cc
g++ -o tests/cpp_unit/DataStructure/ReconEventTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/DataStructure/ReconEventTest.cc
g++ -o tests/cpp_unit/DataStructure/SpillTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/DataStructure/SpillTest.cc
g++ -o tests/cpp_unit/DataStructure/MCBranchTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/DataStructure/MCBranchTest.cc
g++ -o tests/cpp_unit/Simulation/MAUSEventActionTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Simulation/MAUSEventActionTest.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from tests/cpp_unit/Simulation/MAUSEventActionTest.cc:20:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o tests/cpp_unit/Simulation/MAUSSteppingActionTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Simulation/MAUSSteppingActionTest.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from tests/cpp_unit/Simulation/MAUSSteppingActionTest.cc:23:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o tests/cpp_unit/Simulation/MAUSPrimaryGeneratorActionTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Simulation/MAUSPrimaryGeneratorActionTest.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from tests/cpp_unit/Simulation/MAUSPrimaryGeneratorActionTest.cc:25:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o tests/cpp_unit/Simulation/MAUSGeant4ManagerTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Simulation/MAUSGeant4ManagerTest.cc
In file included from tests/cpp_unit/Simulation/MAUSGeant4ManagerTest.cc:21:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o tests/cpp_unit/Simulation/VirtualPlaneTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Simulation/VirtualPlaneTest.cc
In file included from ./tests/cpp_unit/Simulation/MAUSGeant4ManagerTest.cc:21,
                 from tests/cpp_unit/Simulation/VirtualPlaneTest.cc:36:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o tests/cpp_unit/Simulation/MAUSTrackingActionTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Simulation/MAUSTrackingActionTest.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from tests/cpp_unit/Simulation/MAUSTrackingActionTest.cc:24:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o tests/cpp_unit/EngModel/MiceModToG4SolidTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/EngModel/MiceModToG4SolidTest.cc
g++ -o tests/cpp_unit/Maths/VectorTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Maths/VectorTest.cc
g++ -o tests/cpp_unit/Maths/PolynomialVectorTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Maths/PolynomialVectorTest.cc
g++ -o tests/cpp_unit/Maths/SymmetricMatrixTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Maths/SymmetricMatrixTest.cc
g++ -o tests/cpp_unit/Maths/ComplexTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Maths/ComplexTest.cc
g++ -o tests/cpp_unit/Maths/MatrixTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Maths/MatrixTest.cc
g++ -o tests/cpp_unit/Maths/HermitianMatrixTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Maths/HermitianMatrixTest.cc
g++ -o tests/cpp_unit/Interface/MathUtilsTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Interface/MathUtilsTest.cc
g++ -o tests/cpp_unit/Interface/STLUtilsTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Interface/STLUtilsTest.cc
g++ -o tests/cpp_unit/Interface/SquealTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Interface/SquealTest.cc
g++ -o tests/cpp_unit/Interface/DifferentiatorTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Interface/DifferentiatorTest.cc
g++ -o tests/cpp_unit/Interface/MeshTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Interface/MeshTest.cc
g++ -o tests/cpp_unit/Interface/TriangularMeshTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Interface/TriangularMeshTest.cc
g++ -o tests/cpp_unit/Interface/SqueakTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Interface/SqueakTest.cc
g++ -o tests/cpp_unit/Interface/dataCardsTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/Interface/dataCardsTest.cc
g++ -o tests/cpp_unit/MAUSUnitTest.o -c -Wall -Dlong32='int' "-Dlong64='long long'" -O3 -m32 -pthread -rdynamic -Ithird_party/install/include -Ithird_party/install/include/python2.7 -Ithird_party/install/include/root -Isrc/legacy -Isrc/common_cpp -Ithird_party/build/root_v5.30.03/include -Ithird_party/build/geant4.9.2.p04/include -I. tests/cpp_unit/MAUSUnitTest.cc
In file included from ./src/common_cpp/Simulation/MAUSGeant4Manager.hh:21,
                 from tests/cpp_unit/MAUSUnitTest.cc:42:
third_party/build/geant4.9.2.p04/include/G4RunManager.hh: In member function 'void G4RunManager::SetRandomNumberStoreDir(G4String)':
third_party/build/geant4.9.2.p04/include/G4RunManager.hh:352: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result
g++ -o tests/cpp_unit/test_cpp_unit -pthread tests/cpp_unit/Utils/MAUSEvaluatorTest.o tests/cpp_unit/Utils/JsonWrapperTest.o tests/cpp_unit/Utils/CppErrorHandlerTest.o tests/cpp_unit/BeamTools/BTFieldConstructorTest.o tests/cpp_unit/BeamTools/BTTrackerTest.o tests/cpp_unit/BeamTools/BTMultipoleTest.o tests/cpp_unit/BeamTools/BTSolenoidTest.o tests/cpp_unit/DetModel/SciFiPlaneTest.o tests/cpp_unit/DetModel/DoubletFiberParamTest.o tests/cpp_unit/FieldTools/SectorMagneticFieldMapTest.o tests/cpp_unit/FieldTools/SectorFieldTest.o tests/cpp_unit/JsonCppStreamer/RStreamTest.o tests/cpp_unit/JsonCppStreamer/OneArgManipTest.o tests/cpp_unit/JsonCppStreamer/IRStreamTest.o tests/cpp_unit/JsonCppStreamer/ORStreamTest.o tests/cpp_unit/Optics/TransferMapTest.o tests/cpp_unit/Optics/CovarianceMatrixTest.o tests/cpp_unit/Optics/PhaseSpaceVectorTest.o tests/cpp_unit/JsonCppProcessors/SpillProcessorTest.o tests/cpp_unit/JsonCppProcessors/ObjectProcessorTest.o tests/cpp_unit/JsonCppProcessors/PrimitivesProcessorsTest.o tests/cpp_unit/JsonCppProcessors/ObjectMapProcessorsTest.o tests/cpp_unit/JsonCppProcessors/ArrayProcessorsTest.o tests/cpp_unit/Config/MiceModuleTest.o tests/cpp_unit/DataStructure/ReconEventTest.o tests/cpp_unit/DataStructure/SpillTest.o tests/cpp_unit/DataStructure/MCBranchTest.o tests/cpp_unit/Simulation/MAUSEventActionTest.o tests/cpp_unit/Simulation/MAUSSteppingActionTest.o tests/cpp_unit/Simulation/MAUSPrimaryGeneratorActionTest.o tests/cpp_unit/Simulation/MAUSGeant4ManagerTest.o tests/cpp_unit/Simulation/VirtualPlaneTest.o tests/cpp_unit/Simulation/MAUSTrackingActionTest.o tests/cpp_unit/EngModel/MiceModToG4SolidTest.o tests/cpp_unit/Maths/VectorTest.o tests/cpp_unit/Maths/PolynomialVectorTest.o tests/cpp_unit/Maths/SymmetricMatrixTest.o tests/cpp_unit/Maths/ComplexTest.o tests/cpp_unit/Maths/MatrixTest.o tests/cpp_unit/Maths/HermitianMatrixTest.o tests/cpp_unit/Interface/MathUtilsTest.o tests/cpp_unit/Interface/STLUtilsTest.o tests/cpp_unit/Interface/SquealTest.o tests/cpp_unit/Interface/DifferentiatorTest.o tests/cpp_unit/Interface/MeshTest.o tests/cpp_unit/Interface/TriangularMeshTest.o tests/cpp_unit/Interface/SqueakTest.o tests/cpp_unit/Interface/dataCardsTest.o tests/cpp_unit/MAUSUnitTest.o -Lthird_party/build/root_v5.30.03/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_py -Lbuild -Lthird_party/install/lib -Lthird_party/build/geant4.9.2.p04/lib/Linux-g++ -Lsrc/common_cpp -ljson -lstdc++ -lpython2.7 -lgsl -lgslcblas -lGpad -lHist -lGraf -lGraf3d -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lRIO -lNet -lThread -lCore -lCint -lm -ldl -lCint -lCore -lGpad -lGraf -lGraf3d -lMathCore -lMinuit -lHist -lMatrix -lSpectrum -lNet -lPhysics -lPostscript -lRIO -lRint -lThread -lTree -ldl -lm -lpthread -lCLHEP -lCLHEP -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lG4FR -lG4RayTracer -lG4Tree -lG4UIGAG -lG4UIbasic -lG4UIcommon -lG4VRML -lG4baryons -lG4biasing -lG4bosons -lG4brep -lG4csg -lG4cuts -lG4decay -lG4detector -lG4detutils -lG4detscorer -lG4digits -lG4emlowenergy -lG4empolar -lG4emstandard -lG4emutils -lG4error_propagation -lG4event -lG4geomBoolean -lG4geombias -lG4geomdivision -lG4geometrymng -lG4geomtext -lG4gflash -lG4globman -lG4graphics_reps -lG4had_lll_fis -lG4had_mod_man -lG4had_mod_util -lG4had_neu_hp -lG4had_preequ_exciton -lG4had_string_diff -lG4had_string_frag -lG4had_string_man -lG4had_theo_max -lG4hadronic_HE -lG4hadronic_LE -lG4hadronic_RPG -lG4hadronic_ablation -lG4hadronic_abrasion -lG4hadronic_bert_cascade -lG4hadronic_binary -lG4had_im_r_matrix -lG4hadronic_deex_fermi_breakup -lG4hadronic_deex_handler -lG4hadronic_deex_evaporation -lG4hadronic_deex_fission -lG4hadronic_deex_gem_evaporation -lG4hadronic_deex_management -lG4hadronic_deex_multifragmentation -lG4hadronic_deex_photon_evaporation -lG4hadronic_deex_util -lG4hadronic_em_dissociation -lG4hadronic_hetcpp_evaporation -lG4hadronic_hetcpp_utils -lG4hadronic_incl_cascade -lG4hadronic_interface_ci -lG4hadronic_body_ci -lG4hadronic_iso -lG4hadronic_leading_particle -lG4hadronic_mgt -lG4hadronic_proc -lG4hadronic_qgstring -lG4hadronic_qmd -lG4hadronic_radioactivedecay -lG4hadronic_stop -lG4hadronic_util -lG4hadronic_xsect -lG4hepnumerics -lG4hits -lG4intercoms -lG4ions -lG4leptons -lG4magneticfield -lG4materials -lG4mctruth -lG4mesons -lG4modeling -lG4muons -lG4navigation -lG4optical -lG4parameterisation -lG4partadj -lG4partman -lG4partutils -lG4phys_builders -lG4had_muon_nuclear -lG4hadronic_coherent_elastic -lG4emhighenergy -lG4phys_lists -lG4procman -lG4readout -lG4run -lG4scoring -lG4shortlived -lG4specsolids -lG4track -lG4tracking -lG4transportation -lG4visHepRep -lG4visXXX -lG4vis_management -lG4volumes -lG4xrays -lrecpack -lgtest -lMDunpack -lrecpack -lMausCpp
Install file: "tests/cpp_unit/test_cpp_unit" as "build/test_cpp_unit"
Install file: "tests/py_unit/test_cpp_unit.py" as "build/test_cpp_unit.py"
Install file: "tests/py_unit/test_docstore/__init__.py" as "build/test_docstore/__init__.py"
Install file: "tests/py_unit/test_docstore/test_DocumentStore.py" as "build/test_docstore/test_DocumentStore.py"
Install file: "tests/py_unit/test_docstore/test_DocumentStoreBase.py" as "build/test_docstore/test_DocumentStoreBase.py"
Install file: "tests/py_unit/test_docstore/test_InMemoryDocumentStore.py" as "build/test_docstore/test_InMemoryDocumentStore.py"
Install file: "tests/py_unit/test_error_handler.py" as "build/test_error_handler.py"
Install file: "tests/py_unit/test_evaluator.py" as "build/test_evaluator.py"
Install file: "tests/py_unit/test_framework/__init__.py" as "build/test_framework/__init__.py"
Install file: "tests/py_unit/test_framework/test_utilities.py" as "build/test_framework/test_utilities.py"
Install file: "tests/py_unit/test_framework/test_workers.py" as "build/test_framework/test_workers.py"
Install file: "tests/py_unit/test_geometry/test_cad_import.py" as "build/test_geometry/test_cad_import.py"
Install file: "tests/py_unit/test_geometry/test_config_reader.py" as "build/test_geometry/test_config_reader.py"
Install file: "tests/py_unit/test_geometry/test_gdml_formatter.py" as "build/test_geometry/test_gdml_formatter.py"
Install file: "tests/py_unit/test_geometry/test_gdml_packer.py" as "build/test_geometry/test_gdml_packer.py"
Install file: "tests/py_unit/test_geometry/test_gdml_to_cdb.py" as "build/test_geometry/test_gdml_to_cdb.py"
Install file: "tests/py_unit/test_geometry/test_gdml_to_maus_module.py" as "build/test_geometry/test_gdml_to_maus_module.py"
Install file: "tests/py_unit/test_mauscelery/test_mausprocess.py" as "build/test_mauscelery/test_mausprocess.py"
Install file: "tests/py_unit/test_mauscelery/test_mausworker.py" as "build/test_mauscelery/test_mausworker.py"
Install file: "tests/py_unit/test_mauscelery/test_state.py" as "build/test_mauscelery/test_state.py"
Install file: "tests/py_unit/test_mauscelery/test_tasks.py" as "build/test_mauscelery/test_tasks.py"
Install file: "tests/py_unit/test_numpy.py" as "build/test_numpy.py"
Install file: "tests/style/test_python_style.py" as "build/test_python_style.py"
Install file: "tests/py_unit/test_root_plot.py" as "build/test_root_plot.py"
Install file: "tests/py_unit/test_schema_schema.py" as "build/test_schema_schema.py"
Install file: "tests/py_unit/test_spill_schema.py" as "build/test_spill_schema.py"
Install file: "tests/py_unit/test_xml_libs.py" as "build/test_xml_libs.py"
scons: done building targets.
Your current directory is:
/home/matt/maus_littlefield

Your MAUS_ROOT_DIR is:
/home/matt/maus_littlefield

These should agree
Should just always return true ... ok
Should just always return true ... ok
Should put in an errors branch ... ok
Should make the detector branches ... ok
Should just always return true ... ok
Should just always return true ... ok
Should put in an errors branch ... ok
Should make the detector branches ... ok
Check birth with default configuration ... Going to search for run 02873 data files in /home/matt/maus_littlefield/src/input/InputCppDAQData
Trying to add file 02873.003 from /home/matt/maus_littlefield/src/input/InputCppDAQData
File 02873.003 is added
ok
Test a single event ... WARNING in MDequipMap::MDequipMap() : Trying to create a multiple instances of a static singleton class
 --- Equipment Map Dump --- 
80 0xa50bd70 VLSB_C 0xa50bd10
102 0xa289188 V1290 0xa514ba8
111 0xa21ed20 V830 0xa514b38
120 0xa14ddb0 V1724 0xa511ef0
121 0xa299f60 V1731 0xa08a1a0
132 0xa51f3f0 VLSB 0xa51f380
141 0xa28ddc8 DBB 0xa515050
Equipment Map count : 2
Going to search for run 02873 data files in /home/matt/maus_littlefield/src/input/InputCppDAQData
Trying to add file 02873.003 from /home/matt/maus_littlefield/src/input/InputCppDAQData
File 02873.003 is added
ERROR : InputCppDAQData is a base imput class and can not be used to access the DAQ data!
*** Use InputCppDAQOfflineData or InputCppDAQOnlineData instead. ***

ok
Check birth with default configuration ... WARNING in MDequipMap::MDequipMap() : Trying to create a multiple instances of a static singleton class
 --- Equipment Map Dump --- 
80 0xa50bd70 VLSB_C 0xa50bd10
102 0xa289188 V1290 0xa514ba8
111 0xa21ed20 V830 0xa514b38
120 0xa14ddb0 V1724 0xa511ef0
121 0xa299f60 V1731 0xa08a1a0
132 0xa51f3f0 VLSB 0xa51f380
141 0xa28ddc8 DBB 0xa515050
Equipment Map count : 3
Going to search for run 02873 data files in /home/matt/maus_littlefield/src/input/InputCppDAQData
Trying to add file 02873.003 from /home/matt/maus_littlefield/src/input/InputCppDAQData
File 02873.003 is added
ok
Test reading the whole file ... WARNING in MDequipMap::MDequipMap() : Trying to create a multiple instances of a static singleton class
 --- Equipment Map Dump --- 
80 0xa50bd70 VLSB_C 0xa50bd10
102 0xa289188 V1290 0xa514ba8
111 0xa21ed20 V830 0xa514b38
120 0xa14ddb0 V1724 0xa511ef0
121 0xa299f60 V1731 0xa08a1a0
132 0xa51f3f0 VLSB 0xa51f380
141 0xa28ddc8 DBB 0xa515050
Equipment Map count : 4
Going to search for run 02873 data files in /home/matt/maus_littlefield/src/input/InputCppDAQData
Trying to add file 02873.003 from /home/matt/maus_littlefield/src/input/InputCppDAQData
File 02873.003 is added
WARNING : The first event is not a START_OF_RUN. Spill count and Event count not accurate. 
++++ End of file 02873.003  ++++
ok
Test a single event ... WARNING in MDequipMap::MDequipMap() : Trying to create a multiple instances of a static singleton class
 --- Equipment Map Dump --- 
80 0xa50bd70 VLSB_C 0xa50bd10
102 0xa289188 V1290 0xa514ba8
111 0xa21ed20 V830 0xa514b38
120 0xa14ddb0 V1724 0xa511ef0
121 0xa299f60 V1731 0xa08a1a0
132 0xa51f3f0 VLSB 0xa51f380
141 0xa28ddc8 DBB 0xa515050
Equipment Map count : 5
Going to search for run 02873 data files in /home/matt/maus_littlefield/src/input/InputCppDAQData
Trying to add file 02873.003 from /home/matt/maus_littlefield/src/input/InputCppDAQData
File 02873.003 is added
WARNING : The first event is not a START_OF_RUN. Spill count and Event count not accurate. 
ok
Check that we can birth and death properly ... ok
Try saving a few standard events ... ok
Test runnig forever by trying to get 10000 empty documents ... ok
Read 100 events only ... ok
Test to make sure that if the input is done spitting out documents, then you can't get more documents from it ... ok
test bad file content ... ok
test internal counter gt ... ok
test internal counter lt ... ok
Test that birth reads in datacards okay for case of gzip and raw json ... ok
test what happens if there is one line with some spaces ... ok
test read 100 events ... ok
test trying to read twice gives nothing ... ok
test bad input number of spills ... ok
should be able to generate 0 events (and return nothing) ... ok
test generate 100 events ... ok
test_empty (test_MapCppPrint.MapCppPrintTestCase) ... ok
Check we get an error for bad input to birth ... ok
Check mapper runs for empty string, returning an error ... ok
Check mapper runs for mc with wrong type, returning an error ... ok
Check mapper runs for mc good. Check it tracks primaries by testing ... ok
Check mapper runs for no mc string, returning an error ... ok
Call test_visualisation ... .
----------------------------------------------------------------------
Ran 1 test in 0.974s

OK
ok
Call test_visualisation_no_event ... .
----------------------------------------------------------------------
Ran 1 test in 0.957s

OK
ok
Check can handle empty configuration ... ok
Check birth with default configuration ... ok
Check that nothing happens in absence of data ... ok
Test MapCppTOFDigits process method ... ok
Test to make sure death occurs ... ok
Test of the process function ... ok
Check against configuration is empty ... ok
Check that birth works properly ... ok
Check that against data stream is empty ... ok
Check MapCppTOFSlabHits process function ... ok
Check against configuration is empty ... ok
Check can handle empty spill ... ok
Check for case where we have no data ... ok
Check the MapCppTOFSpacePoints process function ... ok
Test to make sure death occurs ... ok
Test of the process function ... ok
Test to make sure death occurs ... ok
Test of the process function ... ok
Check that the birth goes okay ... ok
Check that we set the binomial variables; throw an error if binomial ... ok
Check that we set the seed, particle generator correctly ... ok
Check that we throw an error if particle generator unknown ... ok
Check that we can birth in file format ... ok
Check overall that process works okay ... ok
Check that we throw an error if the spill is bad ... ok
Check that we sample from beams with large weight in binomial mode ... ok
Check that we sample from the correct beam for each particle when in ... ok
Check that we sample from beams with large weight in ovewrwrite mode ... ok
Check that we process an input file correctly ... ok
Check that we append a random number of empty primaries within allowed ... ok
Check that we append correct number of empty primaries in counter mode ... ok
Check that we generate empty primaries for each existing particle in ... ok
Check against empty configuration ... ok
Check that birth works properly ... ok
Check that against data stream is empty ... ok
Check MapPyCkov process function ... ok
Check against empty configuration ... ok
Check that birth works properly ... ok
Check that against data stream is empty ... ok
Check MapPyCkov process function ... ok
test_document (test_MapPyDoNothing.MapPyDoNothingTestCase) ... ok
test_empty (test_MapPyDoNothing.MapPyDoNothingTestCase) ... ok
a test ... ok
Test appending a worker that has a birth function with a ... ok
Test appending a worker that has a death function with a ... ok
Test appending a worker that has a process function with a ... ok
Test appending a worker that has no birth function. ... ok
Test appending a worker that has no death function. ... ok
Test appending a worker that has no process function. ... ok
Test calling birth and check that all workers have their ... ok
Test calling birth where one worker's birth function ... Exception MapPyGroup.MapPyGroupDeathException: MapPyGroupDeathException() in <bound method MapPyGroup.__del__ of <MapPyGroup.MapPyGroup instance at 0xccccc4c>> ignored
ok
Test calling birth where one worker's birth function ... ok
Test calling death where one worker's birth function ... ok
Test calling birth where one worker's birth function fails. ... ok
Test calling death and check all workers have their death ... ok
Test calling death where one worker's death function ... ok
Test calling death where one worker's death function ... Exception MapPyGroup.MapPyGroupDeathException: MapPyGroupDeathException() in <bound method MapPyGroup.__del__ of <MapPyGroup.MapPyGroup instance at 0xccccccc>> ignored
ok
Test calling death where one worker's death function fails. ... ok
Test calling __del__ and check all workers have their death ... ok
Test get_worker_names. ... ok
Test with default constructor where group contains 0 workers. ... ok
Test with constructor given an initial list of workers. ... ok
Test constructor when it's given a non-list. ... ok
Test calling process and check that all workers have their ... ok
test_empty (test_MapPyPrint.MapPyPrintTestCase) ... ok
test_return (test_MapPyPrint.MapPyPrintTestCase) ... ok
test_empty (test_MapPyRemoveTracks.MapPyRemoveTracksTestCase) ... ok
test_no_mc_branch (test_MapPyRemoveTracks.MapPyRemoveTracksTestCase) ... ok
test_remove_non_muon (test_MapPyRemoveTracks.MapPyRemoveTracksTestCase) ... ok
test_removes_tracks (test_MapPyRemoveTracks.MapPyRemoveTracksTestCase) ... ok
Check against different issues ... WARNING in MDequipMap::MDequipMap() : Trying to create a multiple instances of a static singleton class
ok
Check that we can birth and death properly ... Couldn't open ROOT TFile as no filename or open mode given
ok
Check that if passed a bad event, code fails gracefully ... ok
Try saving a few standard events ... ok
Test saving one event ... ok
Test "birth" if given an absolute path to a directory as ... ok
Test "birth" if given a file name as a directory. ... ok
Check default configuration after "birth" is called. ... ok
Test "birth" with "output_file_extension". ... ok
Test "birth" with "output_file_name". ... ok
Test "birth" with "null" "output_file_directory". ... ok
Test "birth" if given a relative path to a directory as ... ok
Test "save" with 3 JSON documents. ... ok
Test "save" with 3 JSON documents using auto-numbering.. ... ok
Test "birth" if given an absolute path to a directory as ... ok
Test "birth" if given a file name as an image directory. ... ok
Check default configuration after "birth" is called. ... ok
Check default configuration after "birth" is called. ... ok
Test "birth" if given a relative path to a directory as ... ok
Test "save" with a JSON document with no "image" "data". ... ok
Test "save" with a JSON document with no "tag". ... ok
Test "save" with a JSON document with no "image_type". ... ok
Test "save" with 3 JSON documents each an "image". ... ok
Test "save" with a JSON document with no "image". ... ok
Test OutputPyJson loads a gzip file from datacards correctly. ... ok
Test OutputPyJson loads a text file from datacards correctly. ... ok
Test OutputPyJson handles exceptions on bad death(). ... ok
Try saving one spill using compressed gzip ... ok
Try saving one spill in uncompressed fashion ... ok
Check default configuration after "birth" is called. ... TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hLight (Potential memory leak).
ok
Test configuration when "birth" is called with a supported ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof_A
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof_B
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: charge
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: time
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: hPMu
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: hPPi
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: PE_MOM
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hLight (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof_A
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: tof_A (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof_B
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: tof_B (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: htof (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: charge
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hPMT0 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hPMT1 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hPMT2 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hPMT3 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hPMT4 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hPMT5 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hPMT6 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hPMT7 (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: time
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: harr_time0 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: harr_time1 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: harr_time2 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: harr_time3 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: harr_time4 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: harr_time5 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: harr_time6 (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: harr_time7 (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: hPMu
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hPMu (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: hPPi
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hPPi (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: PE_MOM
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hLight (Potential memory leak).
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hLight (Potential memory leak).
ok
Test "process" with a bad JSON document as an argument string. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof_A
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof_B
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: charge
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: time
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: hPMu
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: hPPi
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: PE_MOM
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hLight (Potential memory leak).
ok
Test "process" with a JSON document with no "digits" entry. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof_A
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof_B
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: tof
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: charge
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: time
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: hPMu
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: hPPi
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: PE_MOM
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: hLight (Potential memory leak).
ok
Test "process" with a JSON document with a "digits" entry, ... ok
Test configuration when birth is called with histogram ... ok
Test configuration when "birth" is called with an unsupported ... ok
Check default configuration after "birth" is called. ... ok
Test configuration when "birth" is called with a supported ... ok
Test "process" with a JSON document with an empty "digits" ... ok
Test "process" with a JSON document which is an end_of_run. ... ok
Test "process" with a bad JSON document as an argument string. ... ok
Test "process" with multiple JSON documents each with multiple ... ok
Test "process" with multiple JSON documents each with multiple ... ok
Test "process" with a JSON document with a "digits" entry but ... ok
Test "process" with a JSON document with no "digits" entry. ... ok
Test "process" with a JSON document with a "digits" entry and ... ok
Test "process" with a JSON document with a "digits" entry and ... ok
Test "process" can create PDF images. ... ok
Test "process" can create PNG images. ... ok
Test "process" can create PS images. ... ok
Test "process" can create RAW images. ... ok
Test "process" can create RGBA images. ... ok
Test "process" can create SVG images. ... ok
Test "process" can create SVGZ images. ... ok
Test "process" with a JSON document with a "digits" entry, ... ok
Test configuration when birth is called with histogram ... ok
Test configuration when "birth" is called with an unsupported ... ok
Check default configuration after "birth" is called. ... ok
Test configuration when "birth" is called with a supported ... ok
Test "process" with a JSON document that causes an error to ... ok
Test "process" with a bad JSON document as an argument string. ... ok
Test "process" with multiple JSON documents and with ... ok
Test "process" can create PDF images. ... ok
Test "process" can create PNG images. ... ok
Test "process" with multiple JSON documents. ... ok
Test "process" can create PS images. ... ok
Test "process" can create RAW images. ... ok
Test "process" can create RGBA images. ... ok
Test "process" can create SVG images. ... ok
Test "process" can create SVGZ images. ... ok
Test configuration when birth is called with histogram ... TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test configuration when "birth" is called with an unsupported ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Check default configuration after "birth" is called. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test configuration when default "root_batch_mode" is used. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test configuration when "birth" is called with a supported ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" can create EPS images. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" with a JSON document that causes an error to ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" can create GIF images. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" with a bad JSON document as an argument string. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" can create JPEG images. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" can create JPG images. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" with multiple JSON documents and with ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" can create PDF images. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" can create PNG images. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" with multiple JSON documents. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" can create PS images. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Test "process" can create SVG images. ... TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
TROOT::Append:0: RuntimeWarning: Replacing existing TH1: histogram (Potential memory leak).
TCanvas::Constructor:0: RuntimeWarning: Deleting canvas with same name: canvas
ok
Check add function works ... ok
Check add func never makes members have a length longer than 10 ... ok
Check birth() function works when it should ... ok
Check birth returns false if handed a nonsense json_config ... ok
Check dump function works when it should ... ok
Check dump function works when no data is present ... ok
Test the constructor of the reducer class ... ok
Test the process function using a small amount of real json data ... ok
Test that process returns the json doc ... ok
Test that process returns the json doc ... ok
Test that process returns the json doc ... ok
Test "process" with a JSON document with a "daq_data" ... ok
Test "process" with a JSON document which is an end_of_run. ... ok
Test get_scalers. ... ok
Test "process" with a bad JSON document as an argument string. ... ok
Test "process" with a JSON document with no "ch0". ... ok
Test "process" with a JSON document with no "channels". ... ok
Test "process" with a JSON document with no "daq_data". ... ok
Test "process" with a JSON document with no "V830". ... ok
Test "process" with multiple JSON documents so to cycle ... ok
Test "process" with a spill. ... ok
Test birth where a recent_scalers_window is given. ... ok
Test add_value and getters ... ok
Test add_value and clear. ... ok
Check default values. ... ok
Test setting a new window in the constructor. ... ok
Test setting a new window. ... ok
test_always_true (test_always_true.AlwaysTrueTestCase) ... ok
Overall check birth works ... ok
Beam mean setup ... ok
Beam longitudinal - gaussian mode ... ok
Beam longitudinal - sawtooth/uniform time distributions ... ok
Beam longitudinal - twiss mode ... ok
Beam longitudinal - bad user input ... ok
Beam longitudinal - pencil mode ... ok
Test __birth_particle_generator for counter mode ... ok
Test __birth_particle_generator for weighting mode ... ok
Test __birth_particle_generator for random number assignment ... ok
Test __birth_reference_particle ... Traceback (most recent call last):
  File "/home/matt/maus_littlefield/build/beam.py", line 189, in __birth_reference_particle
    beam_definition['reference'], 0)
  File "/home/matt/maus_littlefield/third_party/install/lib/python2.7/site-packages/xboa/Hit.py", line 138, in new_from_maus_object
    for maus_xyz, value in maus_dict[maus_name].iteritems():
AttributeError: 'int' object has no attribute 'iteritems'
ok
Beam transverse - longitudinal coupling ... ok
Beam transverse constant solenoid mode ... ok
Test for bad input ... ok
Test for pencil beam ... ok
Beam transverse Penn mode ... ok
Beam transverse twiss mode ... ok
Check function that throws a particle - for gaussian distribution ... ok
Check function that throws a particle - for pencil beam ... ok
Check function that throws a particle - for sawtooth time dist ... ok
Check function that throws a particle - for uniform time dist ... ok
Check function that converts from an array to a primary particle ... ok
Check function that converts from an array to a primary particle ... ok
Check we generate the seed correctly ... ok
Test parsing bool from command line to configuration ... ok
Test parsing bool from command line to configuration ... ok
Test parsing number from command line to configuration ... ok
Test parsing string from command line to configuration ... ok
Check that we load configuration defaults correctly ... ok
Test that we can create a configuration value from an input file ... ok
Test that we can overwrite configuration value from an input file ... ok
Test conversion from string to boolean type ... ok
Check that the version is defined correctly ... ok
Check that Go handles command line args switch correctly. ... usage: nosetests [-h] [--Calib_Events_Only CALIB_EVENTS_ONLY]
                 [--DAQ_cabling_file DAQ_CABLING_FILE]
                 [--Do_V1724_Zero_Suppression DO_V1724_ZERO_SUPPRESSION]
                 [--Do_V1731_Zero_Suppression DO_V1731_ZERO_SUPPRESSION]
                 [--Do_VLSB_C_Zero_Suppression DO_VLSB_C_ZERO_SUPPRESSION]
                 [--Do_VLSB_Zero_Suppression DO_VLSB_ZERO_SUPPRESSION]
                 [--Enable_CKOV ENABLE_CKOV]
                 [--Enable_DBB_Unpacking ENABLE_DBB_UNPACKING]
                 [--Enable_EMR ENABLE_EMR] [--Enable_KL ENABLE_KL]
                 [--Enable_TOF ENABLE_TOF]
                 [--Enable_V1290_Unpacking ENABLE_V1290_UNPACKING]
                 [--Enable_V1724_Unpacking ENABLE_V1724_UNPACKING]
                 [--Enable_V1731_Unpacking ENABLE_V1731_UNPACKING]
                 [--Enable_V830_Unpacking ENABLE_V830_UNPACKING]
                 [--Enable_VLSB_C_Unpacking ENABLE_VLSB_C_UNPACKING]
                 [--Enable_VLSB_Unpacking ENABLE_VLSB_UNPACKING]
                 [--Enable_t0_correction ENABLE_T0_CORRECTION]
                 [--Enable_timeWalk_correction ENABLE_TIMEWALK_CORRECTION]
                 [--Enable_triggerDelay_correction ENABLE_TRIGGERDELAY_CORRECTION]
                 [--Number_of_DAQ_Events NUMBER_OF_DAQ_EVENTS]
                 [--Phys_Events_Only PHYS_EVENTS_ONLY]
                 [--SciFiClustExcept SCIFICLUSTEXCEPT]
                 [--SciFiFiberConvFactor SCIFIFIBERCONVFACTOR]
                 [--SciFiFiberDecayConst SCIFIFIBERDECAYCONST]
                 [--SciFiFiberMirrorEff SCIFIFIBERMIRROREFF]
                 [--SciFiFiberTransmissionEff SCIFIFIBERTRANSMISSIONEFF]
                 [--SciFiFiberTrappingEff SCIFIFIBERTRAPPINGEFF]
                 [--SciFiMUXNum SCIFIMUXNUM]
                 [--SciFiMUXTransmissionEff SCIFIMUXTRANSMISSIONEFF]
                 [--SciFiNPECut SCIFINPECUT]
                 [--SciFi_sigma_duplet SCIFI_SIGMA_DUPLET]
                 [--SciFi_sigma_tracker0_station5 SCIFI_SIGMA_TRACKER0_STATION5]
                 [--SciFi_sigma_triplet SCIFI_SIGMA_TRIPLET]
                 [--SciFi_sigma_z SCIFI_SIGMA_Z]
                 [--SciFiadcFactor SCIFIADCFACTOR]
                 [--SciFinPlanes SCIFINPLANES]
                 [--SciFinStations SCIFINSTATIONS]
                 [--SciFinTrackers SCIFINTRACKERS]
                 [--SciFitdcBits SCIFITDCBITS]
                 [--SciFitdcFactor SCIFITDCFACTOR]
                 [--SciFivlpcEnergyRes SCIFIVLPCENERGYRES]
                 [--SciFivlpcQE SCIFIVLPCQE]
                 [--SciFivlpcTimeRes SCIFIVLPCTIMERES]
                 [--TOF_T0_calibration_file TOF_T0_CALIBRATION_FILE]
                 [--TOF_TW_calibration_file TOF_TW_CALIBRATION_FILE]
                 [--TOF_Trigger_calibration_file TOF_TRIGGER_CALIBRATION_FILE]
                 [--TOF_cabling_file TOF_CABLING_FILE]
                 [--TOF_findTriggerPixelCut TOF_FINDTRIGGERPIXELCUT]
                 [--TOF_makeSpacePiontCut TOF_MAKESPACEPIONTCUT]
                 [--TOF_trigger_station TOF_TRIGGER_STATION]
                 [--TOFadcConversionFactor TOFADCCONVERSIONFACTOR]
                 [--TOFattenuationLength TOFATTENUATIONLENGTH]
                 [--TOFconversionFactor TOFCONVERSIONFACTOR]
                 [--TOFpmtQuantumEfficiency TOFPMTQUANTUMEFFICIENCY]
                 [--TOFpmtTimeResolution TOFPMTTIMERESOLUTION]
                 [--TOFscintLightSpeed TOFSCINTLIGHTSPEED]
                 [--TOFtdcConversionFactor TOFTDCCONVERSIONFACTOR]
                 [--V1724_Zero_Suppression_Threshold V1724_ZERO_SUPPRESSION_THRESHOLD]
                 [--V1731_Zero_Suppression_Threshold V1731_ZERO_SUPPRESSION_THRESHOLD]
                 [--VLSB_C_Zero_Suppression_Threshold VLSB_C_ZERO_SUPPRESSION_THRESHOLD]
                 [--VLSB_Zero_Suppression_Threshold VLSB_ZERO_SUPPRESSION_THRESHOLD]
                 [--accumulate_tracks ACCUMULATE_TRACKS] [--beam BEAM]
                 [--cdb_download_url CDB_DOWNLOAD_URL]
                 [--cdb_upload_url CDB_UPLOAD_URL]
                 [--charged_pion_half_life CHARGED_PION_HALF_LIFE]
                 [--configuration_file CONFIGURATION_FILE]
                 [--daq_data_file DAQ_DATA_FILE]
                 [--daq_data_path DAQ_DATA_PATH]
                 [--default_vis_colour DEFAULT_VIS_COLOUR]
                 [--doc_collection_name DOC_COLLECTION_NAME]
                 [--doc_store_class DOC_STORE_CLASS]
                 [--e_minus_vis_colour E_MINUS_VIS_COLOUR]
                 [--e_plus_vis_colour E_PLUS_VIS_COLOUR]
                 [--errors_to_json ERRORS_TO_JSON]
                 [--errors_to_stderr ERRORS_TO_STDERR]
                 [--g4_step_max G4_STEP_MAX]
                 [--gamma_vis_colour GAMMA_VIS_COLOUR]
                 [--geant4_visualisation GEANT4_VISUALISATION]
                 [--geometry_download_by GEOMETRY_DOWNLOAD_BY]
                 [--geometry_download_cleanup GEOMETRY_DOWNLOAD_CLEANUP]
                 [--geometry_download_directory GEOMETRY_DOWNLOAD_DIRECTORY]
                 [--geometry_download_id GEOMETRY_DOWNLOAD_ID]
                 [--geometry_download_run_number GEOMETRY_DOWNLOAD_RUN_NUMBER]
                 [--geometry_download_wsdl GEOMETRY_DOWNLOAD_WSDL]
                 [--geometry_upload_cleanup GEOMETRY_UPLOAD_CLEANUP]
                 [--geometry_upload_directory GEOMETRY_UPLOAD_DIRECTORY]
                 [--geometry_upload_note GEOMETRY_UPLOAD_NOTE]
                 [--geometry_upload_valid_from GEOMETRY_UPLOAD_VALID_FROM]
                 [--geometry_upload_wsdl GEOMETRY_UPLOAD_WSDL]
                 [--get_ids_create_file GET_IDS_CREATE_FILE]
                 [--get_ids_start_time GET_IDS_START_TIME]
                 [--get_ids_stop_time GET_IDS_STOP_TIME]
                 [--image_directory IMAGE_DIRECTORY]
                 [--input_json_file_name INPUT_JSON_FILE_NAME]
                 [--input_json_file_type INPUT_JSON_FILE_TYPE]
                 [--input_root_file_name INPUT_ROOT_FILE_NAME]
                 [--keep_only_muon_tracks KEEP_ONLY_MUON_TRACKS]
                 [--keep_steps KEEP_STEPS] [--keep_tracks KEEP_TRACKS]
                 [--maus_version MAUS_VERSION]
                 [--maximum_number_of_steps MAXIMUM_NUMBER_OF_STEPS]
                 [--mongodb_collection_name MONGODB_COLLECTION_NAME]
                 [--mongodb_database_name MONGODB_DATABASE_NAME]
                 [--mongodb_host MONGODB_HOST] [--mongodb_port MONGODB_PORT]
                 [--mu_minus_vis_colour MU_MINUS_VIS_COLOUR]
                 [--mu_plus_vis_colour MU_PLUS_VIS_COLOUR]
                 [--muon_half_life MUON_HALF_LIFE]
                 [--neutron_vis_colour NEUTRON_VIS_COLOUR]
                 [--on_error ON_ERROR]
                 [--output_file_directory OUTPUT_FILE_DIRECTORY]
                 [--output_json_file_name OUTPUT_JSON_FILE_NAME]
                 [--output_json_file_type OUTPUT_JSON_FILE_TYPE]
                 [--output_root_file_name OUTPUT_ROOT_FILE_NAME]
                 [--particle_decay PARTICLE_DECAY]
                 [--photon_vis_colour PHOTON_VIS_COLOUR]
                 [--physics_model PHYSICS_MODEL]
                 [--physics_processes PHYSICS_PROCESSES]
                 [--pi_minus_vis_colour PI_MINUS_VIS_COLOUR]
                 [--pi_plus_vis_colour PI_PLUS_VIS_COLOUR]
                 [--production_threshold PRODUCTION_THRESHOLD]
                 [--reconstruction_geometry_filename RECONSTRUCTION_GEOMETRY_FILENAME]
                 [--reference_physics_processes REFERENCE_PHYSICS_PROCESSES]
                 [--simulation_geometry_filename SIMULATION_GEOMETRY_FILENAME]
                 [--simulation_reference_particle SIMULATION_REFERENCE_PARTICLE]
                 [--spill_generator_number_of_spills SPILL_GENERATOR_NUMBER_OF_SPILLS]
                 [--type_of_dataflow TYPE_OF_DATAFLOW]
                 [--verbose_level VERBOSE_LEVEL]
                 [--visualisation_phi VISUALISATION_PHI]
                 [--visualisation_theta VISUALISATION_THETA]
                 [--visualisation_viewer VISUALISATION_VIEWER]
                 [--visualisation_zoom VISUALISATION_ZOOM]
nosetests: error: unrecognized arguments: bob
ok
Check that Go executes okay with multi_process dataflow. ... ok
Check that Go notifies user of unimplemented dataflow. ... ok
Check that Go executes okay with pipeline_single_thread dataflow. ... ok
Make sure get_possible_dataflows() doesn't return nonsense ... ok
Check that Go raises error with bad input. ... ok
Check that Go raises error with bad transformer. ... ok
Check that Go raises error with bad outputter. ... ok
Check that Go raises error with bad merger. ... ok
Check that Go raises error with bad dataflow type. ... ok
@brief This is the main test - walks the directory structure and looks ... FAIL
@brief self check - test we postprocess cpplint output correctly ... ok
@brief self check - test the glob_maus_root_dir function (above) ... ok
@brief self check - test we walk the path correctly, excluding relevant ... ok
test_run_test_cpp_unit (test_cpp_unit.CppUnitTests) ... [==========] Running 351 tests from 52 test cases.
[----------] Global test environment set-up.
[----------] 1 test from dataCardsTest
[ RUN      ] dataCardsTest.readKeysTest
[       OK ] dataCardsTest.readKeysTest (2 ms)
[----------] 1 test from dataCardsTest (2 ms total)

[----------] 8 tests from SqueakTest
[ RUN      ] SqueakTest.SqueakSetOutputMoutErrorLevelTest
[       OK ] SqueakTest.SqueakSetOutputMoutErrorLevelTest (0 ms)
[ RUN      ] SqueakTest.SqueakMoutExceptionTest
[       OK ] SqueakTest.SqueakMoutExceptionTest (0 ms)
[ RUN      ] SqueakTest.SqueakMoutDefaultTest
[       OK ] SqueakTest.SqueakMoutDefaultTest (0 ms)
[ RUN      ] SqueakTest.GetOutputsTest
[       OK ] SqueakTest.GetOutputsTest (0 ms)
[ RUN      ] SqueakTest.ActivateCoutTest
[       OK ] SqueakTest.ActivateCoutTest (0 ms)
[ RUN      ] SqueakTest.ActivateClogTest
[       OK ] SqueakTest.ActivateClogTest (0 ms)
[ RUN      ] SqueakTest.ActivateCerrTest
[       OK ] SqueakTest.ActivateCerrTest (0 ms)
[ RUN      ] SqueakTest.SetStandardOutputs
[       OK ] SqueakTest.SetStandardOutputs (0 ms)
[----------] 8 tests from SqueakTest (0 ms total)

[----------] 1 test from TriangularMeshTest
[ RUN      ] TriangularMeshTest.DelaunayConstructorTest
[       OK ] TriangularMeshTest.DelaunayConstructorTest (1 ms)
[----------] 1 test from TriangularMeshTest (2 ms total)

[----------] 1 test from MeshTest
[ RUN      ] MeshTest.testAll
[       OK ] MeshTest.testAll (311 ms)
[----------] 1 test from MeshTest (311 ms total)

[----------] 1 test from DifferentiatorTest
[ RUN      ] DifferentiatorTest.old_unit_tests
[       OK ] DifferentiatorTest.old_unit_tests (1 ms)
[----------] 1 test from DifferentiatorTest (1 ms total)

[----------] 1 test from SquealTest
[ RUN      ] SquealTest.SquealTest
[       OK ] SquealTest.SquealTest (0 ms)
[----------] 1 test from SquealTest (0 ms total)

[----------] 3 tests from STLUtilsTest
[ RUN      ] STLUtilsTest.IterableEqualityTest
[       OK ] STLUtilsTest.IterableEqualityTest (0 ms)
[ RUN      ] STLUtilsTest.ToStringTest
[       OK ] STLUtilsTest.ToStringTest (0 ms)
[ RUN      ] STLUtilsTest.ReplaceVariablesTest
[       OK ] STLUtilsTest.ReplaceVariablesTest (1 ms)
[----------] 3 tests from STLUtilsTest (1 ms total)

[----------] 1 test from MathUtils
[ RUN      ] MathUtils.CompactVectorTest
[       OK ] MathUtils.CompactVectorTest (0 ms)
[----------] 1 test from MathUtils (0 ms total)

[----------] 1 test from Mathutils
[ RUN      ] Mathutils.GreaterThanTest
[       OK ] Mathutils.GreaterThanTest (0 ms)
[----------] 1 test from Mathutils (0 ms total)

[----------] 7 tests from EngeTest
[ RUN      ] EngeTest.EngeConstructorTest
[       OK ] EngeTest.EngeConstructorTest (5 ms)
[ RUN      ] EngeTest.MutatorAccessorTest
[       OK ] EngeTest.MutatorAccessorTest (0 ms)
[ RUN      ] EngeTest.SetEngeDiffIndicesTest
[       OK ] EngeTest.SetEngeDiffIndicesTest (0 ms)
[ RUN      ] EngeTest.HNTest
[       OK ] EngeTest.HNTest (1 ms)
[ RUN      ] EngeTest.GNTest
[       OK ] EngeTest.GNTest (4 ms)
[ RUN      ] EngeTest.GetEngeTest
[       OK ] EngeTest.GetEngeTest (167 ms)
[ RUN      ] EngeTest.GetDoubleEngeTest
[       OK ] EngeTest.GetDoubleEngeTest (316 ms)
[----------] 7 tests from EngeTest (493 ms total)

[----------] 6 tests from TanhTest
[ RUN      ] TanhTest.TanhConstructorTest
[       OK ] TanhTest.TanhConstructorTest (0 ms)
[ RUN      ] TanhTest.TanhMutatorAccessorTest
[       OK ] TanhTest.TanhMutatorAccessorTest (0 ms)
[ RUN      ] TanhTest.TanhGetTanhDiffIndicesTest
[       OK ] TanhTest.TanhGetTanhDiffIndicesTest (0 ms)
[ RUN      ] TanhTest.GetTanhTest
[       OK ] TanhTest.GetTanhTest (1 ms)
[ RUN      ] TanhTest.GetNegTanhTest
[       OK ] TanhTest.GetNegTanhTest (0 ms)
[ RUN      ] TanhTest.GetDoubleTanhTest
[       OK ] TanhTest.GetDoubleTanhTest (0 ms)
[----------] 6 tests from TanhTest (2 ms total)

[----------] 13 tests from HermitianMatrixTest
[ RUN      ] HermitianMatrixTest.DefaultConstructor
[       OK ] HermitianMatrixTest.DefaultConstructor (0 ms)
[ RUN      ] HermitianMatrixTest.CopyConstructor
[       OK ] HermitianMatrixTest.CopyConstructor (1 ms)
[ RUN      ] HermitianMatrixTest.ConstructorSizeOnly
[       OK ] HermitianMatrixTest.ConstructorSizeOnly (0 ms)
[ RUN      ] HermitianMatrixTest.ConstructorFill
[       OK ] HermitianMatrixTest.ConstructorFill (0 ms)
[ RUN      ] HermitianMatrixTest.ConstructorFromArray
[       OK ] HermitianMatrixTest.ConstructorFromArray (0 ms)
[ RUN      ] HermitianMatrixTest.Set
[       OK ] HermitianMatrixTest.Set (0 ms)
[ RUN      ] HermitianMatrixTest.Assignment
[       OK ] HermitianMatrixTest.Assignment (0 ms)
[ RUN      ] HermitianMatrixTest.Addition
[       OK ] HermitianMatrixTest.Addition (0 ms)
[ RUN      ] HermitianMatrixTest.Subtraction
[       OK ] HermitianMatrixTest.Subtraction (0 ms)
[ RUN      ] HermitianMatrixTest.Inverse
[       OK ] HermitianMatrixTest.Inverse (0 ms)
[ RUN      ] HermitianMatrixTest.ComplexDecomposition
[       OK ] HermitianMatrixTest.ComplexDecomposition (0 ms)
[ RUN      ] HermitianMatrixTest.Eigen
[       OK ] HermitianMatrixTest.Eigen (0 ms)
[ RUN      ] HermitianMatrixTest.Negation
[       OK ] HermitianMatrixTest.Negation (0 ms)
[----------] 13 tests from HermitianMatrixTest (1 ms total)

[----------] 31 tests from MatrixTest
[ RUN      ] MatrixTest.DefaultConstructor
[       OK ] MatrixTest.DefaultConstructor (0 ms)
[ RUN      ] MatrixTest.SingleElementValueConstructor
[       OK ] MatrixTest.SingleElementValueConstructor (0 ms)
[ RUN      ] MatrixTest.ConstructorFromArray
[       OK ] MatrixTest.ConstructorFromArray (0 ms)
[ RUN      ] MatrixTest.IndexingElements
[       OK ] MatrixTest.IndexingElements (8 ms)
[ RUN      ] MatrixTest.CopyConstructor
[       OK ] MatrixTest.CopyConstructor (0 ms)
[ RUN      ] MatrixTest.HepMatrixConstructor
[       OK ] MatrixTest.HepMatrixConstructor (0 ms)
[ RUN      ] MatrixTest.ConstructorSizeOnly
[       OK ] MatrixTest.ConstructorSizeOnly (0 ms)
[ RUN      ] MatrixTest.ConstructorFill
[       OK ] MatrixTest.ConstructorFill (0 ms)
[ RUN      ] MatrixTest.IndexingRows
[       OK ] MatrixTest.IndexingRows (3 ms)
[ RUN      ] MatrixTest.IndexingColumns
[       OK ] MatrixTest.IndexingColumns (3 ms)
[ RUN      ] MatrixTest.Submatrix
[       OK ] MatrixTest.Submatrix (0 ms)
[ RUN      ] MatrixTest.Comparison
[       OK ] MatrixTest.Comparison (0 ms)
[ RUN      ] MatrixTest.Assignment
[       OK ] MatrixTest.Assignment (2 ms)
[ RUN      ] MatrixTest.Addition
[       OK ] MatrixTest.Addition (3 ms)
[ RUN      ] MatrixTest.Subtraction
[       OK ] MatrixTest.Subtraction (3 ms)
[ RUN      ] MatrixTest.Multiplication
[       OK ] MatrixTest.Multiplication (1 ms)
[ RUN      ] MatrixTest.ScalarMultiplication
[       OK ] MatrixTest.ScalarMultiplication (0 ms)
[ RUN      ] MatrixTest.ScalarDivision
[       OK ] MatrixTest.ScalarDivision (0 ms)
[ RUN      ] MatrixTest.ComplexComposition
[       OK ] MatrixTest.ComplexComposition (2 ms)
[ RUN      ] MatrixTest.ComplexDecomposition
[       OK ] MatrixTest.ComplexDecomposition (0 ms)
[ RUN      ] MatrixTest.ComplexConjugation
[       OK ] MatrixTest.ComplexConjugation (0 ms)
[ RUN      ] MatrixTest.Determinant
[       OK ] MatrixTest.Determinant (1 ms)
[ RUN      ] MatrixTest.Inverse
[       OK ] MatrixTest.Inverse (2 ms)
[ RUN      ] MatrixTest.Trace
[       OK ] MatrixTest.Trace (0 ms)
[ RUN      ] MatrixTest.Transpose
[       OK ] MatrixTest.Transpose (0 ms)
[ RUN      ] MatrixTest.Dagger
[       OK ] MatrixTest.Dagger (0 ms)
[ RUN      ] MatrixTest.HepMatrix
[       OK ] MatrixTest.HepMatrix (0 ms)
[ RUN      ] MatrixTest.Eigen
[       OK ] MatrixTest.Eigen (2 ms)
[ RUN      ] MatrixTest.Negation
[       OK ] MatrixTest.Negation (0 ms)
[ RUN      ] MatrixTest.VectorMultiplication
[       OK ] MatrixTest.VectorMultiplication (0 ms)
[ RUN      ] MatrixTest.Streaming
[       OK ] MatrixTest.Streaming (0 ms)
[----------] 31 tests from MatrixTest (30 ms total)

[----------] 22 tests from ComplexTest
[ RUN      ] ComplexTest.PseudoConstructor
[       OK ] ComplexTest.PseudoConstructor (0 ms)
[ RUN      ] ComplexTest.Equals
[       OK ] ComplexTest.Equals (0 ms)
[ RUN      ] ComplexTest.NotEquals
[       OK ] ComplexTest.NotEquals (0 ms)
[ RUN      ] ComplexTest.Components
[       OK ] ComplexTest.Components (0 ms)
[ RUN      ] ComplexTest.Double
[       OK ] ComplexTest.Double (0 ms)
[ RUN      ] ComplexTest.Conjugate
[       OK ] ComplexTest.Conjugate (0 ms)
[ RUN      ] ComplexTest.Assignment
[       OK ] ComplexTest.Assignment (0 ms)
[ RUN      ] ComplexTest.Multiplication
[       OK ] ComplexTest.Multiplication (0 ms)
[ RUN      ] ComplexTest.Division
[       OK ] ComplexTest.Division (0 ms)
[ RUN      ] ComplexTest.Addition
[       OK ] ComplexTest.Addition (0 ms)
[ RUN      ] ComplexTest.Negation
[       OK ] ComplexTest.Negation (0 ms)
[ RUN      ] ComplexTest.Subtraction
[       OK ] ComplexTest.Subtraction (0 ms)
[ RUN      ] ComplexTest.Polar
[       OK ] ComplexTest.Polar (0 ms)
[ RUN      ] ComplexTest.Magnitude
[       OK ] ComplexTest.Magnitude (0 ms)
[ RUN      ] ComplexTest.Arg
[       OK ] ComplexTest.Arg (0 ms)
[ RUN      ] ComplexTest.Exponential
[       OK ] ComplexTest.Exponential (0 ms)
[ RUN      ] ComplexTest.Logarithms
[       OK ] ComplexTest.Logarithms (0 ms)
[ RUN      ] ComplexTest.Pow
[       OK ] ComplexTest.Pow (0 ms)
[ RUN      ] ComplexTest.SquareRoot
[       OK ] ComplexTest.SquareRoot (0 ms)
[ RUN      ] ComplexTest.TrigonometricFunctions
[       OK ] ComplexTest.TrigonometricFunctions (0 ms)
[ RUN      ] ComplexTest.HyperbolicTrigonometricFunctions
[       OK ] ComplexTest.HyperbolicTrigonometricFunctions (0 ms)
[ RUN      ] ComplexTest.Streaming
[       OK ] ComplexTest.Streaming (0 ms)
[----------] 22 tests from ComplexTest (1 ms total)

[----------] 16 tests from SymmetricMatrixTest
[ RUN      ] SymmetricMatrixTest.DefaultConstructor
[       OK ] SymmetricMatrixTest.DefaultConstructor (0 ms)
[ RUN      ] SymmetricMatrixTest.CopyConstructor
[       OK ] SymmetricMatrixTest.CopyConstructor (0 ms)
[ RUN      ] SymmetricMatrixTest.HepSymMatrixConstructor
[       OK ] SymmetricMatrixTest.HepSymMatrixConstructor (0 ms)
[ RUN      ] SymmetricMatrixTest.ConstructorSizeOnly
[       OK ] SymmetricMatrixTest.ConstructorSizeOnly (0 ms)
[ RUN      ] SymmetricMatrixTest.ConstructorFill
[       OK ] SymmetricMatrixTest.ConstructorFill (0 ms)
[ RUN      ] SymmetricMatrixTest.ConstructorFromArray
[       OK ] SymmetricMatrixTest.ConstructorFromArray (0 ms)
[ RUN      ] SymmetricMatrixTest.Set
[       OK ] SymmetricMatrixTest.Set (0 ms)
[ RUN      ] SymmetricMatrixTest.Assignment
[       OK ] SymmetricMatrixTest.Assignment (0 ms)
[ RUN      ] SymmetricMatrixTest.Addition
[       OK ] SymmetricMatrixTest.Addition (0 ms)
[ RUN      ] SymmetricMatrixTest.Subtraction
[       OK ] SymmetricMatrixTest.Subtraction (0 ms)
[ RUN      ] SymmetricMatrixTest.ScalarMultiplication
[       OK ] SymmetricMatrixTest.ScalarMultiplication (0 ms)
[ RUN      ] SymmetricMatrixTest.ScalarDivision
[       OK ] SymmetricMatrixTest.ScalarDivision (0 ms)
[ RUN      ] SymmetricMatrixTest.Inverse
[       OK ] SymmetricMatrixTest.Inverse (0 ms)
[ RUN      ] SymmetricMatrixTest.HepSymMatrix
[       OK ] SymmetricMatrixTest.HepSymMatrix (0 ms)
[ RUN      ] SymmetricMatrixTest.Eigen
[       OK ] SymmetricMatrixTest.Eigen (0 ms)
[ RUN      ] SymmetricMatrixTest.Negation
[       OK ] SymmetricMatrixTest.Negation (0 ms)
[----------] 16 tests from SymmetricMatrixTest (1 ms total)

[----------] 10 tests from PolynomialVectorTest
[ RUN      ] PolynomialVectorTest.Constructor
[       OK ] PolynomialVectorTest.Constructor (0 ms)
[ RUN      ] PolynomialVectorTest.Clone
[       OK ] PolynomialVectorTest.Clone (0 ms)
[ RUN      ] PolynomialVectorTest.MapEvaluation
[       OK ] PolynomialVectorTest.MapEvaluation (0 ms)
[ RUN      ] PolynomialVectorTest.IterableEquality
[       OK ] PolynomialVectorTest.IterableEquality (1 ms)
[ RUN      ] PolynomialVectorTest.PointBox
[       OK ] PolynomialVectorTest.PointBox (1 ms)
[ RUN      ] PolynomialVectorTest.GetAvgChi2OfDifference
[       OK ] PolynomialVectorTest.GetAvgChi2OfDifference (3 ms)
[ RUN      ] PolynomialVectorTest.Means
[       OK ] PolynomialVectorTest.Means (0 ms)
[ RUN      ] PolynomialVectorTest.Covariances
[       OK ] PolynomialVectorTest.Covariances (0 ms)
[ RUN      ] PolynomialVectorTest.LeastSquaresFitting
[       OK ] PolynomialVectorTest.LeastSquaresFitting (1002 ms)
[ RUN      ] PolynomialVectorTest.SpaceTransform
[       OK ] PolynomialVectorTest.SpaceTransform (1 ms)
[----------] 10 tests from PolynomialVectorTest (1008 ms total)

[----------] 15 tests from VectorTest
[ RUN      ] VectorTest.Size
[       OK ] VectorTest.Size (0 ms)
[ RUN      ] VectorTest.Subvector
[       OK ] VectorTest.Subvector (2 ms)
[ RUN      ] VectorTest.Indexing
[       OK ] VectorTest.Indexing (6 ms)
[ RUN      ] VectorTest.Equals
[       OK ] VectorTest.Equals (0 ms)
[ RUN      ] VectorTest.NotEquals
[       OK ] VectorTest.NotEquals (0 ms)
[ RUN      ] VectorTest.StdVectorConstructor
[       OK ] VectorTest.StdVectorConstructor (0 ms)
[ RUN      ] VectorTest.HepVectorConstructor
[       OK ] VectorTest.HepVectorConstructor (0 ms)
[ RUN      ] VectorTest.Assignment
[       OK ] VectorTest.Assignment (3 ms)
[ RUN      ] VectorTest.Multiplication
[       OK ] VectorTest.Multiplication (4 ms)
[ RUN      ] VectorTest.Division
[       OK ] VectorTest.Division (4 ms)
[ RUN      ] VectorTest.Addition
[       OK ] VectorTest.Addition (0 ms)
[ RUN      ] VectorTest.Inversion
[       OK ] VectorTest.Inversion (0 ms)
[ RUN      ] VectorTest.Subtraction
[       OK ] VectorTest.Subtraction (0 ms)
[ RUN      ] VectorTest.ComplexDecomposition
[       OK ] VectorTest.ComplexDecomposition (0 ms)
[ RUN      ] VectorTest.Streaming
[       OK ] VectorTest.Streaming (0 ms)
[----------] 15 tests from VectorTest (19 ms total)

[----------] 11 tests from MiceModToG4SolidTest
[ RUN      ] MiceModToG4SolidTest.checkDimTest
[       OK ] MiceModToG4SolidTest.checkDimTest (2 ms)
[ RUN      ] MiceModToG4SolidTest.buildWedgeTest
[       OK ] MiceModToG4SolidTest.buildWedgeTest (3 ms)
[ RUN      ] MiceModToG4SolidTest.buildTrapezoidTest
[       OK ] MiceModToG4SolidTest.buildTrapezoidTest (0 ms)
[ RUN      ] MiceModToG4SolidTest.buildBoxTest
[       OK ] MiceModToG4SolidTest.buildBoxTest (4 ms)
[ RUN      ] MiceModToG4SolidTest.buildCylinderTest
[       OK ] MiceModToG4SolidTest.buildCylinderTest (2 ms)
[ RUN      ] MiceModToG4SolidTest.buildTubeTest
[       OK ] MiceModToG4SolidTest.buildTubeTest (5 ms)
[ RUN      ] MiceModToG4SolidTest.buildSphereTest
[       OK ] MiceModToG4SolidTest.buildSphereTest (10 ms)
[ RUN      ] MiceModToG4SolidTest.buildPolyconeTest
[       OK ] MiceModToG4SolidTest.buildPolyconeTest (1 ms)
[ RUN      ] MiceModToG4SolidTest.buildMultipoleTest
[       OK ] MiceModToG4SolidTest.buildMultipoleTest (1 ms)
[ RUN      ] MiceModToG4SolidTest.buildTorusTest
[       OK ] MiceModToG4SolidTest.buildTorusTest (7 ms)
[ RUN      ] MiceModToG4SolidTest.buildEllipticalConeTest
[       OK ] MiceModToG4SolidTest.buildEllipticalConeTest (3 ms)
[----------] 11 tests from MiceModToG4SolidTest (38 ms total)

[----------] 2 tests from MAUSTrackingActionTest
[ RUN      ] MAUSTrackingActionTest.PreUserTrackingActionTest
[       OK ] MAUSTrackingActionTest.PreUserTrackingActionTest (23 ms)
[ RUN      ] MAUSTrackingActionTest.PostUserTrackingActionTest
[       OK ] MAUSTrackingActionTest.PostUserTrackingActionTest (1 ms)
[----------] 2 tests from MAUSTrackingActionTest (24 ms total)

[----------] 12 tests from MAUSGeant4ManagerTest
[ RUN      ] MAUSGeant4ManagerTest.GetSetTest
[       OK ] MAUSGeant4ManagerTest.GetSetTest (0 ms)
[ RUN      ] MAUSGeant4ManagerTest.GetReferenceParticleTest
[       OK ] MAUSGeant4ManagerTest.GetReferenceParticleTest (0 ms)
[ RUN      ] MAUSGeant4ManagerTest.SetPhasesTest
[       OK ] MAUSGeant4ManagerTest.SetPhasesTest (7 ms)
[ RUN      ] MAUSGeant4ManagerTest.RunParticlePGTest
[       OK ] MAUSGeant4ManagerTest.RunParticlePGTest (955 ms)
[ RUN      ] MAUSGeant4ManagerTest.RunParticleJsonTest
[       OK ] MAUSGeant4ManagerTest.RunParticleJsonTest (1 ms)
[ RUN      ] MAUSGeant4ManagerTest.RunManyParticlesTest
[       OK ] MAUSGeant4ManagerTest.RunManyParticlesTest (2 ms)
[ RUN      ] MAUSGeant4ManagerTest.GetSetTest
[       OK ] MAUSGeant4ManagerTest.GetSetTest (0 ms)
[ RUN      ] MAUSGeant4ManagerTest.GetReferenceParticleTest
[       OK ] MAUSGeant4ManagerTest.GetReferenceParticleTest (0 ms)
[ RUN      ] MAUSGeant4ManagerTest.SetPhasesTest
[       OK ] MAUSGeant4ManagerTest.SetPhasesTest (7 ms)
[ RUN      ] MAUSGeant4ManagerTest.RunParticlePGTest
[       OK ] MAUSGeant4ManagerTest.RunParticlePGTest (133 ms)
[ RUN      ] MAUSGeant4ManagerTest.RunParticleJsonTest
[       OK ] MAUSGeant4ManagerTest.RunParticleJsonTest (1 ms)
[ RUN      ] MAUSGeant4ManagerTest.RunManyParticlesTest
[       OK ] MAUSGeant4ManagerTest.RunManyParticlesTest (2 ms)
[----------] 12 tests from MAUSGeant4ManagerTest (1108 ms total)

[----------] 6 tests from VirtualPlaneTest
[ RUN      ] VirtualPlaneTest.ConstructorTest
[       OK ] VirtualPlaneTest.ConstructorTest (1 ms)
[ RUN      ] VirtualPlaneTest.GetIndependentVariableZTest
[       OK ] VirtualPlaneTest.GetIndependentVariableZTest (0 ms)
[ RUN      ] VirtualPlaneTest.SteppingOverTest
[       OK ] VirtualPlaneTest.SteppingOverTest (0 ms)
[ RUN      ] VirtualPlaneTest.BuildNewHitTest
[       OK ] VirtualPlaneTest.BuildNewHitTest (1 ms)
[ RUN      ] VirtualPlaneTest.ComparePositionTest
[       OK ] VirtualPlaneTest.ComparePositionTest (0 ms)
[ RUN      ] VirtualPlaneTest.InRadialCutTest
[       OK ] VirtualPlaneTest.InRadialCutTest (0 ms)
[----------] 6 tests from VirtualPlaneTest (2 ms total)

[----------] 14 tests from VirtualPlaneManagerTest
[ RUN      ] VirtualPlaneManagerTest.GetSetFieldTest
[       OK ] VirtualPlaneManagerTest.GetSetFieldTest (0 ms)
[ RUN      ] VirtualPlaneManagerTest.GetSetHitsTest
[       OK ] VirtualPlaneManagerTest.GetSetHitsTest (1 ms)
[ RUN      ] VirtualPlaneManagerTest.ConstructVirtualPlanes
[       OK ] VirtualPlaneManagerTest.ConstructVirtualPlanes (1 ms)
[ RUN      ] VirtualPlaneManagerTest.ConstructFromModule_IndepVariableTest
[       OK ] VirtualPlaneManagerTest.ConstructFromModule_IndepVariableTest (5 ms)
[ RUN      ] VirtualPlaneManagerTest.ConstructFromModule_MultiplePassesTest
[       OK ] VirtualPlaneManagerTest.ConstructFromModule_MultiplePassesTest (3 ms)
[ RUN      ] VirtualPlaneManagerTest.ConstructFromModule_OtherStuffTest
[       OK ] VirtualPlaneManagerTest.ConstructFromModule_OtherStuffTest (0 ms)
[ RUN      ] VirtualPlaneManagerTest.VirtualPlanesSteppingActionTest
[       OK ] VirtualPlaneManagerTest.VirtualPlanesSteppingActionTest (4 ms)
[ RUN      ] VirtualPlaneManagerTest.VirtualPlanesSteppingActionBackwardsTest
[       OK ] VirtualPlaneManagerTest.VirtualPlanesSteppingActionBackwardsTest (0 ms)
[ RUN      ] VirtualPlaneManagerTest.VirtualPlanesSteppingActionMultipassTest
[       OK ] VirtualPlaneManagerTest.VirtualPlanesSteppingActionMultipassTest (2 ms)
[ RUN      ] VirtualPlaneManagerTest.GetModuleFromStationNumberTest
[       OK ] VirtualPlaneManagerTest.GetModuleFromStationNumberTest (3 ms)
[ RUN      ] VirtualPlaneManagerTest.GetStationNumberFromModuleTest
[       OK ] VirtualPlaneManagerTest.GetStationNumberFromModuleTest (2 ms)
[ RUN      ] VirtualPlaneManagerTest.RemovePlaneTest
[       OK ] VirtualPlaneManagerTest.RemovePlaneTest (4 ms)
[ RUN      ] VirtualPlaneManagerTest.RemovePlanesTest
[       OK ] VirtualPlaneManagerTest.RemovePlanesTest (4 ms)
[ RUN      ] VirtualPlaneManagerTest.ReadWriteHitTest
[       OK ] VirtualPlaneManagerTest.ReadWriteHitTest (1 ms)
[----------] 14 tests from VirtualPlaneManagerTest (30 ms total)

[----------] 4 tests from MAUSPrimaryGeneratorActionTest
[ RUN      ] MAUSPrimaryGeneratorActionTest.PushPopTest
[       OK ] MAUSPrimaryGeneratorActionTest.PushPopTest (0 ms)
[ RUN      ] MAUSPrimaryGeneratorActionTest.GeneratePrimariesTest
[       OK ] MAUSPrimaryGeneratorActionTest.GeneratePrimariesTest (3 ms)
[ RUN      ] MAUSPrimaryGeneratorActionTest.PGParticleReadWriteTest
[       OK ] MAUSPrimaryGeneratorActionTest.PGParticleReadWriteTest (0 ms)
[ RUN      ] MAUSPrimaryGeneratorActionTest.PGParticleFromVirtualHitTest
[       OK ] MAUSPrimaryGeneratorActionTest.PGParticleFromVirtualHitTest (0 ms)
[----------] 4 tests from MAUSPrimaryGeneratorActionTest (3 ms total)

[----------] 5 tests from MAUSSteppingActionTest
[ RUN      ] MAUSSteppingActionTest.GetSetTest
[       OK ] MAUSSteppingActionTest.GetSetTest (1 ms)
[ RUN      ] MAUSSteppingActionTest.UserSteppingActionMaxNStepsTest
[       OK ] MAUSSteppingActionTest.UserSteppingActionMaxNStepsTest (0 ms)
[ RUN      ] MAUSSteppingActionTest.UserSteppingActionWriteStepsTest
[       OK ] MAUSSteppingActionTest.UserSteppingActionWriteStepsTest (0 ms)
[ RUN      ] MAUSSteppingActionTest.StepToJsonTest
[       OK ] MAUSSteppingActionTest.StepToJsonTest (0 ms)
[ RUN      ] MAUSSteppingActionTest.UserSteppingActionVirtualTest
[       OK ] MAUSSteppingActionTest.UserSteppingActionVirtualTest (1 ms)
[----------] 5 tests from MAUSSteppingActionTest (2 ms total)

[----------] 3 tests from MAUSEventActionTest
[ RUN      ] MAUSEventActionTest.SetGetEventsTest
[       OK ] MAUSEventActionTest.SetGetEventsTest (1 ms)
[ RUN      ] MAUSEventActionTest.BeginOfEventActionTest
[       OK ] MAUSEventActionTest.BeginOfEventActionTest (1 ms)
[ RUN      ] MAUSEventActionTest.EndOfEventActionTest
[       OK ] MAUSEventActionTest.EndOfEventActionTest (1 ms)
[----------] 3 tests from MAUSEventActionTest (3 ms total)

[----------] 9 tests from MCEventTest
[ RUN      ] MCEventTest.StepTest
[       OK ] MCEventTest.StepTest (0 ms)
[ RUN      ] MCEventTest.TrackTest
[       OK ] MCEventTest.TrackTest (0 ms)
[ RUN      ] MCEventTest.VirtualHitTest
[       OK ] MCEventTest.VirtualHitTest (1 ms)
[ RUN      ] MCEventTest.PrimaryTest
[       OK ] MCEventTest.PrimaryTest (0 ms)
[ RUN      ] MCEventTest.HitTest
[       OK ] MCEventTest.HitTest (0 ms)
[ RUN      ] MCEventTest.MCEventTest
[       OK ] MCEventTest.MCEventTest (0 ms)
[ RUN      ] MCEventTest.SciFiChannelIdTest
[       OK ] MCEventTest.SciFiChannelIdTest (0 ms)
[ RUN      ] MCEventTest.TOFChannelIdTest
[       OK ] MCEventTest.TOFChannelIdTest (0 ms)
[ RUN      ] MCEventTest.SpecialVirtualChannelIdTest
[       OK ] MCEventTest.SpecialVirtualChannelIdTest (0 ms)
[----------] 9 tests from MCEventTest (1 ms total)

[----------] 2 tests from SpillTest
[ RUN      ] SpillTest.DataTest
[       OK ] SpillTest.DataTest (0 ms)
[ RUN      ] SpillTest.SpillTest
[       OK ] SpillTest.SpillTest (1 ms)
[----------] 2 tests from SpillTest (1 ms total)

[----------] 1 test from ReconEventTest
[ RUN      ] ReconEventTest.ReconEventTest
[       OK ] ReconEventTest.ReconEventTest (0 ms)
[----------] 1 test from ReconEventTest (0 ms total)

[----------] 10 tests from MiceModuleTest
[ RUN      ] MiceModuleTest.ReadModuleTest
[       OK ] MiceModuleTest.ReadModuleTest (1 ms)
[ RUN      ] MiceModuleTest.GetBoolTest
[       OK ] MiceModuleTest.GetBoolTest (0 ms)
[ RUN      ] MiceModuleTest.GetIntTest
[       OK ] MiceModuleTest.GetIntTest (0 ms)
[ RUN      ] MiceModuleTest.GetStringTest
[       OK ] MiceModuleTest.GetStringTest (1 ms)
[ RUN      ] MiceModuleTest.GetDoubleTest
[       OK ] MiceModuleTest.GetDoubleTest (0 ms)
[ RUN      ] MiceModuleTest.Get3VecTest
[       OK ] MiceModuleTest.Get3VecTest (2 ms)
[ RUN      ] MiceModuleTest.propertyDoubleAccessors
[       OK ] MiceModuleTest.propertyDoubleAccessors (3 ms)
[ RUN      ] MiceModuleTest.propertyHep3VecAccessors
[       OK ] MiceModuleTest.propertyHep3VecAccessors (4 ms)
[ RUN      ] MiceModuleTest.printTree
[       OK ] MiceModuleTest.printTree (1 ms)
[ RUN      ] MiceModuleTest.DumpMiceModule
[       OK ] MiceModuleTest.DumpMiceModule (0 ms)
[----------] 10 tests from MiceModuleTest (13 ms total)

[----------] 16 tests from ArrayProcessorsTest
[ RUN      ] ArrayProcessorsTest.PointerArrayConstructorDestructorTest
[       OK ] ArrayProcessorsTest.PointerArrayConstructorDestructorTest (0 ms)
[ RUN      ] ArrayProcessorsTest.PointerArrayJsonToCppEmptyVecTest
[       OK ] ArrayProcessorsTest.PointerArrayJsonToCppEmptyVecTest (0 ms)
[ RUN      ] ArrayProcessorsTest.PointerArrayJsonToCppTest
[       OK ] ArrayProcessorsTest.PointerArrayJsonToCppTest (0 ms)
[ RUN      ] ArrayProcessorsTest.PointerArrayJsonToCppWrongTypeTest
[       OK ] ArrayProcessorsTest.PointerArrayJsonToCppWrongTypeTest (1 ms)
[ RUN      ] ArrayProcessorsTest.PointerArrayJsonToCppNullTest
[       OK ] ArrayProcessorsTest.PointerArrayJsonToCppNullTest (0 ms)
[ RUN      ] ArrayProcessorsTest.PointerArrayJsonToCppNotArrayTest
[       OK ] ArrayProcessorsTest.PointerArrayJsonToCppNotArrayTest (1 ms)
[ RUN      ] ArrayProcessorsTest.PointerArrayCppToJsonEmptyVecTest
[       OK ] ArrayProcessorsTest.PointerArrayCppToJsonEmptyVecTest (0 ms)
[ RUN      ] ArrayProcessorsTest.PointerArrayCppToJsonTest
[       OK ] ArrayProcessorsTest.PointerArrayCppToJsonTest (0 ms)
[ RUN      ] ArrayProcessorsTest.PointerArrayCppToJsonNullTest
[       OK ] ArrayProcessorsTest.PointerArrayCppToJsonNullTest (0 ms)
[ RUN      ] ArrayProcessorsTest.ValueArrayConstructorDestructorTest
[       OK ] ArrayProcessorsTest.ValueArrayConstructorDestructorTest (0 ms)
[ RUN      ] ArrayProcessorsTest.ValueArrayJsonToCppEmptyVecTest
[       OK ] ArrayProcessorsTest.ValueArrayJsonToCppEmptyVecTest (0 ms)
[ RUN      ] ArrayProcessorsTest.ValueArrayJsonToCppTest
[       OK ] ArrayProcessorsTest.ValueArrayJsonToCppTest (0 ms)
[ RUN      ] ArrayProcessorsTest.ValueArrayJsonToCppWrongTypeTest
[       OK ] ArrayProcessorsTest.ValueArrayJsonToCppWrongTypeTest (1 ms)
[ RUN      ] ArrayProcessorsTest.ValueArrayJsonToCppNotArrayTest
[       OK ] ArrayProcessorsTest.ValueArrayJsonToCppNotArrayTest (0 ms)
[ RUN      ] ArrayProcessorsTest.ValueArrayCppToJsonEmptyVecTest
[       OK ] ArrayProcessorsTest.ValueArrayCppToJsonEmptyVecTest (0 ms)
[ RUN      ] ArrayProcessorsTest.ValueArrayCppToJsonTest
[       OK ] ArrayProcessorsTest.ValueArrayCppToJsonTest (0 ms)
[----------] 16 tests from ArrayProcessorsTest (3 ms total)

[----------] 6 tests from ObjectMapProcessorsTest
[ RUN      ] ObjectMapProcessorsTest.ObjectMapValueConstructorTest
[       OK ] ObjectMapProcessorsTest.ObjectMapValueConstructorTest (0 ms)
[ RUN      ] ObjectMapProcessorsTest.ObjectMapValueJsonToCppTest
[       OK ] ObjectMapProcessorsTest.ObjectMapValueJsonToCppTest (0 ms)
[ RUN      ] ObjectMapProcessorsTest.ObjectMapValueJsonToCppBadValueTest
[       OK ] ObjectMapProcessorsTest.ObjectMapValueJsonToCppBadValueTest (1 ms)
[ RUN      ] ObjectMapProcessorsTest.ObjectMapValueJsonToCppNullTest
[       OK ] ObjectMapProcessorsTest.ObjectMapValueJsonToCppNullTest (0 ms)
[ RUN      ] ObjectMapProcessorsTest.ObjectMapValueJsonToCppBadTypeTest
[       OK ] ObjectMapProcessorsTest.ObjectMapValueJsonToCppBadTypeTest (1 ms)
[ RUN      ] ObjectMapProcessorsTest.ObjectMapValueCppToJsonTest
[       OK ] ObjectMapProcessorsTest.ObjectMapValueCppToJsonTest (0 ms)
[----------] 6 tests from ObjectMapProcessorsTest (2 ms total)

[----------] 10 tests from PrimitivesProcessorsTest
[ RUN      ] PrimitivesProcessorsTest.DoubleJsonToCpp
[       OK ] PrimitivesProcessorsTest.DoubleJsonToCpp (0 ms)
[ RUN      ] PrimitivesProcessorsTest.DoubleCppToJson
[       OK ] PrimitivesProcessorsTest.DoubleCppToJson (0 ms)
[ RUN      ] PrimitivesProcessorsTest.BoolJsonToCpp
[       OK ] PrimitivesProcessorsTest.BoolJsonToCpp (0 ms)
[ RUN      ] PrimitivesProcessorsTest.BoolCppToJson
[       OK ] PrimitivesProcessorsTest.BoolCppToJson (0 ms)
[ RUN      ] PrimitivesProcessorsTest.StringJsonToCpp
[       OK ] PrimitivesProcessorsTest.StringJsonToCpp (1 ms)
[ RUN      ] PrimitivesProcessorsTest.StringCppToJson
[       OK ] PrimitivesProcessorsTest.StringCppToJson (0 ms)
[ RUN      ] PrimitivesProcessorsTest.IntJsonToCpp
[       OK ] PrimitivesProcessorsTest.IntJsonToCpp (1 ms)
[ RUN      ] PrimitivesProcessorsTest.IntCppToJson
[       OK ] PrimitivesProcessorsTest.IntCppToJson (0 ms)
[ RUN      ] PrimitivesProcessorsTest.UIntJsonToCpp
[       OK ] PrimitivesProcessorsTest.UIntJsonToCpp (1 ms)
[ RUN      ] PrimitivesProcessorsTest.UIntCppToJson
[       OK ] PrimitivesProcessorsTest.UIntCppToJson (0 ms)
[----------] 10 tests from PrimitivesProcessorsTest (4 ms total)

[----------] 5 tests from ObjectProcessorTest
[ RUN      ] ObjectProcessorTest.HasUnknownBranches
[       OK ] ObjectProcessorTest.HasUnknownBranches (1 ms)
[ RUN      ] ObjectProcessorTest.JsonToCppRequiredTest
[       OK ] ObjectProcessorTest.JsonToCppRequiredTest (4 ms)
[ RUN      ] ObjectProcessorTest.JsonToCppNotRequiredTest
[       OK ] ObjectProcessorTest.JsonToCppNotRequiredTest (1 ms)
[ RUN      ] ObjectProcessorTest.CppToJsonRequiredTest
[       OK ] ObjectProcessorTest.CppToJsonRequiredTest (1 ms)
[ RUN      ] ObjectProcessorTest.CppToJsonNotRequiredTest
[       OK ] ObjectProcessorTest.CppToJsonNotRequiredTest (0 ms)
[----------] 5 tests from ObjectProcessorTest (7 ms total)

[----------] 14 tests from SpillProcessorTest
[ RUN      ] SpillProcessorTest.ThreeVectorProcessorTest
[       OK ] SpillProcessorTest.ThreeVectorProcessorTest (0 ms)
[ RUN      ] SpillProcessorTest.StepProcessorTest
[       OK ] SpillProcessorTest.StepProcessorTest (0 ms)
[ RUN      ] SpillProcessorTest.TrackProcessorTest
[       OK ] SpillProcessorTest.TrackProcessorTest (1 ms)
[ RUN      ] SpillProcessorTest.TOFChannelIdProcessorTest
[       OK ] SpillProcessorTest.TOFChannelIdProcessorTest (0 ms)
[ RUN      ] SpillProcessorTest.SciFiChannelIdProcessorTest
[       OK ] SpillProcessorTest.SciFiChannelIdProcessorTest (0 ms)
[ RUN      ] SpillProcessorTest.SpecialVirtualChannelIdProcessorTest
[       OK ] SpillProcessorTest.SpecialVirtualChannelIdProcessorTest (1 ms)
[ RUN      ] SpillProcessorTest.SciFiHitProcessorTest
[       OK ] SpillProcessorTest.SciFiHitProcessorTest (0 ms)
[ RUN      ] SpillProcessorTest.TOFHitProcessorTest
[       OK ] SpillProcessorTest.TOFHitProcessorTest (0 ms)
[ RUN      ] SpillProcessorTest.SpecialVirtualHitProcessorTest
[       OK ] SpillProcessorTest.SpecialVirtualHitProcessorTest (0 ms)
[ RUN      ] SpillProcessorTest.VirtualHitProcessorTest
[       OK ] SpillProcessorTest.VirtualHitProcessorTest (1 ms)
[ RUN      ] SpillProcessorTest.PrimaryProcessorTest
[       OK ] SpillProcessorTest.PrimaryProcessorTest (0 ms)
[ RUN      ] SpillProcessorTest.MCEventProcessorTest
[       OK ] SpillProcessorTest.MCEventProcessorTest (3 ms)
[ RUN      ] SpillProcessorTest.ReconEventProcessorTest
[       OK ] SpillProcessorTest.ReconEventProcessorTest (1 ms)
[ RUN      ] SpillProcessorTest.SpillProcessorTest
[       OK ] SpillProcessorTest.SpillProcessorTest (1 ms)
[----------] 14 tests from SpillProcessorTest (8 ms total)

[----------] 7 tests from PhaseSpaceVectorTest
[ RUN      ] PhaseSpaceVectorTest.DefaultConstructor
[       OK ] PhaseSpaceVectorTest.DefaultConstructor (0 ms)
[ RUN      ] PhaseSpaceVectorTest.VectorConstructor
[       OK ] PhaseSpaceVectorTest.VectorConstructor (1 ms)
[ RUN      ] PhaseSpaceVectorTest.ArrayConstructor
[       OK ] PhaseSpaceVectorTest.ArrayConstructor (0 ms)
[ RUN      ] PhaseSpaceVectorTest.CopyConstructor
[       OK ] PhaseSpaceVectorTest.CopyConstructor (0 ms)
[ RUN      ] PhaseSpaceVectorTest.ParameterConstructor
[       OK ] PhaseSpaceVectorTest.ParameterConstructor (0 ms)
[ RUN      ] PhaseSpaceVectorTest.Accessors
[       OK ] PhaseSpaceVectorTest.Accessors (0 ms)
[ RUN      ] PhaseSpaceVectorTest.Mutators
[       OK ] PhaseSpaceVectorTest.Mutators (0 ms)
[----------] 7 tests from PhaseSpaceVectorTest (1 ms total)

[----------] 6 tests from CovarianceMatrixTest
[ RUN      ] CovarianceMatrixTest.DefaultConstructor
[       OK ] CovarianceMatrixTest.DefaultConstructor (0 ms)
[ RUN      ] CovarianceMatrixTest.CopyConstructors
[       OK ] CovarianceMatrixTest.CopyConstructors (3 ms)
[ RUN      ] CovarianceMatrixTest.PennParametrization
[       OK ] CovarianceMatrixTest.PennParametrization (0 ms)
[ RUN      ] CovarianceMatrixTest.TwissParametrization
[       OK ] CovarianceMatrixTest.TwissParametrization (0 ms)
[ RUN      ] CovarianceMatrixTest.PositiveDefiniteness
[       OK ] CovarianceMatrixTest.PositiveDefiniteness (1 ms)
[ RUN      ] CovarianceMatrixTest.RotateEllipse
[       OK ] CovarianceMatrixTest.RotateEllipse (0 ms)
[----------] 6 tests from CovarianceMatrixTest (4 ms total)

[----------] 3 tests from TransferMapTest
[ RUN      ] TransferMapTest.PhaseSpaceVectorTransport
[       OK ] TransferMapTest.PhaseSpaceVectorTransport (0 ms)
[ RUN      ] TransferMapTest.Constructors
[       OK ] TransferMapTest.Constructors (0 ms)
[ RUN      ] TransferMapTest.FirstOrderCovarianceMatrixTransport
[       OK ] TransferMapTest.FirstOrderCovarianceMatrixTransport (0 ms)
[----------] 3 tests from TransferMapTest (0 ms total)

[----------] 4 tests from ORStreamTest
[ RUN      ] ORStreamTest.TestConstructor
[       OK ] ORStreamTest.TestConstructor (173 ms)
[ RUN      ] ORStreamTest.TestFileOpen
[       OK ] ORStreamTest.TestFileOpen (236 ms)
[ RUN      ] ORStreamTest.TestFileClose
[       OK ] ORStreamTest.TestFileClose (234 ms)
[ RUN      ] ORStreamTest.TestFillEvent
[       OK ] ORStreamTest.TestFillEvent (151 ms)
[----------] 4 tests from ORStreamTest (794 ms total)

[----------] 4 tests from IRStreamTest
[ RUN      ] IRStreamTest.TestConstructor
[       OK ] IRStreamTest.TestConstructor (202 ms)
[ RUN      ] IRStreamTest.TestFileOpen
[       OK ] IRStreamTest.TestFileOpen (179 ms)
[ RUN      ] IRStreamTest.TestFileClose
[       OK ] IRStreamTest.TestFileClose (177 ms)
[ RUN      ] IRStreamTest.TestReadEvent
[       OK ] IRStreamTest.TestReadEvent (180 ms)
[----------] 4 tests from IRStreamTest (738 ms total)

[----------] 3 tests from OneArgManipTest
[ RUN      ] OneArgManipTest.TestConstructor
[       OK ] OneArgManipTest.TestConstructor (0 ms)
[ RUN      ] OneArgManipTest.TestOperator
[       OK ] OneArgManipTest.TestOperator (143 ms)
[ RUN      ] OneArgManipTest.TestBranchName
[       OK ] OneArgManipTest.TestBranchName (0 ms)
[----------] 3 tests from OneArgManipTest (143 ms total)

[----------] 4 tests from RStreamTest
[ RUN      ] RStreamTest.TestConstructor
[       OK ] RStreamTest.TestConstructor (101 ms)
[ RUN      ] RStreamTest.TestIsOpen
[       OK ] RStreamTest.TestIsOpen (135 ms)
[ RUN      ] RStreamTest.TestSetBranch
[       OK ] RStreamTest.TestSetBranch (134 ms)
[ RUN      ] RStreamTest.TestAttachBranch
[       OK ] RStreamTest.TestAttachBranch (135 ms)
[----------] 4 tests from RStreamTest (505 ms total)

[----------] 4 tests from SectorFieldTest
[ RUN      ] SectorFieldTest.ConvertPositionToPolarAndCartesianTest
[       OK ] SectorFieldTest.ConvertPositionToPolarAndCartesianTest (0 ms)
[ RUN      ] SectorFieldTest.ConvertValueToPolarAndCartesianTest
[       OK ] SectorFieldTest.ConvertValueToPolarAndCartesianTest (0 ms)
[ RUN      ] SectorFieldTest.SetPolarBoundingBoxTest
[       OK ] SectorFieldTest.SetPolarBoundingBoxTest (0 ms)
[ RUN      ] SectorFieldTest.SetPolarBoundingBoxThrowTest
[       OK ] SectorFieldTest.SetPolarBoundingBoxThrowTest (14 ms)
[----------] 4 tests from SectorFieldTest (14 ms total)

[----------] 5 tests from SectorMagneticFieldMapTest
[ RUN      ] SectorMagneticFieldMapTest.TestReadToscaMapNoSymmetry
[       OK ] SectorMagneticFieldMapTest.TestReadToscaMapNoSymmetry (25 ms)
[ RUN      ] SectorMagneticFieldMapTest.TestReadToscaMapDipoleSymmetry
[       OK ] SectorMagneticFieldMapTest.TestReadToscaMapDipoleSymmetry (19 ms)
[ RUN      ] SectorMagneticFieldMapTest.TestFieldMapCache
[       OK ] SectorMagneticFieldMapTest.TestFieldMapCache (40 ms)
[ RUN      ] SectorMagneticFieldMapTest.TestGetFieldValuePolar
[       OK ] SectorMagneticFieldMapTest.TestGetFieldValuePolar (19 ms)
[ RUN      ] SectorMagneticFieldMapTest.TestGetFieldValueCartesian
[       OK ] SectorMagneticFieldMapTest.TestGetFieldValueCartesian (20 ms)
[----------] 5 tests from SectorMagneticFieldMapTest (123 ms total)

[----------] 1 test from DoubletFiberParamTest
[ RUN      ] DoubletFiberParamTest.test_fiber_parameters
[       OK ] DoubletFiberParamTest.test_fiber_parameters (427 ms)
[----------] 1 test from DoubletFiberParamTest (427 ms total)

[----------] 1 test from SciFiPlaneTest
[ RUN      ] SciFiPlaneTest.Test_num_fibres_in_all_planes
[       OK ] SciFiPlaneTest.Test_num_fibres_in_all_planes (463 ms)
[----------] 1 test from SciFiPlaneTest (463 ms total)

[----------] 2 tests from BTSolenoidTest
[ RUN      ] BTSolenoidTest.AccessorsTest
[       OK ] BTSolenoidTest.AccessorsTest (1 ms)
[ RUN      ] BTSolenoidTest.ReadWriteTest
[       OK ] BTSolenoidTest.ReadWriteTest (1 ms)
[----------] 2 tests from BTSolenoidTest (2 ms total)

[----------] 9 tests from BTMultipoleTest
[ RUN      ] BTMultipoleTest.BTMultipoleEndFieldTest
[       OK ] BTMultipoleTest.BTMultipoleEndFieldTest (0 ms)
[ RUN      ] BTMultipoleTest.BTMultipoleConstructorTest
[       OK ] BTMultipoleTest.BTMultipoleConstructorTest (0 ms)
[ RUN      ] BTMultipoleTest.BTMultipoleTransformToRotated
[       OK ] BTMultipoleTest.BTMultipoleTransformToRotated (24 ms)
[ RUN      ] BTMultipoleTest.GetFieldValueTest_HardEdged
[       OK ] BTMultipoleTest.GetFieldValueTest_HardEdged (0 ms)
[ RUN      ] BTMultipoleTest.BTMultipoleGetConstTest
[       OK ] BTMultipoleTest.BTMultipoleGetConstTest (0 ms)
[ RUN      ] BTMultipoleTest.GetFieldValueTest_TanhDipole
[       OK ] BTMultipoleTest.GetFieldValueTest_TanhDipole (3 ms)
[ RUN      ] BTMultipoleTest.GetFieldValueTest_TanhQuad
[       OK ] BTMultipoleTest.GetFieldValueTest_TanhQuad (4 ms)
[ RUN      ] BTMultipoleTest.GetFieldValueTest_Enge
[       OK ] BTMultipoleTest.GetFieldValueTest_Enge (1 ms)
[ RUN      ] BTMultipoleTest.PrintTest
[       OK ] BTMultipoleTest.PrintTest (0 ms)
[----------] 9 tests from BTMultipoleTest (33 ms total)

[----------] 6 tests from BTTrackerTest
[ RUN      ] BTTrackerTest.SolenoidTest_z
[       OK ] BTTrackerTest.SolenoidTest_z (3899 ms)
[ RUN      ] BTTrackerTest.SolenoidTest_u
[       OK ] BTTrackerTest.SolenoidTest_u (4 ms)
[ RUN      ] BTTrackerTest.SolenoidTest_t
[       OK ] BTTrackerTest.SolenoidTest_t (2 ms)
[ RUN      ] BTTrackerTest.PillBoxTest_z
[       OK ] BTTrackerTest.PillBoxTest_z (3 ms)
[ RUN      ] BTTrackerTest.PillBoxTest_u
[       OK ] BTTrackerTest.PillBoxTest_u (7 ms)
[ RUN      ] BTTrackerTest.PillBoxTest_t
[       OK ] BTTrackerTest.PillBoxTest_t (9 ms)
[----------] 6 tests from BTTrackerTest (3924 ms total)

[----------] 4 tests from BTFieldConstructorTest
[ RUN      ] BTFieldConstructorTest.EndFieldTest
[       OK ] BTFieldConstructorTest.EndFieldTest (6 ms)
[ RUN      ] BTFieldConstructorTest.GetMultipoleTest
[       OK ] BTFieldConstructorTest.GetMultipoleTest (4 ms)
[ RUN      ] BTFieldConstructorTest.GetCombinedFunctionTest
[       OK ] BTFieldConstructorTest.GetCombinedFunctionTest (5 ms)
[ RUN      ] BTFieldConstructorTest.GetSectorMagneticFieldMapTest
[       OK ] BTFieldConstructorTest.GetSectorMagneticFieldMapTest (41 ms)
[----------] 4 tests from BTFieldConstructorTest (56 ms total)

[----------] 4 tests from CppErrorHandlerTest
[ RUN      ] CppErrorHandlerTest.HandleSquealTest
Traceback (most recent call last):
  File "/home/matt/maus_littlefield/src/common_py/ErrorHandler.py", line 159, in HandleCppException
    raise(CppError(error_message))
ErrorHandler.CppError: a_test at exc::test
[       OK ] CppErrorHandlerTest.HandleSquealTest (21 ms)
[ RUN      ] CppErrorHandlerTest.HandleStdExcTest
Traceback (most recent call last):
  File "/home/matt/maus_littlefield/src/common_py/ErrorHandler.py", line 159, in HandleCppException
    raise(CppError(error_message))
ErrorHandler.CppError: a_test at exc::test
[       OK ] CppErrorHandlerTest.HandleStdExcTest (0 ms)
[ RUN      ] CppErrorHandlerTest.HandleStdExcNoJsonTest
Traceback (most recent call last):
  File "/home/matt/maus_littlefield/src/common_py/ErrorHandler.py", line 159, in HandleCppException
    raise(CppError(error_message))
ErrorHandler.CppError: a_test at exc::test
[       OK ] CppErrorHandlerTest.HandleStdExcNoJsonTest (1 ms)
[ RUN      ] CppErrorHandlerTest.HandleSquealNoJsonTest
Traceback (most recent call last):
  File "/home/matt/maus_littlefield/src/common_py/ErrorHandler.py", line 159, in HandleCppException
    raise(CppError(error_message))
ErrorHandler.CppError: a_test at exc::test
[       OK ] CppErrorHandlerTest.HandleSquealNoJsonTest (1 ms)
[----------] 4 tests from CppErrorHandlerTest (24 ms total)

[----------] 12 tests from JsonWrapperTest
[ RUN      ] JsonWrapperTest.StringToJson
[       OK ] JsonWrapperTest.StringToJson (1 ms)
[ RUN      ] JsonWrapperTest.GetItemTest
[       OK ] JsonWrapperTest.GetItemTest (2 ms)
[ RUN      ] JsonWrapperTest.GetPropertyTest
[       OK ] JsonWrapperTest.GetPropertyTest (15 ms)
[ RUN      ] JsonWrapperTest.TypeConversionTest
[       OK ] JsonWrapperTest.TypeConversionTest (1 ms)
[ RUN      ] JsonWrapperTest.SimilarTypeTest
[       OK ] JsonWrapperTest.SimilarTypeTest (0 ms)
[ RUN      ] JsonWrapperTest.PrintTest
[       OK ] JsonWrapperTest.PrintTest (0 ms)
[ RUN      ] JsonWrapperTest.AlmostEqualTest
[       OK ] JsonWrapperTest.AlmostEqualTest (0 ms)
[ RUN      ] JsonWrapperTest.ArrayEqualTest
[       OK ] JsonWrapperTest.ArrayEqualTest (0 ms)
[ RUN      ] JsonWrapperTest.ObjectEqualTest
[       OK ] JsonWrapperTest.ObjectEqualTest (0 ms)
[ RUN      ] JsonWrapperTest.ObjectMergeTest
[       OK ] JsonWrapperTest.ObjectMergeTest (3 ms)
[ RUN      ] JsonWrapperTest.ArrayMergeTest
[       OK ] JsonWrapperTest.ArrayMergeTest (1 ms)
[ RUN      ] JsonWrapperTest.JsonValueTypeToStringTest
[       OK ] JsonWrapperTest.JsonValueTypeToStringTest (0 ms)
[----------] 12 tests from JsonWrapperTest (23 ms total)

[----------] 4 tests from MAUSEvaluatorTest
[ RUN      ] MAUSEvaluatorTest.AllocationTest
[       OK ] MAUSEvaluatorTest.AllocationTest (1 ms)
[ RUN      ] MAUSEvaluatorTest.EvaluateRawTest
[       OK ] MAUSEvaluatorTest.EvaluateRawTest (1 ms)
[ RUN      ] MAUSEvaluatorTest.EvaluateVariableTest
[       OK ] MAUSEvaluatorTest.EvaluateVariableTest (1 ms)
[ RUN      ] MAUSEvaluatorTest.ResetTest
[       OK ] MAUSEvaluatorTest.ResetTest (1 ms)
[----------] 4 tests from MAUSEvaluatorTest (4 ms total)

[----------] Global test environment tear-down
[==========] 351 tests from 52 test cases ran. (10400 ms total)
[  PASSED  ] 351 tests.
ok
Invoke constructor and check values. ... ok
Test create_collection, has_collection and collection_names. ... ok
Test connect with no parameters. ... ok
Test delete_collection. ... ok
Test delete_document. ... ok
Test count, get_ids, get and delete_document on an empty ... ok
Test get_since with a datetime. ... ok
Test get_since with no datetime and check that results are ... ok
Test put and get, and also get_ids and count. ... ok
Test put then another with the same ID. ... ok
Test error handler setup from configuration ... ok
Test CppError type works okay ... ok
Check default handler calls correctly ... ok
Test initialisation of the error handler ... ok
Check we send error to json correctly ... ok
Check that we send errors to sys.stderr if required ... ok
Check the flag that controls sending errors to json works ... Traceback (most recent call last):
  File "/home/matt/maus_littlefield/build/test_error_handler.py", line 81, in test_handle_exception_json
    raise RuntimeError("Test error 1")
RuntimeError: Test error 1
Traceback (most recent call last):
  File "/home/matt/maus_littlefield/build/test_error_handler.py", line 89, in test_handle_exception_json
    raise RuntimeError("Test error 2")
RuntimeError: Test error 2
Traceback (most recent call last):
  File "/home/matt/maus_littlefield/build/test_error_handler.py", line 97, in test_handle_exception_json
    raise RuntimeError("Test error 3")
RuntimeError: Test error 3
ok
Check that we handle the exception correctly (raise, halt, etc) ... Traceback (most recent call last):
  File "/home/matt/maus_littlefield/build/test_error_handler.py", line 133, in test_handle_exception_on_error
    raise RuntimeError("Test error 1")
RuntimeError: Test error 1
Traceback (most recent call last):
  File "/home/matt/maus_littlefield/build/test_error_handler.py", line 141, in test_handle_exception_on_error
    raise RuntimeError("Test error 1")
RuntimeError: Test error 1
Traceback (most recent call last):
  File "/home/matt/maus_littlefield/build/test_error_handler.py", line 149, in test_handle_exception_on_error
    raise RuntimeError("Test error 1")
RuntimeError: Test error 1
Traceback (most recent call last):
  File "/home/matt/maus_littlefield/build/test_error_handler.py", line 154, in test_handle_exception_on_error
    raise RuntimeError("Test error 1")
RuntimeError: Test error 1
ok
Check the flag that controls sending errors to stderr ... ok
Test we can do interface with Cpp correctly ... ok
Test we can evaluate expressions okay ... ok
Test evaluator initialises with math functions ... ok
Test we can reset okay ... ok
Test we can set evaluator variables ... ok
Invoke constructor and check values. ... ok
Invoke constructor with some node_status and check values. ... ok
Test with list of OK node statuses. ... ok
Test with empty list of node statuses. ... ok
Test with list mixing OK and error statuses. ... ok
Test buffer input where N inputs are requested from an ... ok
Test buffer input where N + 1 inputs are requested from an ... ok
Test where 0 inputs are requested from an emitter of length ... ok
Test with a spill that has a "run_num". ... ok
Test with a spill that has a no "run_num". ... ok
Test with a spill no "daq_event_type". ... ok
Test with a spill with "daq_event_type":"end_of_run". ... ok
Test with a spill with "daq_event_type" not equal ... ok
Test with a spill no "daq_event_type". ... ok
Test with a spill with "daq_event_type":"start_of_run". ... ok
Test with a spill with "daq_event_type" not equal ... ok
Test where arguments are valid. ... ok
Test where document store throws an exception. ... ok
Test where arguments are valid. ... ok
Test where "doc_store_class" specifies a non-existant ... ok
Test where "doc_store_class" specifies a non-existant ... ok
Test where "doc_store_class" specifies a class whose ... ok
Test with no "doc_store_class" entry in JSON configuration. ... ok
Test where "doc_store_class" specifies a class but ... ok
Test where "doc_store_class" specifies a class that does ... ok
Invoke constructor and check values. ... ok
Invoke constructor and check values. ... ok
Invoke constructor and check values. ... ok
Invoke constructor and check values. ... ok
Invoke constructor and check values. ... ok
Invoke constructor and check values. ... ok
Invoke constructor and check values. ... ok
Test get_create_transform("MapPyDoNothing") returns MapPyDoNothing. ... ok
Test get_create_transform([]) returns an empty MapPyGroup. ... ok
Test get_create_transform, when given a list of transform names ... ok
Test get_create_transform(123) throws an error. ... ok
Test get_create_transform([123]) throws an error. ... ok
Test get_create_transform(None) throws an error. ... ok
Test get_create_transform([None]) throws an error. ... ok
Test get_create_transform(u"MapPyDoNothing") returns MapPyDoNothing. ... ok
Test get_create_transform("UnknownTransform") throws an error. ... ok
Test get_create_transform(["UnknownTransform"]) throws an error. ... ok
Test get_worker_names(worker) where worker has no sub-workers. ... ok
Test get_worker_names(worker) where worker is a MapPyGroup that ... ok
Test get_worker_names(None). ... ok
Test get_worker_names(worker) where worker is a MapPyGroup that ... ok
Test get_validate_transform("MapPyDoNothing") is OK. ... ok
Test get_validate_transform([]) is OK. ... ok
Test get_validate_transform, when given a list of transform names ... ok
Test get_validate_transform(123) throws an error. ... ok
Test get_validate_transform([123]) throws an error. ... ok
Test get_validate_transform(None) throws an error. ... ok
Test get_validate_transform([None]) throws an error. ... ok
Test get_validate_transform(u"MapPyDoNothing") is OK. ... ok
Test get_validate_transform("UnknownTransform") throws an error. ... ok
Test get_validate_transform(["UnknownTransform"]) throws an error. ... ok
TestCADImport::test_constructor ... ok
TestCADImport::test_parse_xslt ... ok
test_config_reader::test_readconfig ... ok
TestGDMLFormatter::test_constructor ... ok
TestGDMLFormatter::test_format ... ok
TestGDMLFormatter::test_format_check ... ok
TestGDMLFormatter::test_format_materials ... ok
TestGDMLFormatter::test_format_schema_location ... ok
TestGDMLFormatter::test_insert_materials_ref ... ok
TestGDMLFormatter::test_merge_maus_info ... ok
TestGDMLFormatter::test_merge_run_info ... ok
TestPacker::test_constructor ... ok
TestPacker::test_zipfile ... ok
TestUnpacker::test_constructor ... ok
TestUnpacker::test_unzip_file ... ok
TestDownloader::test_beamline_geomtry_for_run ... ok
TestDownloader::test_download_current ... ok
TestDownloader::test_download_geomtry_for_id ... ok
TestDownloader::test_get_ids ... ok
TestUploader::test_check_file_list ... ok
TestUploader::test_constructor ... ok
TestUploader::test_create_file_list ... ok
TestUploader::test_is_filetype ... ok
TestUploader::test_set_upserver ... ok
TestUploader::test_upload_to_cdb ... ok
TestGDMLToMausModule::test_constructor ... ok
TestGDMLToMausModule::test_convert_to_maus ... ok
Invoke process_birth. ... ok
Invoke process_birth where birth throws an exception. ... ok
Invoke process_birth where birth throws a ... ok
Invoke process_birth with a config ID that matches ... ok
Invoke process_birth where death of existing transform throws ... ok
Invoke process_death. ... ok
Invoke process_death where death throws an exception. ... ok
Invoke worker_process_init_callback. ... ok
Test birth. ... ok
Test birth with an invalid JSON configuration document. ... ok
Test birth with a mismatched MAUS version. ... ok
Test birth where birth throws an exception. ... ok
Test birth where the pool throws an exception. ... ok
Test death. ... ok
Test death where death throws an exception. ... ok
Test death where the pool throws an exception. ... ok
Test get_maus_configuration. ... ok
Invoke worker_process_callback. ... ok
Invoke birth ... ok
Invoke birth when a ValueError is thrown by birth. ... ok
Invoke birth when WorkerBirthFailedException is thrown. ... ok
Invoke death. ... ok
Invoke death when a ValueError is thrown by death. ... ok
Invoke death when WorkerDeathFailedException is thrown. ... ok
Test birth when current transform death returns False. ... ok
Invoke initialize. ... ok
Invoke initialize with an unknown transform. ... ok
Test initialize when current transform death returns False. ... ok
Invoke process. ... ok
Invoke death when WorkerDeathFailedException is thrown. ... ok
Invoke process when a ValueError is thrown by process. ... ok
Invoke execute_transform. ... [2012-06-07 11:36:39,265: INFO/MainProcess] None[None]: Task invoked by Unknown
ok
Invoke execute_transform when a ValueError is thrown by ... [2012-06-07 11:36:39,266: INFO/MainProcess] None[None]: Task invoked by Unknown
ok
test_numpy_exists (test_numpy.NumpyTestCase) ... ok
@brief walk up from $MAUS_ROOT_DIR and run pylint looking for errors ... ok
test_geometries (test_root_plot.RootPlotTestCase) ... ok
test_schema (test_schema_schema.TestSchemaSchema) ... ok
test_schema (test_spill_schema.TestSpillSchema) ... ok
Check we can import libxml2 ... ok
Check we can import libxslt ... ok

======================================================================
FAIL: @brief This is the main test - walks the directory structure and looks
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/matt/maus_littlefield/build/test_cpp_style.py", line 289, in test_cpp_style
    msg="Failed cpp style test - detailed output in file:\n"+file_name)
AssertionError: Failed cpp style test - detailed output in file:
/home/matt/maus_littlefield/tmp/cpplint.out

Name                                Stmts   Miss  Cover   Missing
-----------------------------------------------------------------
Configuration                          79      0   100%   
ErrorHandler                           62      1    98%   90
Go                                     50      6    88%   98, 109, 112, 137, 144-145
InputCppDAQData                        74     19    74%   17-19, 29, 33-34, 41-46, 58-60, 65-67, 86-87
InputCppDAQOfflineData                 92     20    78%   17-19, 29, 33-34, 41-46, 58-60, 65-67, 77-79
InputCppRoot                           76     23    70%   17-19, 29, 33-34, 41-46, 58-60, 65-67, 86-91
InputPyEmptyDocument                   18      0   100%   
InputPyJSON                            38      4    89%   85, 88-90
InputPySpillGenerator                  30      0   100%   
MAUS                                  170     84    51%   6-7, 11-12, 16-17, 21-22, 26-27, 31-32, 36-37, 41-42, 46-47, 51-52, 56-57, 61-62, 66-67, 71-72, 76-77, 81-82, 86-87, 91-92, 96-97, 101-102, 106-107, 111-112, 116-117, 121-122, 126-127, 131-132, 136-137, 141-142, 146-147, 151-152, 156-157, 161-162, 166-167, 171-172, 176-177, 181-182, 186-187, 191-192, 196-197, 201-202, 206-207, 211-212
MapCppPrint                            69     17    75%   17-19, 29, 33-34, 41-46, 58-60, 65-67
MapCppSimulation                       70     17    76%   17-19, 29, 33-34, 41-46, 58-60, 65-67
MapCppTOFDigits                        69     17    75%   17-19, 29, 33-34, 41-46, 58-60, 65-67
MapCppTOFMCDigitizer                   75     17    77%   17-19, 29, 33-34, 41-46, 58-60, 65-67
MapCppTOFSlabHits                      69     17    75%   17-19, 29, 33-34, 41-46, 58-60, 65-67
MapCppTOFSpacePoints                   69     17    75%   17-19, 29, 33-34, 41-46, 58-60, 65-67
MapCppTrackerMCDigitization            78     17    78%   17-19, 29, 33-34, 41-46, 58-60, 65-67
MapCppTrackerRecon                     78     17    78%   17-19, 29, 33-34, 41-46, 58-60, 65-67
MapPyBeamMaker                        136      8    94%   157-159, 165-166, 183-184, 269
MapPyCkov                             124      6    95%   50-53, 75, 80
MapPyCkovSecondPeaks                   88      2    98%   54, 59
MapPyDoNothing                         10      0   100%   
MapPyFakeTestSimulation                19      1    95%   51
MapPyGroup                             92      0   100%   
MapPyMCReconSetup                      21      0   100%   
MapPyPrint                             20      0   100%   
MapPyReconSetup                        25      0   100%   
MapPyRemoveTracks                      37      0   100%   
MapPyScalersDump                       78     43    45%   44-46, 57-76, 86, 90, 94, 98, 102, 106, 116-140
MapPyTOFPlot                           84     74    12%   26-36, 40-47, 51-75, 79-94, 98-123
MapPyTestMap                           44      0   100%   
OutputCppRoot                          69     17    75%   17-19, 29, 33-34, 41-46, 58-60, 65-67
OutputPyDoNothing                       7      0   100%   
OutputPyFile                           47      2    96%   115-116
OutputPyImage                          56      0   100%   
OutputPyJSON                           34      6    82%   74-76, 101-103
ROOT                                  346    161    53%   27, 31, 39-53, 56-59, 67-69, 73-74, 94-95, 104, 111, 128-131, 161-165, 174-189, 197-199, 225, 228-230, 238-241, 250-286, 289, 305-306, 315-316, 322-324, 326-327, 350-353, 356, 369-373, 381-396, 404, 416-430, 445, 449-454, 470-471, 480, 485-486, 493-495, 507, 519-522, 547-593
ReduceCppTracker                       70     30    57%   17-19, 29, 33-34, 36-46, 49, 52-55, 58-60, 65-67, 81-83
ReducePyCkov                          229    115    50%   62, 69-70, 76-85, 93-185, 189-213, 325-332, 340-398
ReducePyDoNothing                       9      0   100%   
ReducePyHistogramTDCADCCounts          54      0   100%   
ReducePyMatplotlibHistogram            79      0   100%   
ReducePyROOTHistogram                  77      0   100%   
ReducePyScalers                       134     13    90%   52, 73, 90, 112, 120, 129, 137, 145, 153, 161, 169, 177, 188
ReducePyScalersTable                  123      0   100%   
ReducePyTOFPlot                       312    301     4%   115-147, 158-164, 180-202, 214-246, 264-343, 352-520, 528-540, 548-628
SchemaSchema                            1      0   100%   
SpillSchema                            17      0   100%   
UserList                               78     78     0%   3-88
_LWPCookieJar                          93     93     0%   14-169
_MozillaCookieJar                      68     68     0%   3-149
anyjson                                60     60     0%   4-132
argparse                             1174   1174     0%   3-2347
beam                                  169      2    99%   218, 387
bson                                  353    353     0%   15-567
bson.binary                            44     44     0%   15-193
bson.code                              26     26     0%   15-78
bson.dbref                             48     48     0%   15-138
bson.errors                             6      6     0%   15-38
bson.max_key                           10     10     0%   15-32
bson.min_key                           10     10     0%   15-32
bson.objectid                         111    111     0%   15-268
bson.py3compat                         18     18     0%   15-52
bson.son                              116    116     0%   15-227
bson.timestamp                         34     34     0%   15-96
bson.tz_util                           19     19     0%   15-52
calendar                              381    381     0%   8-708
cdb                                    21     21     0%   46-72
cdb._alarmhandler                     117    117     0%   3-308
cdb._alarmhandler_supermouse           23     23     0%   3-99
cdb._base                             132    132     0%   4-238
cdb._beamline                         161    161     0%   3-479
cdb._beamline_supermouse               53     53     0%   3-215
cdb._cabling                          103    103     0%   3-246
cdb._cabling_supermouse                30     30     0%   3-132
cdb._calibration                       85     85     0%   3-224
cdb._calibration_supermouse            23     23     0%   3-83
cdb._control                           74     74     0%   3-234
cdb._control_supermouse                17     17     0%   3-98
cdb._exceptions                        17     17     0%   3-51
cdb._geometry                          86     86     0%   3-244
cdb._geometry_supermouse               16     16     0%   3-69
cdb._statemachine                      68     68     0%   3-222
cdb._statemachine_supermouse           13     13     0%   3-56
cdb._target                            92     92     0%   3-267
cdb._target_supermouse                 25     25     0%   3-103
celery                                 19     19     0%   2-35
celery.abstract                       105    105     0%   2-210
celery.app                            108    108     0%   2-292
celery.app.abstract                    37     37     0%   1-54
celery.app.annotations                 27     27     0%   1-38
celery.app.base                       163    163     0%   2-392
celery.app.defaults                    65     65     0%   2-255
celery.app.task                       213    213     0%   2-733
celery.backends                        18     18     0%   2-41
celery.backends.amqp                  152    152     0%   2-248
celery.backends.base                  245    245     0%   2-416
celery.concurrency                      5      5     0%   2-16
celery.datastructures                 335    335     0%   2-599
celery.exceptions                      28     28     0%   2-100
celery.loaders                         11     11     0%   2-37
celery.loaders.base                   114    114     0%   2-215
celery.loaders.default                 36     36     0%   2-85
celery.local                          110    110     0%   2-153
celery.log                            193    193     0%   2-366
celery.platforms                      310    310     0%   2-619
celery.registry                        28     28     0%   2-73
celery.result                         206    206     0%   2-542
celery.schedules                      145    145     0%   2-353
celery.signals                         21     21     0%   2-48
celery.states                          31     31     0%   2-117
celery.task                            16     16     0%   2-95
celery.task.base                       26     26     0%   2-124
celery.task.chords                     38     38     0%   2-68
celery.task.control                    81     81     0%   2-240
celery.task.sets                       74     74     0%   2-165
celery.utils                          192    192     0%   2-464
celery.utils.compat                   162    162     0%   2-269
celery.utils.dispatch                   2      2     0%   2-4
celery.utils.dispatch.saferef          78     78     0%   2-280
celery.utils.dispatch.signal           88     88     0%   2-226
celery.utils.encoding                  62     62     0%   2-103
celery.utils.functional                39     39     0%   2-66
celery.utils.mail                      78     78     0%   2-182
celery.utils.patch                     27     27     0%   2-52
celery.utils.serialization             66     66     0%   2-176
celery.utils.term                      99     99     0%   2-163
celery.utils.timeutils                 84     84     0%   2-205
celery.worker                         186    186     0%   2-319
celery.worker.buckets                 161    161     0%   2-338
celery.worker.control                 167    167     0%   2-288
celery.worker.state                    52     52     0%   2-131
contextlib                             63     63     0%   3-154
cookielib                             947    947     0%   28-1794
cpplint                              1043   1043     0%   69-3131
cpplint_exceptions                     34      0   100%   
csv                                   258    258     0%   2-451
ctypes                                335    335     0%   4-549
ctypes._endian                         34     34     0%   4-60
ctypes.util                           183    183     0%   4-270
dateutil                                3      3     0%   7-9
dateutil.parser                       611    611     0%   2-883
dateutil.relativedelta                221    221     0%   7-430
dateutil.rrule                        815    815     0%   7-1095
dateutil.tz                           575    575     0%   7-949
decimal                              2480   2480     0%   20-6149
distutils.sysconfig                   283    283     0%   12-571
distutils.version                      65     65     0%   10-296
docstore                                0      0   100%   
docstore.DocumentStore                 31     10    68%   41, 49, 58, 67, 76, 88, 99, 114, 124, 132
docstore.InMemoryDocumentStore         40      0   100%   
docstore.MongoDBDocumentStore          43     22    49%   60, 69, 78-81, 90, 99, 108, 121-122, 134-138, 153-158, 168, 176, 183
email                                  30     30     0%   5-123
email._parseaddr                      302    302     0%   4-497
email.base64mime                       55     55     0%   5-183
email.base64mime                       55     55     0%   5-183
email.charset                         116    116     0%   5-397
email.charset                         116    116     0%   5-397
email.encoders                         36     36     0%   5-81
email.encoders                         36     36     0%   5-81
email.errors                           16     16     0%   5-56
email.errors                           16     16     0%   5-56
email.feedparser                      306    306     0%   5-484
email.generator                       167    167     0%   4-364
email.header                          235    235     0%   5-514
email.iterators                        32     32     0%   5-73
email.iterators                        32     32     0%   5-73
email.message                         346    346     0%   5-797
email.message                         346    346     0%   5-797
email.mime                              0      0   100%   
email.mime.audio                       24     24     0%   5-73
email.mime.base                         9      9     0%   5-26
email.mime.base                         9      9     0%   5-26
email.mime.image                       14     14     0%   5-46
email.mime.message                     11     11     0%   5-34
email.mime.multipart                   12     12     0%   5-47
email.mime.nonmultipart                 7      7     0%   5-21
email.mime.nonmultipart                 7      7     0%   5-21
email.mime.text                         8      8     0%   5-30
email.mime.text                         8      8     0%   5-30
email.parser                           44     44     0%   5-91
email.quoprimime                      138    138     0%   5-336
email.quoprimime                      138    138     0%   5-336
email.utils                           155    155     0%   5-324
email.utils                           155    155     0%   5-324
encodings.ascii                        19     19     0%   9-42
encodings.cp1252                       20     20     0%   5-307
encodings.hex_codec                    28     28     0%   9-71
encodings.idna                        164    164     0%   3-280
evaluator                              21      0   100%   
framework                               0      0   100%   
framework.input_transform             131    106    19%   103-129, 141-175, 183-190, 200-212, 219, 238-288
framework.merge_output                101     80    21%   103-127, 138-146, 160-177, 195-243, 254-255
framework.multi_process                19      4    79%   63-65, 82-83
framework.single_thread                45      0   100%   
framework.utilities                   107     23    79%   178-185, 194-197, 219-228, 238-242
framework.workers                      56      0   100%   
geometry                                9      0   100%   
geometry.CADImport                     52      5    90%   59, 68, 95, 104, 108
geometry.ConfigReader                  23      0   100%   
geometry.GDMLFormatter                154     10    94%   60, 74-79, 155, 240-241, 258, 285
geometry.GDMLPacker                    54      3    94%   68, 111, 129
geometry.GDMLtoCDB                    123      7    94%   82, 102, 198, 253-256
geometry.GDMLtoMAUSModule              55      2    96%   92, 123
getopt                                103    103     0%   34-210
gzip                                  317    317     0%   8-509
hmac                                   54     54     0%   6-133
httplib                               744    744     0%   69-1392
importlib                              23     23     0%   4-38
io                                     23     23     0%   46-98
json                                   39     39     0%   100-339
json.decoder                          222    222     0%   3-385
json.encoder                          241    241     0%   3-442
json.scanner                           52     52     0%   3-67
kombu                                  38     38     0%   2-85
kombu.abstract                         62     62     0%   11-116
kombu.clocks                           16     16     0%   11-69
kombu.compression                      29     29     0%   11-84
kombu.entity                          106    106     0%   11-526
kombu.exceptions                       23     23     0%   11-68
kombu.messaging                       203    203     0%   11-490
kombu.pidbox                          152    152     0%   11-272
kombu.serialization                   116    116     0%   11-336
kombu.utils                           131    131     0%   11-267
kombu.utils.encoding                   38     38     0%   2-107
kombu.utils.finalize                   49     49     0%   13-88
kombu.utils.functional                 28     28     0%   1-51
kombu.utils.limits                     27     27     0%   11-71
libxml2                              5199   5199     0%   1-9177
libxslt                               705    705     0%   6-1336
matplotlib                            461    461     0%   100-1007
matplotlib._cm                        134    134     0%   7-1812
matplotlib._mathtext_data               7      7     0%   17-2345
matplotlib._pylab_helpers              54     54     0%   5-130
matplotlib.afm                        234    234     0%   37-504
matplotlib.artist                     493    493     0%   1-1219
matplotlib.axes                      3146   3146     0%   1-8459
matplotlib.axis                      1085   1085     0%   4-2040
matplotlib.backend_bases             1152   1152     0%   2-2869
matplotlib.backends                    28     28     0%   2-55
matplotlib.backends.backend_agg       243    243     0%   23-464
matplotlib.backends.backend_mixed      54     54     0%   1-138
matplotlib.backends.backend_pdf      1214   1214     0%   2-2189
matplotlib.backends.backend_ps        958    958     0%   5-1659
matplotlib.backends.backend_svg       662    662     0%   1-1116
matplotlib.bezier                     225    225     0%   6-538
matplotlib.blocking_input             159    159     0%   20-404
matplotlib.cbook                      960    960     0%   5-1862
matplotlib.cm                         149    149     0%   8-312
matplotlib.collections                580    580     0%   11-1323
matplotlib.colorbar                   451    451     0%   21-953
matplotlib.colors                     499    499     0%   51-1194
matplotlib.container                   55     55     0%   1-111
matplotlib.contour                    638    638     0%   5-1250
matplotlib.dates                      497    497     0%   2-1218
matplotlib.delaunay                     4      4     0%   8-11
matplotlib.delaunay.interpolate        42     42     0%   1-160
matplotlib.delaunay.triangulate        92     92     0%   1-211
matplotlib.docstring                   36     36     0%   1-112
matplotlib.dviread                    504    504     0%   22-902
matplotlib.figure                     533    533     0%   14-1459
matplotlib.finance                    253    253     0%   7-722
matplotlib.font_manager               604    604     0%   45-1328
matplotlib.fontconfig_pattern          66     66     0%   22-181
matplotlib.gridspec                   226    226     0%   17-493
matplotlib.image                      655    655     0%   6-1367
matplotlib.legend                     369    369     0%   14-960
matplotlib.legend_handler             266    266     0%   27-595
matplotlib.lines                      563    563     0%   7-1182
matplotlib.markers                    397    397     0%   7-642
matplotlib.mathtext                  1521   1521     0%   20-3135
matplotlib.mlab                      1217   1217     0%   144-3178
matplotlib.mpl                         26     26     0%   1-26
matplotlib.offsetbox                  665    665     0%   18-1676
matplotlib.patches                   1579   1579     0%   3-4236
matplotlib.path                       273    273     0%   5-693
matplotlib.projections                 31     31     0%   1-84
matplotlib.projections.geo            381    381     0%   1-634
matplotlib.projections.polar          317    317     0%   1-645
matplotlib.pylab                       26     26     0%   216-298
matplotlib.pyparsing                 2247   2247     0%   26-3600
matplotlib.pyplot                    1209   1209     0%   17-3081
matplotlib.quiver                     401    401     0%   18-1068
matplotlib.rcsetup                    215    215     0%   16-580
matplotlib.scale                      244    244     0%   1-464
matplotlib.spines                     246    246     0%   1-461
matplotlib.table                      281    281     0%   22-543
matplotlib.texmanager                 302    302     0%   36-611
matplotlib.text                       855    855     0%   4-2010
matplotlib.textpath                   262    262     0%   3-516
matplotlib.ticker                     843    843     0%   127-1612
matplotlib.tight_bbox                  62     62     0%   5-131
matplotlib.transforms                1039   1039     0%   32-2332
matplotlib.tri                          4      4     0%   5-8
matplotlib.tri.triangulation           81     81     0%   1-197
matplotlib.tri.tricontour              59     59     0%   1-287
matplotlib.tri.tripcolor               48     48     0%   1-98
matplotlib.tri.triplot                 28     28     0%   1-77
matplotlib.type1font                  179    179     0%   25-308
matplotlib.units                       39     39     0%   45-144
matplotlib.widgets                    679    679     0%   12-1390
mauscelery                              0      0   100%   
mauscelery.celeryconfig                 9      0   100%   
mauscelery.mausprocess                 49      0   100%   
mauscelery.mausworker                  89      0   100%   
mauscelery.state                       47      0   100%   
mauscelery.tasks                       18      0   100%   
md5                                     6      6     0%   6-14
mimetools                             162    162     0%   4-250
numbers                               132    132     0%   4-391
numpy                                  44     44     0%   110-170
numpy.__config__                       28     28     0%   3-33
numpy._import_tools                   223    223     0%   1-346
numpy.add_newdocs                     244    244     0%   9-5865
numpy.compat                            7      7     0%   11-18
numpy.compat._inspect                 105    105     0%   8-219
numpy.compat.py3k                      43     43     0%   6-58
numpy.core                             35     35     0%   2-42
numpy.core._internal                  364    364     0%   4-588
numpy.core.arrayprint                 267    267     0%   5-524
numpy.core.defchararray               396    396     0%   19-2752
numpy.core.fromnumeric                287    287     0%   2-2529
numpy.core.function_base               21     21     0%   1-166
numpy.core.getlimits                  120    120     0%   4-285
numpy.core.info                         3      3     0%   1-86
numpy.core.machar                     187    187     0%   8-339
numpy.core.memmap                      92     92     0%   1-311
numpy.core.numeric                    494    494     0%   1-2470
numpy.core.numerictypes               376    376     0%   86-948
numpy.core.records                    356    356     0%   38-804
numpy.core.shape_base                  36     36     0%   1-258
numpy.ctypeslib                       184    184     0%   52-420
numpy.dual                             41     41     0%   18-69
numpy.fft                               6      6     0%   2-9
numpy.fft.fftpack                     115    115     0%   33-1125
numpy.fft.helper                       42     42     0%   6-161
numpy.fft.info                          1      1     0%   173
numpy.lib                              33     33     0%   1-38
numpy.lib._datasource                 164    164     0%   35-639
numpy.lib._iotools                    352    352     0%   2-834
numpy.lib.arraysetops                 121    121     0%   31-488
numpy.lib.arrayterator                 72     72     0%   11-195
numpy.lib.financial                    98     98     0%   8-657
numpy.lib.format                      163    163     0%   138-577
numpy.lib.function_base               828    828     0%   1-3518
numpy.lib.index_tricks                272    272     0%   1-901
numpy.lib.info                          2      2     0%   149-150
numpy.lib.npyio                       592    592     0%   1-1615
numpy.lib.polynomial                  370    370     0%   5-1235
numpy.lib.scimath                      54     54     0%   19-559
numpy.lib.shape_base                  201    201     0%   1-839
numpy.lib.stride_tricks                44     44     0%   8-115
numpy.lib.twodim_base                 122    122     0%   5-889
numpy.lib.type_check                  134    134     0%   3-647
numpy.lib.ufunclike                    33     33     0%   5-216
numpy.lib.utils                       515    515     0%   1-1144
numpy.linalg                            5      5     0%   46-52
numpy.linalg.info                       1      1     0%   36
numpy.linalg.linalg                   574    574     0%   12-1969
numpy.ma                               14     14     0%   39-56
numpy.ma.core                        2313   2313     0%   24-7193
numpy.ma.extras                       648    648     0%   11-1923
numpy.matrixlib                         5      5     0%   2-8
numpy.matrixlib.defmatrix             275    275     0%   1-1074
numpy.polynomial                        6      6     0%   16-22
numpy.polynomial.chebyshev            316    316     0%   78-1404
numpy.polynomial.polynomial           203    203     0%   49-931
numpy.polynomial.polytemplate           6      6     0%   12-20
numpy.polynomial.polyutils             73     73     0%   34-394
numpy.random                            9      9     0%   86-102
numpy.random.info                       2      2     0%   86-88
numpy.version                          11     11     0%   3-18
platform                              714    714     0%   3-1614
pydoc                                1477   1477     0%   3-2337
pylab                                   3      3     0%   1-3
pymongo                                26     26     0%   15-116
pymongo.collection                    243    243     0%   15-1194
pymongo.common                        114    114     0%   16-279
pymongo.connection                    399    399     0%   15-1080
pymongo.cursor                        329    329     0%   15-759
pymongo.cursor_manager                 24     24     0%   15-93
pymongo.database                      230    230     0%   15-786
pymongo.errors                         17     17     0%   15-98
pymongo.helpers                        94     94     0%   15-181
pymongo.message                       110    110     0%   15-180
pymongo.pool                          239    239     0%   15-473
pymongo.replica_set_connection        503    503     0%   15-1097
pymongo.son_manipulator                66     66     0%   15-171
pymongo.uri_parser                    113    113     0%   16-282
pytz                                  200    200     0%   12-1524
pytz.exceptions                         6      6     0%   5-42
pytz.tzfile                            81     81     0%   2-133
pytz.tzinfo                           172    172     0%   3-524
quopri                                162    162     0%   3-237
rfc822                                574    574     0%   74-1011
rlcompleter                            73     73     0%   42-170
shelve                                110    110     0%   61-239
shlex                                 229    229     0%   2-292
smtplib                               388    388     0%   3-848
stringprep                             65     65     0%   2-272
subprocess                            633    633     0%   12-1511
suds                                   81     81     0%   17-154
suds.bindings                           1      1     0%   20
suds.bindings.binding                 256    256     0%   17-537
suds.bindings.document                 79     79     0%   17-160
suds.bindings.multiref                 50     50     0%   17-125
suds.bindings.rpc                      44     44     0%   17-98
suds.builder                           78     78     0%   17-120
suds.cache                            177    177     0%   17-337
suds.client                           355    355     0%   17-785
suds.metrics                           35     35     0%   17-62
suds.mx                                18     18     0%   17-59
suds.mx.appender                      122    122     0%   17-316
suds.mx.core                           46     46     0%   17-157
suds.mx.encoded                        77     77     0%   17-133
suds.mx.literal                       141    141     0%   17-291
suds.mx.typer                          46     46     0%   17-122
suds.options                           19     19     0%   17-123
suds.plugin                            68     68     0%   17-257
suds.properties                       232    232     0%   17-543
suds.reader                            59     59     0%   17-169
suds.resolver                         228    228     0%   17-496
suds.sax                               44     44     0%   17-109
suds.sax.attribute                     60     60     0%   17-181
suds.sax.date                         155    155     0%   17-378
suds.sax.document                      31     31     0%   17-61
suds.sax.element                      524    524     0%   17-1147
suds.sax.enc                           22     22     0%   17-79
suds.sax.parser                        86     86     0%   17-139
suds.sax.text                          59     59     0%   17-116
suds.servicedefinition                147    147     0%   17-248
suds.soaparray                         26     26     0%   17-72
suds.store                             25     25     0%   17-594
suds.sudsobject                       263    263     0%   17-390
suds.transport                         39     39     0%   17-130
suds.transport.http                    94     94     0%   17-187
suds.transport.https                   37     37     0%   17-98
suds.umx                               19     19     0%   17-56
suds.umx.attrlist                      25     25     0%   17-88
suds.umx.basic                          9      9     0%   17-41
suds.umx.core                          81     81     0%   17-216
suds.umx.encoded                       50     50     0%   17-128
suds.umx.typed                         60     60     0%   17-141
suds.wsdl                             511    511     0%   17-922
suds.wsse                              91     91     0%   17-212
suds.xsd                               31     31     0%   17-85
suds.xsd.deplist                       64     64     0%   17-140
suds.xsd.doctor                        83     83     0%   17-225
suds.xsd.query                        105    105     0%   17-208
suds.xsd.schema                       209    209     0%   17-419
suds.xsd.sxbase                       277    277     0%   17-669
suds.xsd.sxbasic                      459    459     0%   17-823
suds.xsd.sxbuiltin                     92     92     0%   17-274
urllib2                               807    807     0%   92-1448
uu                                    121    121     0%   27-196
uuid                                  293    293     0%   47-560
validictory                            24     24     0%   3-46
validictory.validator                 270    270     0%   1-490
xboa                                    1      1     0%   1
xboa.Bunch                            880    880     0%   18-1705
xboa.Common                           549    549     0%   18-1028
xboa.Hit                              511    511     0%   18-927
xboa.core                               1      1     0%   1
xml.dom.expatbuilder                  625    625     0%   30-983
xml.parsers                             0      0   100%   
xml.parsers.expat                       2      2     0%   2-4
zipfile                               880    880     0%   4-1437
-----------------------------------------------------------------
TOTAL                               98866  95025     4%   
----------------------------------------------------------------------
Ran 416 tests in 249.531s

FAILED (failures=1)
FAIL!  See logs.