dotnetrawfilereader-sys 0.6.0

A low-level interface to a in-process dotnet runtime for Thermo Fisher's RawFileReader library
Documentation
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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>ThermoFisher.CommonCore.BackgroundSubtraction</name>
    </assembly>
    <members>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings">
            <summary>
            Settings for the background subtraction algorithm.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings.Range1EndTime">
            <summary>
            Gets or sets Background range 1 end time.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings.Range1StartTime">
            <summary>
            Gets or sets Background range 1 start time.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings.Range2EndTime">
            <summary>
            Gets or sets Background range 2 end time.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings.Range2StartTime">
            <summary>
            Gets or sets Background range 2 start time.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings.SelectedRange1">
            <summary>
            Gets or sets a value indicating whether Background range 1 will be used.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings.SelectedRange2">
            <summary>
            Gets or sets a value indicating whether Background range 1 will be used.
            </summary>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor">
            <summary>
            Computes and returns the average subtracted scan
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.Averager">
            <summary>
            Gets Averager.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.GetForeGroundAvgScan(System.Double,System.Double)">
            <summary>
            Calculate the foreground average scan.
            </summary>
            <param name="startTime">
            The start time.
            </param>
            <param name="endTime">
            The end time.
            </param>
            <returns>
            The averaged scan
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.GetBackGroundAverageScan(ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings)">
            <summary>
            Calculate a background average scan.
            </summary>
            <param name="backSettings">
            The background subtraction settings.
            </param>
            <returns>
            The averaged background
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.GetScanStatistics(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReaderPlus,System.Int32,System.Int32,System.String)">
            <summary>
            Get scan statistics.
            </summary>
            <param name="plus">
            The plus.
            </param>
            <param name="start">
            The start scan.
            </param>
            <param name="end">
            The end scan.
            </param>
            <param name="filter">
            The scan filter.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.InitializeScanList(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReader,System.Int32,System.Int32,System.String)">
            <summary>Initializes the scan list.</summary>
            <param name="detectorReader">The detector reader.</param>
            <param name="start">The start.</param>
            <param name="end">The end.</param>
            <param name="filter">The filter.</param>
            <exception cref="T:System.ArgumentNullException">detectorReader</exception>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.InitializeScanList(ThermoFisher.CommonCore.Data.Interfaces.IRawData,System.Int32,System.Int32,System.String)">
            <summary>Initializes the scan list.</summary>
            <param name="rawData">The raw data.</param>
            <param name="start">The start.</param>
            <param name="end">The end.</param>
            <param name="filter">The filter.</param>
            <exception cref="T:System.ArgumentNullException">rawData</exception>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.UpdateScanList(System.String,ThermoFisher.CommonCore.Data.Business.Scan)">
            <summary>Updates the scan list.</summary>
            <param name="filter">The filter.</param>
            <param name="scan">The scan.</param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.GetBackgroundSubtraction(ThermoFisher.CommonCore.Data.Interfaces.IRawData,System.String,ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings,System.Double,System.Double)">
            <summary>
            Computes the average scan and then subtracts the background average scan and 
            return the average subtracted scan.
            </summary>
            <param name="rawFile">
            Raw file to read scans based on time.
            </param>
            <param name="filter">
            scan filter
            </param>
            <param name="backSettings">
            Background Information.
            </param>
            <param name="startTime">
            Foreground StartTime.
            </param>
            <param name="endTime">
            Foreground EndTime.
            </param>
            <returns>
            Scan object containing the subtracted scan.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.GetBackgroundSubtraction(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReader,System.String,ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings,System.Double,System.Double)">
            <summary>
            Computes the average scan and then subtracts the background average scan and 
            return the average subtracted scan.
            </summary>
            <param name="detectorReader">
            Raw file to read scans based on time.
            </param>
            <param name="filter">
            scan filter
            </param>
            <param name="backSettings">
            Background Information.
            </param>
            <param name="startTime">
            Foreground StartTime.
            </param>
            <param name="endTime">
            Foreground EndTime.
            </param>
            <returns>
            Scan object containing the subtracted scan.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.GetBackgroundSubtraction(ThermoFisher.CommonCore.Data.Interfaces.IRawData,System.String,ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings,ThermoFisher.CommonCore.Data.Business.Scan)">
            <summary>
            Computes the average scan and then subtracts the background average scan and 
            return the average subtracted scan.
            </summary>
            <param name="rawFile">
            Raw file to read scans based on time.
            </param>
            <param name="filter">
            scan filter
            </param>
            <param name="backSettings">
            Background Information.
            </param>
            <param name="foreAverageScan">
            Scan which data is subtracted from
            </param>
            <returns>
            The subtracted scan.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractor.GetBackgroundSubtraction(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReader,System.String,ThermoFisher.CommonCore.BackgroundSubtraction.BackgroundSubtractionSettings,ThermoFisher.CommonCore.Data.Business.Scan)">
            <summary>
            Computes the average scan and then subtracts the background average scan and 
            return the average subtracted scan.
            </summary>
            <param name="detectorReader">
            Detector reader to read scans based on time.
            </param>
            <param name="filter">
            scan filter
            </param>
            <param name="backSettings">
            Background Information.
            </param>
            <param name="foreAverageScan">
            Scan which data is subtracted from
            </param>
            <returns>
            The subtracted scan.
            </returns>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint">
            <summary>
            This internal class is used to capture a point in the centroid scan.
            It is specific to the algorithm (internal)
            as it includes values such as "index" used for certain sorting features.
            Also:
            Noise and baseline values are not included in this data structure.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint.Position">
            <summary>
            Gets or sets the mass to charge ratio
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint.Intensity">
            <summary>
            Gets or sets the intensity
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint.Resolution">
            <summary>
            Gets or sets the resolution
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint.Charge">
            <summary>
            Gets or sets the charge
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint.Index">
            <summary>
            Gets or sets the index into the mass ordered list
            </summary>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.ChargeResult">
            <summary>
            The charge result, represents a proposed set of isotopes 
            which have a charge
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ChargeResult.Charge">
            <summary>
            Gets or sets the charge.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ChargeResult.Isotopes">
            <summary>
            Gets or sets the isotopes.
            </summary>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.NamespaceDoc">
            <summary>
            This namespace contains code related to averaging and background
            subtraction of scans. When data is available via the IRawDataPlus interface
            it is often simpler to use these features by extension methods on IRawDataPlus
            which are published in the CommonCore.Data namespace, in the Extensions class.
            </summary>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.NoisePackets">
            <summary>
            The noise packets.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.NoisePackets.Mass">
            <summary>
            Gets or sets the mass.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.NoisePackets.Noise">
            <summary>
            Gets or sets the noise.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.NoisePackets.BaseLine">
            <summary>
            Gets or sets the base line.
            </summary>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator">
             <summary>
             <code>
             This is a variant of the Patterson algorithm for calculating the charge from
             a given set of measured points in a mass segment. The original algorithm
             operates on profile points. Because this degrades the performance of the 
             algorithm significantly for FTMS data (due to their high sampling rate), this
             variant operates on the detected centroids in a given mass segment instead.
            
             The algorithm steps through the given centroid segment and calculates the 
             corresponding charge state for each two neighbors in the segment from their
             mass distance. The calculation is made according to:
            
                 charge_i,n = dM_iso / (m(i+n) - m(i)) 
            
             where dM_iso is the general average delta mass between two isotopic peaks.
             
             For each calculated charge a score is calculated according to:
            
                 score_i,n = y(i+n) * y(i) / y2
            
             where y(i), and y(i+n) are the intensities of the i-th, and the i-th plus one 
             centroid, respectively, and y2 is the intensity of the most intense centroid
             in between them.
            
             All calculated scores are multiplied to the corresponding entry in the 
             provided charge map.
            
             The number of comparisons done in the Patterson charge calculation increases 
             with the square of the number of centroids contained in the segment (exactly 
             this is 0.5 * n * (n-1). To speed up the Patterson charge calculation in 
             those cases where we have a large number of centroids, an intensity threshold 
             is calculated that limits the number of centroid whose intensity is lying 
             above. The ratio behind this is, that the more intense peaks should be the 
             more important ones for the isotopic cluster.
            
            
             POSSIBLE ENHANCEMENTS:
            
             Currently the algorithm does not make benefit of the specific centroids that
             have contributed to the score of a certain charge state in the charge map.
             This information is available, but thrown away once that a charge is entered
             into the map. After determining the charge we have to identify the isotopic 
             cluster to which the charge should be applied. In this step we need again
             the information about the position of the peaks that make up the isotopic 
             cluster. Thus is might be beneficial if we would combine both.
             </code>
             </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.AverageIsotopicDelta">
            <summary>
            The average isotopic delta.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.AverageIsotopicDeltaDeviation">
            <summary>
            The average isotopic delta deviation.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.ChargeMapDensity">
            <summary>
            The charge map density.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.DeltaCharge">
            <summary>
            The delta charge.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.MaxCentroidsForPattersonCharge">
            <summary>
            The max centroids for patterson charge.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.MaxChargeState">
            <summary>
            The max charge state.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.PattersonHighChargeUpscaleFactor">
            <summary>
            The patterson high charge upscale factor.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator"/> class.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.CalculatePattersonCharge(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Int32,System.Int32,System.Double,System.Double)">
            <summary>
            Calculates a distribution of possible charge states based upon
            the pairwise distances between the centroid peaks.
            </summary>
            <param name="centroids">
                data for scan
            </param>
            <param name="beginRangeIndex">
                The start of the centroid segment to analyze.
            </param>
            <param name="endRangeIndex">
                The end of the centroid segment to analyze.
            </param>
            <param name="profileSpacing">
                The spacing of profile points. This spacing is used to calculate the maximum theoretical charge for which the isotopic pattern could be resolved.
            </param>
            <param name="massAccuracy">
                The mass accuracy to apply for the identification of the isotopic cluster peaks.
            </param>
            <returns>
            The calculated patterson charge.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.FastMax(System.Double[])">
            <summary>
            Find the max value in an array of doubles.
            (don't use slow LINQ extension Max() )
            </summary>
            <param name="arrayOfDoubles">Numbers to examine</param>
            <returns>max, or 0 if empty</returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.CalculateIntensityThreshold(System.Int32,System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Int32,System.Int32)">
            <summary>
            Calculate an intensity threshold for a given range of centroids.
            </summary>
            <param name="maxCentroidsAboveThreshold">
            The maximum number of centroids that should lie above the calculated  threshold.
            </param>
            <param name="centroids">
            data for scan
            </param>
            <param name="beginRangeIndex">
            begin of the centroid
            </param>
            <param name="endRangeIndex">
            end of the centroid
            </param>
            <returns>
            The calculated intensity threshold.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.FindCount(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Int32,System.Int32,System.Double)">
            <summary>
            Finds the count of values above the threshold
            </summary>
            <param name="centroids">
            List of Centroids
            </param>
            <param name="startIndex">
            Start of array slice to analyze
            </param>
            <param name="endIndex">
            End of array slice to analyze
            </param>
            <param name="intensityThreshold">The smallest counted value
            </param>
            <returns>
            The count above threshold
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.GetChargeMapIndexForCharge(System.Double)">
            <summary>
            Get the charge map index for a specific charge.
            </summary>
            <param name="charge">
            The charge.
            </param>
            <returns>
            The charge map index for this charge.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.IndexOfMax(System.Double[])">
            <summary>
            Find the index of max value in an array of doubles
            </summary>
            <param name="arrayOfDoubles">Numbers to examine</param>
            <returns>Index of max, or -1 if list is empty</returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PattersonChargeCalculator.NormalizeChargeMap(System.Double[])">
            <summary>
            Smooth, normalize and transfer the local map to the result charge map.
            </summary>
            <param name="localChargeMap">
            The local charge map.
            </param>
            <returns>
            The smoothed map.
            </returns>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator">
            <summary>
            The peak charge calculator.
            Calculates charge for one peak in the centroid list.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.AverageIsotopicDelta">
            <summary>
            The average isotopic delta.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.AverageIsotopicDeltaDeviation">
            <summary>
            The average isotopic delta deviation.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.ChargeEvaluationScoreSepartion">
            <summary>
            The charge evaluation score separation.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.ChargeEvaluationTolerance">
            <summary>
            The charge evaluation tolerance.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.ChargeMapDensity">
            <summary>
            The charge map density.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.DefaultMassAccuracy">
            <summary>
            The default mass accuracy. PPM.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.DeltaCharge">
            <summary>
            The delta charge.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.MaxHighMassRangeForChargeDetermination">
            <summary>
            The max high mass range for charge determination.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.MaxIsotopicPeaksPerCluster">
            <summary>
            The max isotopic peaks per cluster.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.MaxLowMassRangeForChargeDetermination">
            <summary>
            The max low mass range for charge determination.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.MaxOrder">
            <summary>
            The max order for FT.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.MinOrder">
            <summary>
            The min order for FT.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator" /> class.
            Default constructor
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.MassAccuracy">
            <summary>
            Gets or sets the mass accuracy, in PPM. Default 5 PPM.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.CentroidBegin(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CentroidPositionComparer,ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint)">
            <summary>
            Find index of first mass in range.
            </summary>
            <param name="massSortedCentroidList">
            The mass sorted centroid list.
            </param>
            <param name="centroidPositionComparer">
            The centroid position comparer.
            </param>
            <param name="lowerCentroid">
            The lower centroid.
            </param>
            <returns>
            The index of first mass in range.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.CalculateChargeForPeak(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CentroidPositionComparer,ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint)">
            <summary>
            Calculate charge for peak.
            </summary>
            <param name="segmentList">
            The segment list.
            </param>
            <param name="massSortedCentroidList">
            The mass sorted centroid list.
            </param>
            <param name="centroidPositionComparer">
            The centroid position comparer.
            </param>
            <param name="centroid">
            The peak whose charge is needed.
            </param>
            <returns>
            The <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.ChargeResult"/>.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.CalculateChargeMapScores(System.Double[],System.Int32,System.Double,System.Double[])">
            <summary>
            The calculate charge map scores.
            </summary>
            <param name="fftVector">
            The FFT vector.
            </param>
            <param name="halfSize">
            The half size.
            </param>
            <param name="fftSpacing">
            The FFT spacing.
            </param>
            <param name="localChargeMap">
            The local charge map.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.CalculateComplexModulus(System.Double[],System.Int32)">
            <summary>
            The calculate complex modulus.
            </summary>
            <param name="fftVector">
            The FFT vector.
            </param>
            <param name="halfSize">
            The half size.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.CalculateFftCharge(System.Double[],ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Int32,System.Int32,System.Double)">
            <summary>
            Calculates a distribution of possible charge states based upon
            an FFT analysis of the input profile spectrum.
            </summary>
            <param name="chargeMap">
            charge map object to fill the scores for the Patterson calculation info
            </param>
            <param name="segments">
            Profile data to be analyzed
            </param>
            <param name="startIndex">
            start of the profile segment to analyze
            </param>
            <param name="endIndex">
            end of the profile segment to analyze.
            </param>
            <param name="profileSpacing">
            The spacing of profile points. This spacing is used to calculate the maximum theoretical charge
            for which the isotopic pattern could be resolved.
            </param>
            <returns>
            The map
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.CentroidEnd(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CentroidPositionComparer,ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint)">
            <summary>
            Find the centroid end.
            </summary>
            <param name="massSortedCentroidList">
            The mass sorted centroid list.
            </param>
            <param name="centroidPositionComparer">
            The centroid position comparer.
            </param>
            <param name="upperCentroid">
            The upper centroid.
            </param>
            <returns>
            The centroid end.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.EvaluateChargeMap(System.Double[])">
            <summary>
            Evaluate the given charge map and report the best scored charge
            if it is both, valid and significant.
            </summary>
            <param name="chargeMapList">
            charge map list to evaluate.
            </param>
            <returns>
            highest scored charge in the map
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.FindProfileSpacing(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Int32,System.Int32)">
            <summary>
            find profile spacing.
            </summary>
            <param name="segmentList">
            The segment list.
            </param>
            <param name="begin">
            The begin.
            </param>
            <param name="end">
            The end.
            </param>
            <returns>
            The profile spacing.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.IdentifyIsotopicCluster(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Int32,System.Int32,System.Double)">
            <summary>
            Identifies a possible isotopic cluster.
            </summary>
            <param name="centroidList">
            The list of centroids to process
            </param>
            <param name="centerPointer">
            The center of the isotopic cluster to identify
            </param>
            <param name="charge">
            The charge of the isotopic cluster.
            </param>
            <param name="massAccuracy">
            The mass accuracy to apply for the identification of the isotopic cluster peaks.
            </param>
            <returns>
            The identify isotopic cluster and assign charge.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.IndexOfMax(System.Double[],System.Int32,System.Int32)">
            <summary>
            The index of max element.
            </summary>
            <param name="listofDoubles">
            The list of doubles.
            </param>
            <param name="from">
            The from.
            </param>
            <param name="to">
            The to.
            </param>
            <returns>
            The index.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.IndexOfMax(System.Double[])">
            <summary>
            Find the index of max value in a list of doubles
            </summary>
            <param name="listofDoubles">Numbers to examine</param>
            <returns>Index of max, or -1 if list is empty</returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.IndexOfMinimum(System.Double[],System.Int32,System.Int32)">
            <summary>
            Gets the index of minimum.
            </summary>
            <param name="listofDoubles">
            The list of doubles.
            </param>
            <param name="from">
            The from index.
            </param>
            <param name="to">
            The to index.
            </param>
            <returns>
            The index of min.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.LookAboveCenterMass(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Int32,System.Int32,System.Int32,System.Collections.Generic.List{System.Int32},System.Collections.Generic.List{System.Int32},System.Double,System.Double,System.Double)">
            <summary>
            Look above center mass.
            </summary>
            <param name="centroidList">
            The centroid list.
            </param>
            <param name="charge">
            The charge.
            </param>
            <param name="endPointer">
            The end pointer.
            </param>
            <param name="centerPointer">
            The center pointer.
            </param>
            <param name="isotopes">
            The isotopes.
            </param>
            <param name="tempIsotopes">
            The temp isotopes.
            </param>
            <param name="maxStep">
            The max step.
            </param>
            <param name="massAccuracy">
            The mass accuracy.
            </param>
            <param name="minStep">
            The min step.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.LookBelowCenterMass(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Int32,System.Int32,System.Int32,System.Collections.Generic.List{System.Int32},System.Collections.Generic.List{System.Int32},System.Double,System.Double,System.Double)">
            <summary>
            Look below the center mass.
            </summary>
            <param name="centroidList">
            The centroid list.
            </param>
            <param name="charge">
            The charge.
            </param>
            <param name="beginPointer">
            The begin pointer.
            </param>
            <param name="centerPointer">
            The center pointer.
            </param>
            <param name="isotopes">
            The isotopes.
            </param>
            <param name="tempIsotopes">
            The temp isotopes.
            </param>
            <param name="maxStep">
            The max step.
            </param>
            <param name="massAccuracy">
            The mass accuracy.
            </param>
            <param name="minStep">
            The min step.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.LowerBound(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Double)">
            <summary>
            Lower bound. This method returns the first value which is within range
            </summary>
            <param name="segmentList">
            The segment list.
            </param>
            <param name="lower">
            The lower.
            </param>
            <returns>
            The lower bound.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.NormalizeChargeMap(System.Double[],System.Double[])">
            <summary>
            Normalize the charge map.
            </summary>
            <param name="chargeMap">
            The charge map.
            </param>
            <param name="localChargeMap">
            The local charge map.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.UpperBound(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Double)">
            <summary>
            Upper bound. This method returns the first value which is out of range
            </summary>
            <param name="segmentList">
            The segment list.
            </param>
            <param name="upper">
            The upper mass limit.
            </param>
            <returns>
            The upper bound.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.PeakChargeCalculator.CalculateCharge(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Int32,System.Int32,System.Double,System.Int32,System.Double,System.Int32)">
            <summary>
            Calculate the charge.
            </summary>
            <param name="segmentList">
                The segment list.
            </param>
            <param name="massSortedCentroidList">
                The mass sorted centroid list.
            </param>
            <param name="end">
                The end.
            </param>
            <param name="begin">
                The begin.
            </param>
            <param name="profileSpacing">
                The profile spacing.
            </param>
            <param name="centroidBegin">
                The centroid begin.
            </param>
            <param name="massAccuracy">
                The mass accuracy.
            </param>
            <param name="centroidEnd">
                The centroid end.
            </param>
            <returns>
            The calculated charge.
            </returns>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager">
            <summary>
            This class owns and manages a Scan that is produced by averaging a list of scans.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.RawDataReaderPlus">
            <summary>
            Gets the raw data plus.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.ScanCreator">
            <summary>
            Gets or sets the scan reader.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.CacheLimit">
            <summary>
            Gets or sets the limit to the number of scans which may be kept in a cache.
            This is valuable when many scan averages are requested from a raw file, with overlapping scan ranges.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.FromFile(ThermoFisher.CommonCore.Data.Interfaces.IRawData,System.Int32)">
            <summary>
            Factory Method to return the IScanAverage interface.
            </summary>
            <param name="data">
            Access to the raw data, to read the scans.
            </param>
            <param name="cacheLimit">
            Permits the FT averaging algorithm to cache a number of scans. Default 20 
            </param>
            <returns>
            An interface to average scans.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.FromDetector(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReader,System.Int32)">
            <summary>
            Factory Method to return the IScanAverage interface.
            </summary>
            <param name="rawDataReader">
            Access to the raw data, to read the scans.
            </param>
            <param name="cacheLimit">
            Permits the FT averaging algorithm to cache a number of scans. Default 20 
            </param>
            <returns>
            An interface to average scans.
            </returns>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.FtOptions">
            <summary>
            Gets or sets options For FT or Orbitrap data.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.GetAverageScanInTimeRange(System.Double,System.Double,System.String)">
            <summary>
            Gets the average scan between the given times.
            Mass tolerance is taken from default values in the raw file
            If "PermitRedirection" and the supplied raw file reader supports IScanAverage,
            then the averaging is performed by the file reading tool.
            </summary>
            <param name="startTime">
            start time
            </param>
            <param name="endTime">
            end time
            </param>
            <param name="filter">
            filter string
            </param>
            <returns>
            returns the averaged scan.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.GetAverageScanInTimeRange(System.Double,System.Double,System.String,System.Double,ThermoFisher.CommonCore.Data.ToleranceMode)">
            <summary>
            Gets the average scan between the given times.
            If "PermitRedirection" and the supplied raw file reader supports IScanAverage,
            then the averaging is performed by the file reading tool.
            </summary>
            <param name="startTime">
            start time
            </param>
            <param name="endTime">
            end time
            </param>
            <param name="filter">
            filter string
            </param>
            <param name="tolerance">
            mass tolerance
            </param>
            <param name="toleranceMode">
            unit of tolerance
            </param>
            <returns>
            returns the averaged scan.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.ScanRangeFromTimeRange(System.Tuple{System.Double,System.Double})">
            <summary>
            Convert a time range to a scan range
            </summary>
            <param name="timeRange">
            The time range.
            </param>
            <returns>
            The scan range.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.AverageScanInScanRange(System.String,System.Double,ThermoFisher.CommonCore.Data.ToleranceMode,System.Tuple{System.Int32,System.Int32})">
            <summary>
            Average scan in a given scan range.
            </summary>
            <param name="filter">
            The filter.
            </param>
            <param name="tolerance">
            The tolerance.
            </param>
            <param name="toleranceMode">
            The tolerance mode.
            </param>
            <param name="scans">
            The start scan (Item1) and end scan (Item2).
            </param>
            <returns>
            The average of the scans in range which match the filter.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.GetAverageScanInScanRange(System.Int32,System.Int32,System.String)">
            <summary>
            Gets the average scan between the given times.
            Mass tolerance is taken from default values in the raw file
            If "PermitRedirection" and the supplied raw file reader supports IScanAverage,
            then the averaging is performed by the file reading tool.
            </summary>
            <param name="startScan">
            start scan
            </param>
            <param name="endScan">
            end scan
            </param>
            <param name="filter">
            filter string
            </param>
            <returns>
            returns the averaged scan.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.GetAverageScanInScanRange(System.Int32,System.Int32,System.String,System.Double,ThermoFisher.CommonCore.Data.ToleranceMode)">
            <summary>
            Gets the average scan between the given times.
            If "PermitRedirection" and the supplied raw file reader supports IScanAverage,
            then the averaging is performed by the file reading tool.
            </summary>
            <param name="startScan">
            start scan
            </param>
            <param name="endScan">
            end scan
            </param>
            <param name="filter">
            filter string
            </param>
            <param name="tolerance">
            mass tolerance
            </param>
            <param name="toleranceMode">
            unit of tolerance
            </param>
            <returns>
            returns the averaged scan.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.AverageSpectra(System.Collections.Generic.List{ThermoFisher.CommonCore.Data.Business.ScanStatistics})">
            <summary>
            Calculates the average spectra based upon the list supplied.
            If "PermitRedirection" and the supplied raw file reader supports IScanAverage,
            then the averaging is performed by the file reading tool.
            </summary>
            <param name="scanStatsList">
            list of ScanStatistics
            </param>
            <returns>
            The average of all scans in the list
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.#ctor(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReaderBase)">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager"/> class.
            </summary>
            <param name="data">
            The data.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.AverageScans(System.Boolean,System.Double,ThermoFisher.CommonCore.Data.ToleranceMode,System.Boolean)">
            <summary>
            Calculates the average scan given the list of scans.
            </summary>
            <param name="userTolerance">
            To use User Tolerance or not
            </param>
            <param name="tolerance">
            Tolerance value
            </param>
            <param name="unitType">
            Types of Tolerance units (MMU,PPM...)
            </param>
            <param name="alwaysMergeSegments">Always merge segments, regardless of mass range (where there is only one segment)</param>
            <returns>
            The averaged scans.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.AverageFtProfiles(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.Data.Interfaces.IScanCreator)">
            <summary>
            Average ft profiles.
            </summary>
            <param name="firstScan">
                The first scan.
            </param>
            <param name="ftmsScanCreator">tool to read and cache scans</param>
            <returns>
            The average of the listed scans.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.AddAllScansToAverage(System.Int32,ThermoFisher.CommonCore.Data.Business.Scan,System.Int32@)">
            <summary>
            Add all scans to the average.
            </summary>
            <param name="scanInList">
            The scan in list.
            </param>
            <param name="averageScan">
            The average scan so far.
            </param>
            <param name="scanCount">
            The scan count.
            </param>
            <returns>
            The averaged scan.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.AddScanToAverage(ThermoFisher.CommonCore.Data.Business.Scan,System.Int32@,System.Int32)">
            <summary>
            Add a scan to the average, provided it can be merged (is compatible) with the
            average so far.
            </summary>
            <param name="averageScan">
            Average so far
            </param>
            <param name="scanCount">
            Count of scans successfully added to the average
            </param>
            <param name="indexOfScanToAdd">
            Index into table of scans
            </param>
            <returns>
            The updated scan
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.GetIndexOfScanWithHighestTic(System.Int32)">
            <summary>
            Find the scan number with the highest TIC value
            </summary>
            <param name="scansInList">
            number of scans to search
            </param>
            <returns>
            index into ScanStatsList with largest TIC
            </returns>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.RawFileToleranceMode">
            <summary>
            Gets RawFileToleranceMode.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.ConvertToleranceMode(ThermoFisher.CommonCore.Data.ToleranceUnits)">
            <summary>
            convert tolerance mode.
            </summary>
            <param name="unit">
            The unit.
            </param>
            <returns>
            The <see cref="T:ThermoFisher.CommonCore.Data.ToleranceMode"/>.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.GetScanStatistics(System.Int32,System.Int32,System.String)">
            <summary>
            Get the scan statistics.
            </summary>
            <param name="start">
            The start scan.
            </param>
            <param name="end">
            The end scan.
            </param>
            <param name="filter">
            The filter.
            </param>
            <returns>
            The list of scan statistics for scans matching the filter.
            </returns>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAverager.ScansCached">
            <summary>
            Gets or sets the number of scans which may be cached.
            Setting ScansCached &gt;0 will enable caching of recently read scans.
            This is useful if averaging multiple overlapping ranges of scans.
            </summary>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus">
            <summary>
            Implements the IScanAveragePlus interface against a raw file
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.#ctor(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReaderPlus)">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus"/> class.
            </summary>
            <param name="rawDataReaderPlus">
            The raw data reader plus.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.FromFile(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReaderPlus)">
            <summary>
            Factory Method to return the IScanAverage interface.
            </summary>
            <param name="rawData">
            Access to the raw data, to read the scans.
            </param>
            <returns>
            An interface to average scans.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.FromDetector(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReader)">
            <summary>
            Factory Method to return the IScanAverage interface.
            </summary>
            <param name="detectorReader">
            Access to the raw data, to read the scans.
            </param>
            <returns>
            An interface to average scans.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.AverageScansInTimeRange(System.Double,System.Double,System.String,ThermoFisher.CommonCore.Data.Business.MassOptions)">
            <summary>
            Gets the average scan between the given times.
            </summary>
            <param name="startTime">
            start time
            </param>
            <param name="endTime">
            end time
            </param>
            <param name="filter">
            filter string
            </param>
            <param name="options">mass tolerance settings. If not supplied, these are default from the raw file</param>
            <returns>
            the averaged scan. Use Scan.ScansCombined to find how many scans were averaged.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.AverageScansInTimeRange(System.Double,System.Double,ThermoFisher.CommonCore.Data.Interfaces.IScanFilter,ThermoFisher.CommonCore.Data.Business.MassOptions)">
            <summary>
            Gets the average scan between the given times.
            </summary>
            <param name="startTime">
            start time
            </param>
            <param name="endTime">
            end time
            </param>
            <param name="filter">
            filter rules
            </param>
            <param name="options">mass tolerance settings. If not supplied, these are default from the raw file</param>
            <returns>
            the averaged scan. Use Scan.ScansCombined to find how many scans were averaged.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.AverageScansInScanRange(System.Int32,System.Int32,System.String,ThermoFisher.CommonCore.Data.Business.MassOptions)">
            <summary>
            Gets the average scan between the given times.
            </summary>
            <param name="startScan">
            start scan
            </param>
            <param name="endScan">
            end scan
            </param>
            <param name="filter">
            filter string
            </param>
            <param name="options">mass tolerance settings. If not supplied, these are default from the raw file</param>
            <returns>
            the averaged scan. Use Scan.ScansCombined to find how many scans were averaged.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.AverageScansInScanRange(System.Int32,System.Int32,ThermoFisher.CommonCore.Data.Interfaces.IScanFilter,ThermoFisher.CommonCore.Data.Business.MassOptions)">
            <summary>
            Gets the average scan between the given times.
            </summary>
            <param name="startScan">
            start scan
            </param>
            <param name="endScan">
            end scan
            </param>
            <param name="filter">
            filter rules
            </param>
            <param name="options">mass tolerance settings. If not supplied, these are default from the raw file</param>
            <returns>
            the averaged scan. Use Scan.ScansCombined to find how many scans were averaged.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.MakeScanStatsListPlus(System.Int32,System.Int32,ThermoFisher.CommonCore.Data.Business.ScanFilterHelper)">
            <summary>
            Make scan stats list plus.
            </summary>
            <param name="startScan">
            The start scan.
            </param>
            <param name="endScan">
            The end scan.
            </param>
            <param name="filterHelper">
            The filter helper.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.AverageScans(System.Collections.Generic.List{ThermoFisher.CommonCore.Data.Business.ScanStatistics},ThermoFisher.CommonCore.Data.Business.MassOptions)">
            <summary>
            Calculates the average spectra based upon the list supplied.
            The application should filter the data before making this code, to ensure that
            the scans are of equivalent format. The result, when the list contains scans of 
            different formats (such as linear trap MS centroid data added to orbitrap MS/MS profile data) is undefined.
            If the first scan in the list contains "FT Profile",
            then the FT data profile is averaged for each
            scan in the list. The combined profile is then centroided.
            If the first scan is profile data, but not orbitrap data:
            All scans are summed, starting from the final scan in this list, moving back to the first scan in
            the list, and the average is then computed.
            For simple centroid data formats: The scan stats "TIC" value is used to find the "most abundant scan".
            This scan is then used as the "first scan of the average".
            Scans are then added to this average, taking scans alternatively before and after
            the apex, merging data within tolerance.
            </summary>
            <param name="scanStatsList">
            list of ScanStatistics
            </param>
            <param name="options">mass tolerance settings. If not supplied, these are default from the raw file</param>
            <returns>
            The average of the listed scans. Use Scan.ScansCombined to find how many scans were averaged.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.AverageScans(System.Collections.Generic.List{System.Int32},ThermoFisher.CommonCore.Data.Business.MassOptions,System.Boolean)">
            <summary>
            Calculates the average spectra based upon the list supplied.
            The application should filter the data before making this code, to ensure that
            the scans are of equivalent format. The result, when the list contains scans of 
            different formats (such as linear trap MS centroid data added to orbitrap MS/MS profile data) is undefined.
            If the first scan in the list contains "FT Profile",
            then the FT data profile is averaged for each
            scan in the list. The combined profile is then centroided.
            If the first scan is profile data, but not orbitrap data:
            All scans are summed, starting from the final scan in this list, moving back to the first scan in
            the list, and the average is then computed.
            For simple centroid data formats: The scan stats "TIC" value is used to find the "most abundant scan".
            This scan is then used as the "first scan of the average".
            Scans are then added to this average, taking scans alternatively before and after
            the apex, merging data within tolerance.
            </summary>
            <param name="scans">
            list of scans to average
            </param>
            <param name="options">mass tolerance settings. If not supplied, these are default from the raw file</param>
            <param name="alwaysMergeSegments">
            Merge data from scans
            which were not scanned over a similar range.
            Only applicable when scans only have a single segment.
            By default: Scans are considered incompatible if:
            The span of the scanned mass range differs by 10%
            The start or end of the scanned mass range differs by 10%
            If this is set as "true" then any mass ranges will be merged.
            Default: false
            </param>
            <returns>
            The average of the listed scans. Use Scan.ScansCombined to find how many scans were averaged.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.SubtractScans(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.Data.Business.MassOptions)">
            <summary>
            Subtracts the background scan from the foreground scan
            </summary>
            <param name="foreground">Foreground data (Left of "scan-scan" operation</param>
            <param name="background">Background data (right of"scan-scan" operation)</param>
            <param name="options">(optional) mass tolerance options. If this is null,
            tolerance which is already configured in "foreground" is used</param>
            <returns>The result of foreground-background</returns>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ScanAveragerPlus.ScanReader">
            <summary>
            Gets or sets the scan reader.
            </summary>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromFileCreator">
            <summary>
            Get scan data from a raw data, based on a know list of scans.
            Can avoid getting the same can multiple times, using a cache.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromFileCreator.CacheLimit">
            <summary>
            Gets or sets the cache limit.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromFileCreator.Initialize(System.Collections.Generic.List{System.Int32},System.Int32)">
            <inheritdoc />
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromFileCreator.#ctor(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReaderBase)">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromFileCreator"/> class.
            </summary>
            <param name="rawDataReader">
            The raw file.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromFileCreator.CreateSegmentedScan(System.Int32)">
            <summary>
            create segmented scan.
            </summary>
            <param name="index">
            The index into the supplied table of scans (on construction)
            </param>
            <returns>
            The <see cref="T:ThermoFisher.CommonCore.Data.Business.SegmentedScan"/>.
            </returns>
            <exception cref="T:System.ArgumentOutOfRangeException">when index is outside of the scan numbers array
            </exception>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromFileCreator.CreateCentroidStream(System.Int32)">
            <summary>
            Create a centroid stream.
            </summary>
            <param name="index">
            The index into the supplied table of scans (on construction)
            </param>
            <returns>
            The <see cref="T:ThermoFisher.CommonCore.Data.Business.CentroidStream"/>.
            </returns>
            <exception cref="T:System.ArgumentOutOfRangeException">when index is outside of the scan numbers array
            </exception>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromListCreator">
            <summary>
            Class to support background subtract, which uses a scan list, instead of a raw file for a data
            source. 
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromListCreator.#ctor(System.Collections.Generic.List{ThermoFisher.CommonCore.Data.Business.Scan})">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromListCreator"/> class.
            </summary>
            <param name="scanList">
            The scan list.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromListCreator.CreateSegmentedScan(System.Int32)">
            <summary>
            create segmented scan.
            </summary>
            <param name="index">
            The index into the scan table.
            </param>
            <returns>
            The <see cref="T:ThermoFisher.CommonCore.Data.Business.SegmentedScan"/>.
            </returns>
            <exception cref="T:System.ArgumentOutOfRangeException">when index is out of range for the scan list
            </exception>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromListCreator.CreateCentroidStream(System.Int32)">
            <summary>
            create centroid stream.
            </summary>
            <param name="index">
            The index into the scan list.
            </param>
            <returns>
            The <see cref="T:ThermoFisher.CommonCore.Data.Business.CentroidStream"/>.
            </returns>
            <exception cref="T:System.ArgumentOutOfRangeException">when index is out of range
            </exception>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromThreadedFileCreator">
            <summary>
            Get scan data from a file, based on a known list of scans.
            Using multiple threads read scans in parallel, up to the cache limit.
            If multiple passes over data are needed,
            this can avoid getting the same scan more than once from the raw file, 
            if the cache is large enough.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromThreadedFileCreator.#ctor(ThermoFisher.CommonCore.Data.Interfaces.IRawFileThreadManager,ThermoFisher.CommonCore.Data.Business.InstrumentSelection,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromThreadedFileCreator"/> class.
            </summary>
            <param name="rawFile">
                The raw file.
            </param>
            <param name="requiredInstrument">Instrument whole scans are to be read</param>
            <param name="includeReferencePeaks">set if reference and exception peaks must be read. Default false</param>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromThreadedFileCreator.CacheLimit">
            <summary>
            Gets or sets the cache limit.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromThreadedFileCreator.CreateCentroidStream(System.Int32)">
            <summary>
            Create a centroid stream.
            </summary>
            <param name="index">
            The index into the supplied table of scans (on construction)
            </param>
            <returns>
            The <see cref="T:ThermoFisher.CommonCore.Data.Business.CentroidStream"/>.
            </returns>
            <exception cref="T:System.ArgumentOutOfRangeException">when index is outside of the scan numbers array
            </exception>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromThreadedFileCreator.CreateSegmentedScan(System.Int32)">
            <summary>
            create segmented scan.
            </summary>
            <param name="index">
            The index into the supplied table of scans (on construction)
            </param>
            <returns>
            The <see cref="T:ThermoFisher.CommonCore.Data.Business.SegmentedScan"/>.
            </returns>
            <exception cref="T:System.ArgumentOutOfRangeException">when index is outside of the scan numbers array
            </exception>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromThreadedFileCreator.Initialize(System.Collections.Generic.List{System.Int32},System.Int32)">
            <inheritdoc />
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.ScanFromThreadedFileCreator.CacheScans(System.Collections.Generic.List{System.Int32},System.Int32,System.Int32)">
            <summary>
            Add some scans to the cache.
            </summary>
            <param name="scanNumbers">
            The scan numbers.
            </param>
            <param name="startCacheIndex">
            The start cache index. Cache from this index in the scan numbers.
            </param>
            <param name="endCacheIndexExclusive">
            The end cache index exclusive. Cache up to but not including this index in scan numbers.
            </param>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager">
            <summary>
            Class for averaging a set of spectra.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FtOptions">
            <summary>
            Gets or sets Options which can be used to control the Ft / Orbitrap averaging
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager"/> class. 
            Default constructor
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.MaxPeakSamplesForDetection">
            <summary>
            The max peak samples for detection.
            </summary>
        </member>
        <member name="F:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ZeroPointCompressionLimit">
            <summary>
            The zero point compression limit.
            </summary>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindSegmentedScan">
            <summary>
            Find a segmented scan.
            </summary>
            <param name="scanNumber">
            The scan number.
            </param>
            <returns>The found scan</returns>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindCentroids">
            <summary>
            Find centroid data.
            </summary>
            <param name="scanNumber">
            The scan number.
            </param>
            <returns>The found centroids.</returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.GetAverage(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReaderBase,System.Collections.Generic.List{ThermoFisher.CommonCore.Data.Business.ScanStatistics},ThermoFisher.CommonCore.Data.Business.Scan,System.Int32,ThermoFisher.CommonCore.Data.Interfaces.IScanCreator)">
            <summary>
            Create the average scan from a collection of raw scans.
            </summary>
            <param name="rawFile">The file containing scans to average.
            </param>
            <param name="scanStatistics">
            The collection of raw scans to average
            </param>
            <param name="firstScan">
            The first scan in the set to average.
            </param>
            <param name="cacheLimit">
            (optional) set the number of items which can be internally cached (default 20)  
            </param>
            <param name="scanCreator">optional tool to provide scans. 
            If this is not supplied, then scan data is read in a single threaded manner using the supplied raw
            data interface, and cached as per the supplied cache limits. </param>
            <returns>
            The averaged scan. 
            </returns>
            <exception cref="T:System.ArgumentNullException">
            <c>rawFile</c> is null.
            </exception>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.GetAverage(ThermoFisher.CommonCore.Data.Interfaces.IRawData,System.Collections.Generic.List{System.Int32},ThermoFisher.CommonCore.Data.Business.Scan,System.Int32)">
            <summary>
            Create the average scan from a collection of raw scans.
            </summary>
            <param name="rawFile">The file containing scans to average
            </param>
            <param name="scanNumbers">
            The collection of raw scans to average
            </param>
            <param name="firstScan">
            The first scan in the set to average.
            </param>
            <param name="cacheLimit">
            (optional) set the number of items which can be internally cached (default 20)  
            </param>
            <returns>
            The averaged scan.
            </returns>
            <exception cref="T:System.ArgumentNullException">
            <c>rawFile</c> is null.
            </exception>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData">
            <summary>
            Internal representation of re-sampled data
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData"/> class.
            </summary>
            <param name="totalPoints">
            The total points.
            </param>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData.Masses">
            <summary>
            Gets or sets Masses.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData.Intensities">
            <summary>
            Gets or sets Intensities.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData.Length">
            <summary>
            Gets Length.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.GetAverage(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReaderBase,ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindSegmentedScan,System.Collections.Generic.List{System.Int32},ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindCentroids)">
            <summary>
            Create the average scan from a collection of raw scans.
            </summary>
            <param name="rawDataReader">file which has data to average</param>
            <param name="segmentedScanCreator">
            method to return segmented scans when requested (by scan list index)
            </param>
            <param name="scanNumbers">
            The collection of raw scans to average
            </param>
            <param name="firstScan">
            The first scan in the set to average.
            </param>
            <param name="centroidStreamCreator">
            method to return centroids streams from the list of scans when requested
            </param>
            <returns>
            The number of scans that were actually averaged.
            </returns>
            <exception cref="T:System.ArgumentNullException">
            <c>rawFile</c> is null.
            </exception>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.Subtract(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.Data.Business.Scan)">
            <summary>
            Creates a difference of two raw scans.
            The returned scans count of "scans combined" is
            the total number of scans combined in each of the
            foreground and background scans.
            </summary>
            <param name="foregroundScan">
            The scan containing signal.
            </param>
            <param name="backgroundScan">
            The scan containing background
            </param>
            <returns>
            foregroundScan - backgroundScan
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.Add(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.Data.Business.Scan)">
            <summary>
            Creates a sum of two scans.
            The returned scans count of "scans combined" is
            the total number of scans combined in each of the
            first and second scans.
            </summary>
            <param name="firstScan">
            The first scan.
            </param>
            <param name="secondScan">
            The second scan
            </param>
            <returns>
            first scan + second scan
            </returns>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.PartProfileMasses">
            <summary>
            The part profile masses.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.PartProfileMasses.Mass">
            <summary>
            Gets or sets a set of masses for profile points.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.PartProfileMasses.Filled">
            <summary>
            Gets or sets number of filled array points.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CreateTargetSpectrum(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindSegmentedScan,System.Int32,ThermoFisher.CommonCore.Data.Business.MassToFrequencyConverter@)">
            <summary>
            Create the target array for keeping the averaged profile points.
            </summary>
            <param name="firstScan">
            The first Scan.
            </param>
            <param name="findSegmentedScan">
            The find Segmented Scan.
            </param>
            <param name="scans">
            The scans.
            </param>
            <param name="massToFrequencyConverter">
            The target Spectrum Parameters.
            </param>
            <returns>
            The created target spectrum.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CreateProfilePoints(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.PartProfileMasses})">
            <summary>
            create profile points.
            </summary>
            <param name="massTable">
            The mass table.
            </param>
            <returns>
            Points containing masses and 0 intensity
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CreateMassTable(ThermoFisher.CommonCore.Data.Business.MassToFrequencyConverter)">
            <summary>
            The create mass table.
            </summary>
            <param name="massToFrequencyConverter">
            The target spectrum parameters.
            </param>
            <returns>
            The masses for each profile point.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.SumUpSpectraResampled(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindSegmentedScan,ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Int32)">
            <summary>
            Create the average profile spectrum.
            </summary>
            <param name="scanCreator">
            tool to return scans
            </param>
            <param name="segmentList">
            segment List
            </param>
            <param name="scans">
            The number of scans to sum
            </param>
            <returns>
            The summed up spectra.
            </returns>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.Resampler">
            <summary>
            The re-sampler.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.Resampler.#ctor(System.Double[],ThermoFisher.CommonCore.Data.Business.SegmentedScan,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.Resampler"/> class.
            </summary>
            <param name="masses">
            The masses.
            </param>
            <param name="scanData">
            The scan data.
            </param>
            <param name="scans">
            The scans.
            </param>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.Resampler.Result">
            <summary>
            Gets Result.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.Resampler.Execute">
            <summary>
            Method executed in parallel
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.Resampler.ResampleScan(System.Double[],ThermoFisher.CommonCore.Data.Business.SegmentedScan,System.Int32)">
            <summary>
            re-sample a scan.
            </summary>
            <param name="resampledMasses">
            The re-sampled masses.
            </param>
            <param name="scanData">
            The scan data.
            </param>
            <param name="scansAveraged">
            The scans averaged.
            </param>
            <returns>
            The set of resampled peaks, which must be merged into the final scan.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.SumUpSpectraResampledParallel2(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindSegmentedScan,ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Int32,System.Int32)">
            <summary>
            Create the average profile spectrum.
            Each scan is analyzed: Determining mass regions which contain non-zero data,
            and re-sampling the intensity data aligned to a set of output bins.
            After all scans have been re-sampled, the re-sampled data has to be merged into the final output.
            </summary>
            <param name="scanCreator">
            tool to return scans
            </param>
            <param name="segmentList">
            segment List
            </param>
            <param name="scans">
            The number of scans to sum
            </param>
            <param name="taskBatching">
            The minimum number of Resample tasks per thread.
            Creating resampled data for profiles is a fairly fast task. It may be inefficient to queue workers to
            created the merged data for each scan in the batch.
            Setting this >1 will reduce threading overheads, when averaging small batches of scans with low intensity peaks.
            This parameter only affects the re-sampling, as the final merge of the re-sampled data is single threaded.
            </param>
            <returns>
            The re-sampled and summed up spectra.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.MergeData(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.MergeActions,ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData)">
            <summary>
            The merge data.
            </summary>
            <param name="toMerge">
            The to merge.
            </param>
            <param name="resampled">
            The resampled.
            </param>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.MergeActions">
            <summary>
            private class to hold an index/value pair.
            This records the data which needs to be added to the re-sampled total.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.MergeActions.Indexes">
            <summary>
            Gets or sets Indexes.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.MergeActions.Values">
            <summary>
            Gets or sets Values.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.MergeActions.Filed">
            <summary>
            Gets or sets Filed.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.SubtractSpectraResampled(System.Collections.Generic.List{ThermoFisher.CommonCore.Data.Business.Scan},ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData)">
            <summary>
            Create the Subtracted profile spectrum.
            </summary>
            <param name="scanList">
            The foreground and background scans
            </param>
            <param name="segmentList">The re-sampled mass and intensity arrays.
            </param>
            <returns>
            The subtracted profile
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.SumSpectraResampled(System.Collections.Generic.List{ThermoFisher.CommonCore.Data.Business.Scan},ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData)">
            <summary>
            Create the Summed profile spectrum, for the "Add" method
            </summary>
            <param name="scanList">
            The scans to add
            </param>
            <param name="segmentList">The re-sampled mass and intensity arrays.
            </param>
            <returns>
            The subtracted profile
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CentroidizeProfileSpectrum(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData)">
             <summary>
             Determines the centroids of all peaks in the given spectrum.
             <para>
             For the centroid the position, intensity and resolution are calculated.
             The resolution is the calculated as the quotient of the position and the 
             width of the peak.
             </para>
             <para>
             The following algorithm calculates the centroid as the vertex of a second 
             order parabola laid through the top three points of a peak. If the width 
             cannot be determined directly from the profile peak (e.g. because of 
             overlapping peaks), the full width at half height (FWHH) of the parabola
             fitted to determine the centroid position is used (see below). This width
             is usually smaller than the real peak width for FT data.
             </para>
             <para>
             This algorithm simplifies the calculation by moving the x coordinate of the 
             top three points to -1, 0 and +1, respectively. This is only applicable if 
             the points are equidistant, which would be exactly true for the spectrum
             in frequency domain, and is a valid approximation for the spectrum in mass
             domain.
             </para>
             <code>
             Parabola: y = a(x-xv)^2 + yv
            
             1. Find maximum and two surrounding points:
                Given  p1(x1,y1); p2(x2,y2); p3(x3,y3) 
            
                if     dx = x2 - x1 = x3 - x2
                and    x2 = n * dx
            
             2. Map the three points to the unity interval [-1, 1]:
                p1'(-1,y1);p2'(0,y2);p3'(1,y3) - This simplifies the calculations.
            
             3. Calculate center offset dxc', height yc, and width w'
                (dxc' and w' are in unity units):
            
                a    = 0.5 * (y1+y3) - y2;
                dxc' = (y1-y3) / 4a
                yc   = y2 - a * dxc'^2
                w'   = 2.0 * sqrt(yc/2|a|)
            
             4. Calculate center and width:
                xc = x2 + dxc' * dx
                w  = w' * dx
             </code>
             </summary>
             <param name="segmentScan">
             List of segments to be converted to centroids
             </param>
             <returns>
             The centroids detected.
             </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CalculateNoiseInfo(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReaderBase,ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindCentroids,System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Collections.Generic.List{System.Int32},System.Boolean)">
            <summary>
            Recalculates the baseline and noise information for the averaged spectrum.
            </summary>
            <param name="rawData">Raw file reader</param>
            <param name="scanCreator">
            The scan Creator.
            </param>
            <param name="centroidStream">
            The centroid Stream.
            </param>
            <param name="scanNumbers">
            The scans.
            </param>
            <param name="useOriginalNoiseAlgorithm">If true, use noise algorithm from Xcalibur</param>
            <returns>
            The calculated noise packets.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CalculateNoiseInfo(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindCentroids,System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Collections.Generic.List{System.Int32})">
            <summary>
            Recalculates the baseline and noise information for the averaged spectrum.
            </summary>
            <param name="scanCreator">
            The scan Creator.
            </param>
            <param name="centroidStream">
            The centroid Stream.
            </param>
            <param name="scanNumbers">
            The scans.
            </param>
            <returns>
            The calculated noise packets.
            </returns>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseInformation">
            <summary>
            The noise information.
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseInformation.ScanAlignedNoise">
            <summary>
            Gets or sets the scan aligned noise.
            This is data for each mass in the centroid scan
            </summary>
        </member>
        <member name="P:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseInformation.RawFileNoise">
            <summary>
            Gets or sets the noise data as recorded in a raw file.
            This data need not be aligned with the scan masses.
            Values for each mass can be interpolated from this table.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CalculateNoiseInfoUsingNoiseTable(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReaderPlus,System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Collections.Generic.List{System.Int32})">
            <summary>
            Recalculates the baseline and noise information for the averaged spectrum.
            </summary>
            <param name="filePlus">Tool to read noise data</param>
            <param name="centroidStream">
            The centroid Stream.
            </param>
            <param name="scanNumbers">
            The scans.
            </param>
            <returns>
            The calculated noise packets.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.BuildNoiseDataForScan(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},ThermoFisher.CommonCore.Data.Business.NoiseAndBaseline[])">
            <summary>
            build noise data for scan.
            Applies the noise and baseline data to a scan, making a noise table.
            </summary>
            <param name="centroidStream">
            The centroid stream.
            </param>
            <param name="noiseAndBaselines">
            The noise and baselines (input).
            </param>
            <returns>
            The <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.NoisePackets"/>.
            </returns>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseFromScans">
            <summary>
            Class to obtain noise from a 2 scan: foreground (0) or background (1).
            Designed to create a function delegate, needed by
            the noise generation algorithm.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseFromScans.#ctor(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.Data.Business.Scan)">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseFromScans"/> class.
            </summary>
            <param name="foreground">
            The scan to subtract from.
            </param>
            <param name="background">
            The (background) scan to be subtracted.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseFromScans.NoiseAndBaselinesFromScan(System.Int32)">
            <summary>
            Get The noise and baselines from a file.
            </summary>
            <param name="index">
            The index.
            </param>
            <returns>
            The Noise data based on the index
            </returns>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseFromFile">
            <summary>
            Class to obtain noise from a file.
            Designed to create a function delegate, needed by
            the noise generation algorithm.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseFromFile.#ctor(ThermoFisher.CommonCore.Data.Interfaces.IDetectorReaderPlus,System.Collections.Generic.List{System.Int32})">
            <summary>
            Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseFromFile"/> class.
            </summary>
            <param name="rawDataReaderPlus">
            The file.
            </param>
            <param name="scanNumbers">
            The scan numbers.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseFromFile.NoiseAndBaselinesFromFile(System.Int32)">
            <summary>
            Get The noise and baselines from a file.
            </summary>
            <param name="index">
            The index.
            </param>
            <returns>
            The Noise data based on the index
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CreateNoiseAndBaselines(System.Func{System.Int32,ThermoFisher.CommonCore.Data.Business.NoiseAndBaseline[]},System.Int32)">
            <summary>
            create noise and baselines.
            </summary>
            <param name="noiseReader">
            The noise Reader.
            </param>
            <param name="scans">
            The scans.
            </param>
            <returns>
            The noise and baselines (averaged)
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.InterpolateValues(System.Double,System.Double,System.Double,System.Double,System.Double@)">
            <summary>
            Interpolate noise or baseline value.
            </summary>
            <param name="currentValue">
            The current value.
            </param>
            <param name="previousValue">
            The previous value.
            </param>
            <param name="currentMass">
            The current mass.
            </param>
            <param name="previousMass">
            The previous mass.
            </param>
            <param name="slope">
            The slope.
            </param>
            <returns>
            The interpolated value.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CalculateAndAssignChargeStates(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint})">
            <summary>
            The function determines the charge state of the peaks in    
            the spectrum and assign the calculated charge to the 
            centroids of the corresponding isotopic cluster.
            <para>
            The functions tries to determine the charge states of the peaks in the 
            spectrum and to assign the calculated charges to the centroids of the 
            corresponding isotopic clusters in the spectrum.
            The algorithm tries to determine charges for the top peaks in the spectrum. 
            The algorithm tries at most MaxChargeDeterminations, or until the peak 
            intensity falls below a calculated noise level in the spectrum, whichever 
            comes first.
            </para>
            <para>
            The charge determination is done by going through the spectrum starting with
            the most intense peak. The calculation is done on a small interval around the 
            peak centroid ([centroid - 1.5 Da/1200.0, centroid + 1.5 Da]).
            Two independent approaches are used for the charge calculation: 
            </para>
            <code>
            1. Calculation of an FFT on the profile points, and
            2. Calculation by considering the centroid distances (Patterson charge 
               calculations).
            </code>
            <para>
            The two charge calculation algorithms fill a charge histogram map. This 
            histogram is then analyzed for exhibiting a top scored charge that has a 
            clear separation from the second best hit.
            If there is a clear best hit for the charge, this charge is assigned to the 
            corresponding isotopic cluster. This is the most difficult part of the charge
            assignment. For details how the isotopic cluster is identified see the 
            description on the charge assignment routine (-> AssignCharge()).
            </para>
            </summary>
            <param name="segmentList">
            The profile for the scan.
            </param>
            <param name="massSortedCentroidList">
            List of centroids to assign charges to
            </param>
            <returns>
            The points with charge states.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.AssignCharge(ThermoFisher.CommonCore.BackgroundSubtraction.ChargeResult,System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint})">
            <summary>
            assign charge.
            </summary>
            <param name="result">
            The result of charge calculation.
            </param>
            <param name="massSortedCentroidList">
            The mass sorted centroid list.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CompressProfileSpectrum(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData)">
            <summary>
            Compress the averaged profile spectrum to reduce its memory footprint.
            The sampling rate of the FT instruments is very high. Due to the very high
            resolution of these instruments, the spectra are often quite empty. i.e. 
            that there are large areas of zero intensities between the two peaks.
            It is sufficient that we keep only a small number of consecutive zero intensity 
            points. We do not remove them entirely because this will have strange effects 
            on smoothing routines (currently we keep at most eight consecutive zero 
            intensity points. This is sufficient to enable 15-point smoothing over the 
            spectrum).
            </summary>
            <param name="segmentList">
            The segment list.
            </param>
            <returns>
            The compressed data.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FillAverageScan(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.NoiseInformation,ThermoFisher.CommonCore.Data.Business.MassToFrequencyConverter)">
            <summary>
            Fill the target raw scan provided by the caller with the result of the average calculation.
            </summary>
            <param name="firstScan">
            the first scan in the set to average
            </param>
            <param name="segmentScan">
            List holding the averaged segmented scan
            </param>
            <param name="centroidStream">
            Holding the averaged centroid stream
            </param>
            <param name="noiseInformation">
            Noise and baseline data
            </param>
            <param name="massToFrequencyConverter">
            Mass calibration for target scan
            </param>
            <returns>
            The filled average scan.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.GetTic(ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.ProfileData,System.Double[])">
            <summary>
            get tic.
            </summary>
            <param name="segmentScan">
            The segment scan.
            </param>
            <param name="resampledIntensities">
            The re-sampled intensities.
            </param>
            <returns>
            The Tic of the intensities
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindMaxElement(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint})">
            <summary>
            find max element.
            </summary>
            <param name="centroids">
            The centroids.
            </param>
            <returns>
            The CentroidStreamPoint object which has the largest intensity
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CalculateTargetSpectrumParameters(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindSegmentedScan,System.Int32)">
            <summary>
            Calculates and retrieves the necessary parameters for creating 
            the averaged scan from the the given set of raw scans to average.
            </summary>
            <param name="firstScan">
            The first Scan.
            </param>
            <param name="findSegmentedScan">
            The find Segmented Scan.
            </param>
            <param name="scans">
            The scans.
            </param>
            <returns>
            The calculated target spectrum parameters.
            </returns>
        </member>
        <member name="T:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CentroidPositionComparer">
            <summary>
            The centroid position comparer.
            </summary>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CentroidPositionComparer.Compare(ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint,ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint)">
            <summary>
            Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
            </summary>
            <returns>
            Value               Condition 
            Less than zero      <paramref name="x"/> is less than <paramref name="y"/>.
            Zero                <paramref name="x"/> equals <paramref name="y"/>.
            Greater than zero   <paramref name="x"/> is greater than <paramref name="y"/>.
            </returns>
            <param name="x">
            The first object to compare.
            </param>
            <param name="y">
            The second object to compare.
            </param>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CompareIntenisities(ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint,ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint)">
            <summary>
            Compare intensities.
            </summary>
            <param name="left">
            The left point.
            </param>
            <param name="right">
            The right point.
            </param>
            <returns>
            1 if left less than right
            -1 if left greater than right
            0 if left and right are equal
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.FindMaxElement(System.Collections.Generic.List{ThermoFisher.CommonCore.BackgroundSubtraction.CentroidStreamPoint},System.Int32,System.Int32)">
            <summary>
            Finds the CentroidStreamPoint object which contains the maximum Intensity
            </summary>
            <param name="centroids">
            List of Centroids
            </param>
            <param name="startIndex">
            Start of array slice to analyze
            </param>
            <param name="endIndex">
            End of array slice to analyze
            </param>
            <returns>
            The CentroidStreamPoint object which has the largest intensity
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CalculateDeltaFrequency(ThermoFisher.CommonCore.Data.Business.SegmentedScan,ThermoFisher.CommonCore.Data.Business.MassToFrequencyConverter)">
            <summary>
            Calculates the delta frequency for the given DataPeaks.
            </summary>
            <param name="scan">
            Segmented Scan
            </param>
            <param name="massToFrequencyConverter">
            Calibration data for target scan
            </param>
            <returns>
            The calculated delta frequency.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CreateCentroidStream(System.Int32)">
            <summary>
            Create the CentroidStream object with the given size.
            </summary>
            <param name="size">The number of peaks in this stream.
            </param>
            <returns>
            An empty centroid stream, with arrays allocated to the indicated size.
            </returns>
        </member>
        <member name="M:ThermoFisher.CommonCore.BackgroundSubtraction.SpectrumAverager.CreateSegmentedScan(System.Int32,System.Double[],System.Double[],ThermoFisher.CommonCore.Data.Interfaces.IRangeAccess)">
            <summary>
            Create the <see cref="T:ThermoFisher.CommonCore.Data.Business.SegmentedScan"/> object withe given size, and attach the mass and intensity arrays.
            </summary>
            <param name="size">The number of mass/intensity pairs.
            </param>
            <param name="masses">
            Mass data for scan 
            </param>
            <param name="intensities">
            Intensity data for scan 
            </param>
            <param name="segmentRange">Mass range of the scan.</param>
            <returns>
            An scan with the mass and intensity data attached.
            </returns>
        </member>
    </members>
</doc>