1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546
|
<HTML>
<HEAD>
<TITLE>MSExperiment< PeakT, ChromatogramPeakT > Class Template Reference</TITLE>
<LINK HREF="doxygen.css" REL="stylesheet" TYPE="text/css">
<LINK HREF="style_ini.css" REL="stylesheet" TYPE="text/css">
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<A href="index.html">Home</A> ·
<A href="classes.html">Classes</A> ·
<A href="annotated.html">Annotated Classes</A> ·
<A href="modules.html">Modules</A> ·
<A href="functions_func.html">Members</A> ·
<A href="namespaces.html">Namespaces</A> ·
<A href="pages.html">Related Pages</A>
<HR style="height:1px; border:none; border-top:1px solid #c0c0c0;">
<!-- Generated by Doxygen 1.8.5 -->
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceOpenMS.html">OpenMS</a></li><li class="navelem"><a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> |
<a href="classOpenMS_1_1MSExperiment-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">MSExperiment< PeakT, ChromatogramPeakT > Class Template Reference<div class="ingroups"><a class="el" href="group__Kernel.html">Kernel</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p>Representation of a mass spectrometry experiment.
<a href="classOpenMS_1_1MSExperiment.html#details">More...</a></p>
<p><code>#include <<a class="el" href="MSExperiment_8h_source.html">OpenMS/KERNEL/MSExperiment.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for MSExperiment< PeakT, ChromatogramPeakT >:</div>
<div class="dyncontent">
<div class="center">
<img src="classOpenMS_1_1MSExperiment.png" usemap="#MSExperiment< PeakT, ChromatogramPeakT >_map" alt=""/>
<map id="MSExperiment< PeakT, ChromatogramPeakT >_map" name="MSExperiment< PeakT, ChromatogramPeakT >_map">
<area href="classOpenMS_1_1RangeManager.html" alt="RangeManager< 2 >" shape="rect" coords="0,56,278,80"/>
<area href="classOpenMS_1_1ExperimentalSettings.html" title="Description of the experimental settings. " alt="ExperimentalSettings" shape="rect" coords="288,56,566,80"/>
<area href="classOpenMS_1_1PersistentObject.html" title="Base class for all persistent objects. " alt="PersistentObject" shape="rect" coords="576,56,854,80"/>
<area href="classOpenMS_1_1MetaInfoInterface.html" title="Interface for classes that can store arbitrary meta information (Type-Name-Value tuples). " alt="MetaInfoInterface" shape="rect" coords="144,0,422,24"/>
<area href="classOpenMS_1_1DocumentIdentifier.html" title="Manage source document information. " alt="DocumentIdentifier" shape="rect" coords="432,0,710,24"/>
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr><td colspan="2"><div class="groupHeader">Base type definitions</div></td></tr>
<tr class="memitem:a698f324c36214cc6ffb30a4868a88b2b"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classPeakT.html">PeakT</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a698f324c36214cc6ffb30a4868a88b2b">PeakType</a></td></tr>
<tr class="memdesc:a698f324c36214cc6ffb30a4868a88b2b"><td class="mdescLeft"> </td><td class="mdescRight">Peak type. <a href="#a698f324c36214cc6ffb30a4868a88b2b">More...</a><br/></td></tr>
<tr class="separator:a698f324c36214cc6ffb30a4868a88b2b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5de1db69904b11c688819feb60559d98"><td class="memItemLeft" align="right" valign="top">typedef ChromatogramPeakT </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a></td></tr>
<tr class="memdesc:a5de1db69904b11c688819feb60559d98"><td class="mdescLeft"> </td><td class="mdescRight">Chromatogram peak type. <a href="#a5de1db69904b11c688819feb60559d98">More...</a><br/></td></tr>
<tr class="separator:a5de1db69904b11c688819feb60559d98"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a167f63a2d1a578a83eb07c33a25a8f43"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1DRange.html">DRange</a>< 2 > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a167f63a2d1a578a83eb07c33a25a8f43">AreaType</a></td></tr>
<tr class="memdesc:a167f63a2d1a578a83eb07c33a25a8f43"><td class="mdescLeft"> </td><td class="mdescRight">Area type. <a href="#a167f63a2d1a578a83eb07c33a25a8f43">More...</a><br/></td></tr>
<tr class="separator:a167f63a2d1a578a83eb07c33a25a8f43"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a181486a43da338e31f089df7661f50bb"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1Peak2D.html#a063d40a3528749f1a905ab04d76387e0">PeakType::CoordinateType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a></td></tr>
<tr class="memdesc:a181486a43da338e31f089df7661f50bb"><td class="mdescLeft"> </td><td class="mdescRight">Coordinate type of peak positions. <a href="#a181486a43da338e31f089df7661f50bb">More...</a><br/></td></tr>
<tr class="separator:a181486a43da338e31f089df7661f50bb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a221361082f641c3fccc58e9bc66aeee1"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1Peak2D.html#a4a8c5b2adc05e9ff96a007385bfe9b47">PeakType::IntensityType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a221361082f641c3fccc58e9bc66aeee1">IntensityType</a></td></tr>
<tr class="memdesc:a221361082f641c3fccc58e9bc66aeee1"><td class="mdescLeft"> </td><td class="mdescRight">Intenstiy type of peaks. <a href="#a221361082f641c3fccc58e9bc66aeee1">More...</a><br/></td></tr>
<tr class="separator:a221361082f641c3fccc58e9bc66aeee1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a035217389fa12c02d059ddfb29c459e1"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a>< 2 > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a035217389fa12c02d059ddfb29c459e1">RangeManagerType</a></td></tr>
<tr class="memdesc:a035217389fa12c02d059ddfb29c459e1"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classOpenMS_1_1RangeManager.html" title="Handles the managment of a position and intensity range. ">RangeManager</a> type. <a href="#a035217389fa12c02d059ddfb29c459e1">More...</a><br/></td></tr>
<tr class="separator:a035217389fa12c02d059ddfb29c459e1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a066042ae14211da37d4fa66d466bfa3e"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1MSSpectrum.html">MSSpectrum</a>< <a class="el" href="classOpenMS_1_1MSExperiment.html#a698f324c36214cc6ffb30a4868a88b2b">PeakType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a></td></tr>
<tr class="memdesc:a066042ae14211da37d4fa66d466bfa3e"><td class="mdescLeft"> </td><td class="mdescRight">Spectrum Type. <a href="#a066042ae14211da37d4fa66d466bfa3e">More...</a><br/></td></tr>
<tr class="separator:a066042ae14211da37d4fa66d466bfa3e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5bfc152a01835ee1a12f01241b4eda50"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a><br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a5bfc152a01835ee1a12f01241b4eda50">ChromatogramType</a></td></tr>
<tr class="memdesc:a5bfc152a01835ee1a12f01241b4eda50"><td class="mdescLeft"> </td><td class="mdescRight">Chromatogram type. <a href="#a5bfc152a01835ee1a12f01241b4eda50">More...</a><br/></td></tr>
<tr class="separator:a5bfc152a01835ee1a12f01241b4eda50"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08f107173406c1c71a7127eebef82515"><td class="memItemLeft" align="right" valign="top">typedef std::vector< <a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a08f107173406c1c71a7127eebef82515">Base</a></td></tr>
<tr class="memdesc:a08f107173406c1c71a7127eebef82515"><td class="mdescLeft"> </td><td class="mdescRight">STL base class type. <a href="#a08f107173406c1c71a7127eebef82515">More...</a><br/></td></tr>
<tr class="separator:a08f107173406c1c71a7127eebef82515"><td class="memSeparator" colspan="2"> </td></tr>
<tr><td colspan="2"><div class="groupHeader">Iterator type definitions</div></td></tr>
<tr class="memitem:a3049e1d8765313f967f17885188d767c"><td class="memItemLeft" align="right" valign="top">typedef std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a> >::<a class="el" href="classOpenMS_1_1MSExperiment.html#a0bc3019d7d2ff6c73f261836bff0af3a">iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a></td></tr>
<tr class="memdesc:a3049e1d8765313f967f17885188d767c"><td class="mdescLeft"> </td><td class="mdescRight">Mutable iterator. <a href="#a3049e1d8765313f967f17885188d767c">More...</a><br/></td></tr>
<tr class="separator:a3049e1d8765313f967f17885188d767c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aee0a1a68d0fab63eefa6e14010b4a7f0"><td class="memItemLeft" align="right" valign="top">typedef std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a> ><br class="typebreak"/>
::<a class="el" href="classOpenMS_1_1MSExperiment.html#ae8163da75e575365fc14d7dbf3ea74de">const_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a></td></tr>
<tr class="memdesc:aee0a1a68d0fab63eefa6e14010b4a7f0"><td class="mdescLeft"> </td><td class="mdescRight">Non-mutable iterator. <a href="#aee0a1a68d0fab63eefa6e14010b4a7f0">More...</a><br/></td></tr>
<tr class="separator:aee0a1a68d0fab63eefa6e14010b4a7f0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9aa8e2a39a1767b456c47000d2ae1a56"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1Internal_1_1AreaIterator.html">Internal::AreaIterator</a><br class="typebreak"/>
< <a class="el" href="classPeakT.html">PeakT</a>, <a class="el" href="classPeakT.html">PeakT</a> &, <a class="el" href="classPeakT.html">PeakT</a> <br class="typebreak"/>
*, <a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a>, typename <br class="typebreak"/>
<a class="el" href="classOpenMS_1_1MSSpectrum.html#a6d64276a665c3c0dca8fb4ade3c8b477">SpectrumType::Iterator</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a9aa8e2a39a1767b456c47000d2ae1a56">AreaIterator</a></td></tr>
<tr class="memdesc:a9aa8e2a39a1767b456c47000d2ae1a56"><td class="mdescLeft"> </td><td class="mdescRight">Mutable area iterator type (for traversal of a rectangular subset of the peaks) <a href="#a9aa8e2a39a1767b456c47000d2ae1a56">More...</a><br/></td></tr>
<tr class="separator:a9aa8e2a39a1767b456c47000d2ae1a56"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0dd6c8130427f887b79db48cfd58181a"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1Internal_1_1AreaIterator.html">Internal::AreaIterator</a><br class="typebreak"/>
< const <a class="el" href="classPeakT.html">PeakT</a>, const <a class="el" href="classPeakT.html">PeakT</a> <br class="typebreak"/>
&, const <a class="el" href="classPeakT.html">PeakT</a> <br class="typebreak"/>
*, <a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a>, typename <br class="typebreak"/>
<a class="el" href="classOpenMS_1_1MSSpectrum.html#a4895afe86c2aa0747ae0411c58c82114">SpectrumType::ConstIterator</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a0dd6c8130427f887b79db48cfd58181a">ConstAreaIterator</a></td></tr>
<tr class="memdesc:a0dd6c8130427f887b79db48cfd58181a"><td class="mdescLeft"> </td><td class="mdescRight">Immutable area iterator type (for traversal of a rectangular subset of the peaks) <a href="#a0dd6c8130427f887b79db48cfd58181a">More...</a><br/></td></tr>
<tr class="separator:a0dd6c8130427f887b79db48cfd58181a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_types_classOpenMS_1_1RangeManager"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classOpenMS_1_1RangeManager')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager< 2 ></a></td></tr>
<tr class="memitem:aba01db17f4a2bfbc3db60dc172972a25 inherit pub_types_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"></td></tr>
<tr class="memdesc:aba01db17f4a2bfbc3db60dc172972a25"><td class="mdescLeft"> </td><td class="mdescRight">Dimension of the position range. <a href="classOpenMS_1_1RangeManager.html#aba01db17f4a2bfbc3db60dc172972a25">More...</a><br/></td></tr>
<tr class="separator:aba01db17f4a2bfbc3db60dc172972a25 inherit pub_types_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ace303f7dacc306627f694eb21d6a8366 inherit pub_types_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1DRange.html">DRange</a>< D > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#ace303f7dacc306627f694eb21d6a8366">PositionRangeType</a></td></tr>
<tr class="memdesc:ace303f7dacc306627f694eb21d6a8366 inherit pub_types_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Position range type. <a href="#ace303f7dacc306627f694eb21d6a8366">More...</a><br/></td></tr>
<tr class="separator:ace303f7dacc306627f694eb21d6a8366 inherit pub_types_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a49ac71825a631fc5537551e33ad4b72c inherit pub_types_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1DPosition.html">DPosition</a>< D > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a49ac71825a631fc5537551e33ad4b72c">PositionType</a></td></tr>
<tr class="memdesc:a49ac71825a631fc5537551e33ad4b72c inherit pub_types_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Position Type. <a href="#a49ac71825a631fc5537551e33ad4b72c">More...</a><br/></td></tr>
<tr class="separator:a49ac71825a631fc5537551e33ad4b72c inherit pub_types_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e46dc0a14662f00a779721738310cfb inherit pub_types_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1DRange.html">DRange</a>< 1 > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a6e46dc0a14662f00a779721738310cfb">IntensityRangeType</a></td></tr>
<tr class="memdesc:a6e46dc0a14662f00a779721738310cfb inherit pub_types_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Intensity range type. <a href="#a6e46dc0a14662f00a779721738310cfb">More...</a><br/></td></tr>
<tr class="separator:a6e46dc0a14662f00a779721738310cfb inherit pub_types_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:ad9c7f3105519d825fa5f0ec8c9b94148"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ad9c7f3105519d825fa5f0ec8c9b94148">reserveSpaceSpectra</a> (<a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> s)</td></tr>
<tr class="separator:ad9c7f3105519d825fa5f0ec8c9b94148"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4de1763c39f89f224521ec0d7a804589"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a4de1763c39f89f224521ec0d7a804589">reserveSpaceChromatograms</a> (<a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> s)</td></tr>
<tr class="separator:a4de1763c39f89f224521ec0d7a804589"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a77b14e3bc3d80b04c6e8c0253fc79ce2"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a77b14e3bc3d80b04c6e8c0253fc79ce2">MSExperiment</a> ()</td></tr>
<tr class="memdesc:a77b14e3bc3d80b04c6e8c0253fc79ce2"><td class="mdescLeft"> </td><td class="mdescRight">Constructor. <a href="#a77b14e3bc3d80b04c6e8c0253fc79ce2">More...</a><br/></td></tr>
<tr class="separator:a77b14e3bc3d80b04c6e8c0253fc79ce2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abad159f926fca4e34260f1331a5847c1"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#abad159f926fca4e34260f1331a5847c1">MSExperiment</a> (const <a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a> &source)</td></tr>
<tr class="memdesc:abad159f926fca4e34260f1331a5847c1"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor. <a href="#abad159f926fca4e34260f1331a5847c1">More...</a><br/></td></tr>
<tr class="separator:abad159f926fca4e34260f1331a5847c1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a60095ad674632c73d7d08ebc1e2b05f5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a60095ad674632c73d7d08ebc1e2b05f5">operator=</a> (const <a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a> &source)</td></tr>
<tr class="memdesc:a60095ad674632c73d7d08ebc1e2b05f5"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator. <a href="#a60095ad674632c73d7d08ebc1e2b05f5">More...</a><br/></td></tr>
<tr class="separator:a60095ad674632c73d7d08ebc1e2b05f5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae9b04b8c759e9fbe9079c8bfa3f85ef8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ae9b04b8c759e9fbe9079c8bfa3f85ef8">operator=</a> (const <a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a> &source)</td></tr>
<tr class="memdesc:ae9b04b8c759e9fbe9079c8bfa3f85ef8"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator. <a href="#ae9b04b8c759e9fbe9079c8bfa3f85ef8">More...</a><br/></td></tr>
<tr class="separator:ae9b04b8c759e9fbe9079c8bfa3f85ef8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae004afe606d6054f9d0c9139e3a126ce"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ae004afe606d6054f9d0c9139e3a126ce">operator==</a> (const <a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a> &rhs) const </td></tr>
<tr class="memdesc:ae004afe606d6054f9d0c9139e3a126ce"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#ae004afe606d6054f9d0c9139e3a126ce">More...</a><br/></td></tr>
<tr class="separator:ae004afe606d6054f9d0c9139e3a126ce"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a78b38fac5fb7ca9480209042d49605ba"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a78b38fac5fb7ca9480209042d49605ba">operator!=</a> (const <a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a> &rhs) const </td></tr>
<tr class="memdesc:a78b38fac5fb7ca9480209042d49605ba"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#a78b38fac5fb7ca9480209042d49605ba">More...</a><br/></td></tr>
<tr class="separator:a78b38fac5fb7ca9480209042d49605ba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad20897c5c8bd47f5d4005989bead0e55"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ad20897c5c8bd47f5d4005989bead0e55">reset</a> ()</td></tr>
<tr class="memdesc:ad20897c5c8bd47f5d4005989bead0e55"><td class="mdescLeft"> </td><td class="mdescRight">Resets all internal values. <a href="#ad20897c5c8bd47f5d4005989bead0e55">More...</a><br/></td></tr>
<tr class="separator:ad20897c5c8bd47f5d4005989bead0e55"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a30581229b2239b7f01ad77aa8cec118c"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a30581229b2239b7f01ad77aa8cec118c">clearMetaDataArrays</a> ()</td></tr>
<tr class="memdesc:a30581229b2239b7f01ad77aa8cec118c"><td class="mdescLeft"> </td><td class="mdescRight">Clears the meta data arrays of all contained spectra (float, integer and string arrays) <a href="#a30581229b2239b7f01ad77aa8cec118c">More...</a><br/></td></tr>
<tr class="separator:a30581229b2239b7f01ad77aa8cec118c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a97a188fab675068e314d4058d9bb5c33"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a97a188fab675068e314d4058d9bb5c33">getExperimentalSettings</a> () const </td></tr>
<tr class="memdesc:a97a188fab675068e314d4058d9bb5c33"><td class="mdescLeft"> </td><td class="mdescRight">returns the meta information of this experiment (const access) <a href="#a97a188fab675068e314d4058d9bb5c33">More...</a><br/></td></tr>
<tr class="separator:a97a188fab675068e314d4058d9bb5c33"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c61e437da9328fe32bfa0ab529d429c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a4c61e437da9328fe32bfa0ab529d429c">getExperimentalSettings</a> ()</td></tr>
<tr class="memdesc:a4c61e437da9328fe32bfa0ab529d429c"><td class="mdescLeft"> </td><td class="mdescRight">returns the meta information of this experiment (mutable access) <a href="#a4c61e437da9328fe32bfa0ab529d429c">More...</a><br/></td></tr>
<tr class="separator:a4c61e437da9328fe32bfa0ab529d429c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a65f612b2c985382e4e8946bc60da8f75"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a65f612b2c985382e4e8946bc60da8f75">getPrecursorSpectrum</a> (<a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> <a class="el" href="classOpenMS_1_1MSExperiment.html#a0bc3019d7d2ff6c73f261836bff0af3a">iterator</a>) const </td></tr>
<tr class="memdesc:a65f612b2c985382e4e8946bc60da8f75"><td class="mdescLeft"> </td><td class="mdescRight">Returns the precursor spectrum of the scan pointed to by <code>iterator</code>. <a href="#a65f612b2c985382e4e8946bc60da8f75">More...</a><br/></td></tr>
<tr class="separator:a65f612b2c985382e4e8946bc60da8f75"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1acb534122a4490f537bd523ec7e8c74"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a1acb534122a4490f537bd523ec7e8c74">swap</a> (<a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a> &from)</td></tr>
<tr class="memdesc:a1acb534122a4490f537bd523ec7e8c74"><td class="mdescLeft"> </td><td class="mdescRight">Swaps the content of this map with the content of <code>from</code>. <a href="#a1acb534122a4490f537bd523ec7e8c74">More...</a><br/></td></tr>
<tr class="separator:a1acb534122a4490f537bd523ec7e8c74"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a41f3cfaba60bdd362dc5f4c0494e0a23"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a41f3cfaba60bdd362dc5f4c0494e0a23">setSpectra</a> (const std::vector< <a class="el" href="classOpenMS_1_1MSSpectrum.html">MSSpectrum</a>< <a class="el" href="classPeakT.html">PeakT</a> > > &spectra)</td></tr>
<tr class="memdesc:a41f3cfaba60bdd362dc5f4c0494e0a23"><td class="mdescLeft"> </td><td class="mdescRight">sets the spectra list <a href="#a41f3cfaba60bdd362dc5f4c0494e0a23">More...</a><br/></td></tr>
<tr class="separator:a41f3cfaba60bdd362dc5f4c0494e0a23"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae9dafbb74a1a4c430ceef03e25ab8e10"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ae9dafbb74a1a4c430ceef03e25ab8e10">addSpectrum</a> (const <a class="el" href="classOpenMS_1_1MSSpectrum.html">MSSpectrum</a>< <a class="el" href="classPeakT.html">PeakT</a> > &spectrum)</td></tr>
<tr class="memdesc:ae9dafbb74a1a4c430ceef03e25ab8e10"><td class="mdescLeft"> </td><td class="mdescRight">adds a spectra to the list <a href="#ae9dafbb74a1a4c430ceef03e25ab8e10">More...</a><br/></td></tr>
<tr class="separator:ae9dafbb74a1a4c430ceef03e25ab8e10"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0aaed6b7672a2808c67006e604708c76"><td class="memItemLeft" align="right" valign="top">const std::vector< <a class="el" href="classOpenMS_1_1MSSpectrum.html">MSSpectrum</a><br class="typebreak"/>
< <a class="el" href="classPeakT.html">PeakT</a> > > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a0aaed6b7672a2808c67006e604708c76">getSpectra</a> () const </td></tr>
<tr class="memdesc:a0aaed6b7672a2808c67006e604708c76"><td class="mdescLeft"> </td><td class="mdescRight">returns the spectra list <a href="#a0aaed6b7672a2808c67006e604708c76">More...</a><br/></td></tr>
<tr class="separator:a0aaed6b7672a2808c67006e604708c76"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4ea10711f169cfa40e8475bb4d226514"><td class="memItemLeft" align="right" valign="top">std::vector< <a class="el" href="classOpenMS_1_1MSSpectrum.html">MSSpectrum</a>< <a class="el" href="classPeakT.html">PeakT</a> > > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a4ea10711f169cfa40e8475bb4d226514">getSpectra</a> ()</td></tr>
<tr class="memdesc:a4ea10711f169cfa40e8475bb4d226514"><td class="mdescLeft"> </td><td class="mdescRight">returns the spectra list <a href="#a4ea10711f169cfa40e8475bb4d226514">More...</a><br/></td></tr>
<tr class="separator:a4ea10711f169cfa40e8475bb4d226514"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c105ad43f3c61a53997af8ba28720e2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a4c105ad43f3c61a53997af8ba28720e2">setChromatograms</a> (const std::vector< <a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a>< <a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a> > > &chromatograms)</td></tr>
<tr class="memdesc:a4c105ad43f3c61a53997af8ba28720e2"><td class="mdescLeft"> </td><td class="mdescRight">sets the chromatogram list <a href="#a4c105ad43f3c61a53997af8ba28720e2">More...</a><br/></td></tr>
<tr class="separator:a4c105ad43f3c61a53997af8ba28720e2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a37eb544fb451472f4679589fee735df4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a37eb544fb451472f4679589fee735df4">addChromatogram</a> (const <a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a>< <a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a> > &chromatogram)</td></tr>
<tr class="memdesc:a37eb544fb451472f4679589fee735df4"><td class="mdescLeft"> </td><td class="mdescRight">adds a chromatogram to the list <a href="#a37eb544fb451472f4679589fee735df4">More...</a><br/></td></tr>
<tr class="separator:a37eb544fb451472f4679589fee735df4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02fccfed86a20f8bd0f6b98c23fadb2e"><td class="memItemLeft" align="right" valign="top">const std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a><br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a> > > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a02fccfed86a20f8bd0f6b98c23fadb2e">getChromatograms</a> () const </td></tr>
<tr class="memdesc:a02fccfed86a20f8bd0f6b98c23fadb2e"><td class="mdescLeft"> </td><td class="mdescRight">returns the chromatogram list <a href="#a02fccfed86a20f8bd0f6b98c23fadb2e">More...</a><br/></td></tr>
<tr class="separator:a02fccfed86a20f8bd0f6b98c23fadb2e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae9be60694b267dc26b3e79a125646e25"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a><br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ae9be60694b267dc26b3e79a125646e25">getChromatogram</a> (<a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> id)</td></tr>
<tr class="memdesc:ae9be60694b267dc26b3e79a125646e25"><td class="mdescLeft"> </td><td class="mdescRight">returns a single chromatogram <a href="#ae9be60694b267dc26b3e79a125646e25">More...</a><br/></td></tr>
<tr class="separator:ae9be60694b267dc26b3e79a125646e25"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab9c3bac03f15bef0516ef45b9bc02c31"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a><br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ab9c3bac03f15bef0516ef45b9bc02c31">getTIC</a> () const </td></tr>
<tr class="memdesc:ab9c3bac03f15bef0516ef45b9bc02c31"><td class="mdescLeft"> </td><td class="mdescRight">returns the total ion chromatogram (TIC) <a href="#ab9c3bac03f15bef0516ef45b9bc02c31">More...</a><br/></td></tr>
<tr class="separator:ab9c3bac03f15bef0516ef45b9bc02c31"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af072fc84225ae927f7527f208ea86cbd"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#af072fc84225ae927f7527f208ea86cbd">clear</a> (bool clear_meta_data)</td></tr>
<tr class="memdesc:af072fc84225ae927f7527f208ea86cbd"><td class="mdescLeft"> </td><td class="mdescRight">Clears all data and meta data. <a href="#af072fc84225ae927f7527f208ea86cbd">More...</a><br/></td></tr>
<tr class="separator:af072fc84225ae927f7527f208ea86cbd"><td class="memSeparator" colspan="2"> </td></tr>
<tr><td colspan="2"><div class="groupHeader">Conversion to/from 2D data</div></td></tr>
<tr class="memitem:a39cd3877560af16732f709348724f53a"><td class="memTemplParams" colspan="2">template<class Container > </td></tr>
<tr class="memitem:a39cd3877560af16732f709348724f53a"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a39cd3877560af16732f709348724f53a">get2DData</a> (Container &cont) const </td></tr>
<tr class="memdesc:a39cd3877560af16732f709348724f53a"><td class="mdescLeft"> </td><td class="mdescRight">Reads out a 2D Spectrum. <a href="#a39cd3877560af16732f709348724f53a">More...</a><br/></td></tr>
<tr class="separator:a39cd3877560af16732f709348724f53a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62fd7dbc7f6e5cc960d5db28524512f8"><td class="memTemplParams" colspan="2">template<class Container > </td></tr>
<tr class="memitem:a62fd7dbc7f6e5cc960d5db28524512f8"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a62fd7dbc7f6e5cc960d5db28524512f8">set2DData</a> (const Container &cont)</td></tr>
<tr class="memdesc:a62fd7dbc7f6e5cc960d5db28524512f8"><td class="mdescLeft"> </td><td class="mdescRight">Assignment of a 2D spectrum to <a class="el" href="classOpenMS_1_1MSExperiment.html" title="Representation of a mass spectrometry experiment. ">MSExperiment</a>. <a href="#a62fd7dbc7f6e5cc960d5db28524512f8">More...</a><br/></td></tr>
<tr class="separator:a62fd7dbc7f6e5cc960d5db28524512f8"><td class="memSeparator" colspan="2"> </td></tr>
<tr><td colspan="2"><div class="groupHeader">Iterating ranges and areas</div></td></tr>
<tr class="memitem:a878abca09cb3f6810e634b72b99007eb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a9aa8e2a39a1767b456c47000d2ae1a56">AreaIterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a878abca09cb3f6810e634b72b99007eb">areaBegin</a> (<a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> min_rt, <a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> max_rt, <a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> min_mz, <a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> max_mz)</td></tr>
<tr class="memdesc:a878abca09cb3f6810e634b72b99007eb"><td class="mdescLeft"> </td><td class="mdescRight">Returns an area iterator for <code>area</code>. <a href="#a878abca09cb3f6810e634b72b99007eb">More...</a><br/></td></tr>
<tr class="separator:a878abca09cb3f6810e634b72b99007eb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afb936fe46d35a9d29e36552a68c1ef2a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a9aa8e2a39a1767b456c47000d2ae1a56">AreaIterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#afb936fe46d35a9d29e36552a68c1ef2a">areaEnd</a> ()</td></tr>
<tr class="memdesc:afb936fe46d35a9d29e36552a68c1ef2a"><td class="mdescLeft"> </td><td class="mdescRight">Returns an invalid area iterator marking the end of an area. <a href="#afb936fe46d35a9d29e36552a68c1ef2a">More...</a><br/></td></tr>
<tr class="separator:afb936fe46d35a9d29e36552a68c1ef2a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa23ed32415e6667bd2737377c24c16fb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a0dd6c8130427f887b79db48cfd58181a">ConstAreaIterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#aa23ed32415e6667bd2737377c24c16fb">areaBeginConst</a> (<a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> min_rt, <a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> max_rt, <a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> min_mz, <a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> max_mz) const </td></tr>
<tr class="memdesc:aa23ed32415e6667bd2737377c24c16fb"><td class="mdescLeft"> </td><td class="mdescRight">Returns a non-mutable area iterator for <code>area</code>. <a href="#aa23ed32415e6667bd2737377c24c16fb">More...</a><br/></td></tr>
<tr class="separator:aa23ed32415e6667bd2737377c24c16fb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f9d4faff212e67330d60f958f0ce4bc"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a0dd6c8130427f887b79db48cfd58181a">ConstAreaIterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a5f9d4faff212e67330d60f958f0ce4bc">areaEndConst</a> () const </td></tr>
<tr class="memdesc:a5f9d4faff212e67330d60f958f0ce4bc"><td class="mdescLeft"> </td><td class="mdescRight">Returns an non-mutable invalid area iterator marking the end of an area. <a href="#a5f9d4faff212e67330d60f958f0ce4bc">More...</a><br/></td></tr>
<tr class="separator:a5f9d4faff212e67330d60f958f0ce4bc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adb2f0f3e10754ca4dc7be677f15689a3"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#adb2f0f3e10754ca4dc7be677f15689a3">RTBegin</a> (<a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> rt) const </td></tr>
<tr class="memdesc:adb2f0f3e10754ca4dc7be677f15689a3"><td class="mdescLeft"> </td><td class="mdescRight">Fast search for spectrum range begin. <a href="#adb2f0f3e10754ca4dc7be677f15689a3">More...</a><br/></td></tr>
<tr class="separator:adb2f0f3e10754ca4dc7be677f15689a3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aecc2b466c4b527df363f5b1287a5e646"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#aecc2b466c4b527df363f5b1287a5e646">RTEnd</a> (<a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> rt) const </td></tr>
<tr class="memdesc:aecc2b466c4b527df363f5b1287a5e646"><td class="mdescLeft"> </td><td class="mdescRight">Fast search for spectrum range end (returns the past-the-end iterator) <a href="#aecc2b466c4b527df363f5b1287a5e646">More...</a><br/></td></tr>
<tr class="separator:aecc2b466c4b527df363f5b1287a5e646"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaa28bff92147612bdfc8ac6892395c93"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#aaa28bff92147612bdfc8ac6892395c93">RTBegin</a> (<a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> rt)</td></tr>
<tr class="memdesc:aaa28bff92147612bdfc8ac6892395c93"><td class="mdescLeft"> </td><td class="mdescRight">Fast search for spectrum range begin. <a href="#aaa28bff92147612bdfc8ac6892395c93">More...</a><br/></td></tr>
<tr class="separator:aaa28bff92147612bdfc8ac6892395c93"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f9b950ce9dd8beba1afb32cc934b567"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a5f9b950ce9dd8beba1afb32cc934b567">RTEnd</a> (<a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> rt)</td></tr>
<tr class="memdesc:a5f9b950ce9dd8beba1afb32cc934b567"><td class="mdescLeft"> </td><td class="mdescRight">Fast search for spectrum range end (returns the past-the-end iterator) <a href="#a5f9b950ce9dd8beba1afb32cc934b567">More...</a><br/></td></tr>
<tr class="separator:a5f9b950ce9dd8beba1afb32cc934b567"><td class="memSeparator" colspan="2"> </td></tr>
<tr><td colspan="2"><div class="groupHeader">Range methods</div></td></tr>
<tr><td colspan="2"><div class="groupText"><dl class="section note"><dt>Note</dt><dd>The range values (min, max, etc.) are not updated automatically. Call <a class="el" href="classOpenMS_1_1MSExperiment.html#ae6cec659c6191c8cb73a1f6af8eba1cd" title="Updates minimum and maximum position/intensity. ">updateRanges()</a> to update the values! </dd></dl>
</div></td></tr>
<tr class="memitem:ae6cec659c6191c8cb73a1f6af8eba1cd"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ae6cec659c6191c8cb73a1f6af8eba1cd">updateRanges</a> ()</td></tr>
<tr class="memdesc:ae6cec659c6191c8cb73a1f6af8eba1cd"><td class="mdescLeft"> </td><td class="mdescRight">Updates minimum and maximum position/intensity. <a href="#ae6cec659c6191c8cb73a1f6af8eba1cd">More...</a><br/></td></tr>
<tr class="separator:ae6cec659c6191c8cb73a1f6af8eba1cd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa23cd56c00752986da68f5aaccedeeed"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#aa23cd56c00752986da68f5aaccedeeed">updateRanges</a> (<a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a> ms_level)</td></tr>
<tr class="memdesc:aa23cd56c00752986da68f5aaccedeeed"><td class="mdescLeft"> </td><td class="mdescRight">Updates the m/z, intensity, retention time and MS level ranges of all spectra with a certain ms level. <a href="#aa23cd56c00752986da68f5aaccedeeed">More...</a><br/></td></tr>
<tr class="separator:aa23cd56c00752986da68f5aaccedeeed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9d8aab759e082ef93475344071fb7809"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a9d8aab759e082ef93475344071fb7809">getMinMZ</a> () const </td></tr>
<tr class="memdesc:a9d8aab759e082ef93475344071fb7809"><td class="mdescLeft"> </td><td class="mdescRight">returns the minimal m/z value <a href="#a9d8aab759e082ef93475344071fb7809">More...</a><br/></td></tr>
<tr class="separator:a9d8aab759e082ef93475344071fb7809"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a87d8ffa067f5ee283997ac69b197234f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a87d8ffa067f5ee283997ac69b197234f">getMaxMZ</a> () const </td></tr>
<tr class="memdesc:a87d8ffa067f5ee283997ac69b197234f"><td class="mdescLeft"> </td><td class="mdescRight">returns the maximal m/z value <a href="#a87d8ffa067f5ee283997ac69b197234f">More...</a><br/></td></tr>
<tr class="separator:a87d8ffa067f5ee283997ac69b197234f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9244f3b9aefde24a9b246a8396c3bb84"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a9244f3b9aefde24a9b246a8396c3bb84">getMinRT</a> () const </td></tr>
<tr class="memdesc:a9244f3b9aefde24a9b246a8396c3bb84"><td class="mdescLeft"> </td><td class="mdescRight">returns the minimal retention time value <a href="#a9244f3b9aefde24a9b246a8396c3bb84">More...</a><br/></td></tr>
<tr class="separator:a9244f3b9aefde24a9b246a8396c3bb84"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af67f955c87166e64d9361815dc3760b5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#af67f955c87166e64d9361815dc3760b5">getMaxRT</a> () const </td></tr>
<tr class="memdesc:af67f955c87166e64d9361815dc3760b5"><td class="mdescLeft"> </td><td class="mdescRight">returns the maximal retention time value <a href="#af67f955c87166e64d9361815dc3760b5">More...</a><br/></td></tr>
<tr class="separator:af67f955c87166e64d9361815dc3760b5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a18ecdc4784f2b340944659a1847557e9"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1MSExperiment.html#a167f63a2d1a578a83eb07c33a25a8f43">AreaType</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a18ecdc4784f2b340944659a1847557e9">getDataRange</a> () const </td></tr>
<tr class="memdesc:a18ecdc4784f2b340944659a1847557e9"><td class="mdescLeft"> </td><td class="mdescRight">Returns RT and m/z range the data lies in. <a href="#a18ecdc4784f2b340944659a1847557e9">More...</a><br/></td></tr>
<tr class="separator:a18ecdc4784f2b340944659a1847557e9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aac09407a6369916d487f3a83527b8398"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#ga5162db95dc78bdf2e3a71d73bec703e9">UInt64</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#aac09407a6369916d487f3a83527b8398">getSize</a> () const </td></tr>
<tr class="memdesc:aac09407a6369916d487f3a83527b8398"><td class="mdescLeft"> </td><td class="mdescRight">returns the total number of peaks <a href="#aac09407a6369916d487f3a83527b8398">More...</a><br/></td></tr>
<tr class="separator:aac09407a6369916d487f3a83527b8398"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adbc1e31b95b2364ef4b3b1ba94b0aa8d"><td class="memItemLeft" align="right" valign="top">const std::vector< <a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#adbc1e31b95b2364ef4b3b1ba94b0aa8d">getMSLevels</a> () const </td></tr>
<tr class="memdesc:adbc1e31b95b2364ef4b3b1ba94b0aa8d"><td class="mdescLeft"> </td><td class="mdescRight">returns an array of MS levels <a href="#adbc1e31b95b2364ef4b3b1ba94b0aa8d">More...</a><br/></td></tr>
<tr class="separator:adbc1e31b95b2364ef4b3b1ba94b0aa8d"><td class="memSeparator" colspan="2"> </td></tr>
<tr><td colspan="2"><div class="groupHeader">Sorting spectra and peaks</div></td></tr>
<tr class="memitem:ac518a80bea4f92fd700b235a12146658"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ac518a80bea4f92fd700b235a12146658">sortSpectra</a> (bool sort_mz=true)</td></tr>
<tr class="memdesc:ac518a80bea4f92fd700b235a12146658"><td class="mdescLeft"> </td><td class="mdescRight">Sorts the data points by retention time. <a href="#ac518a80bea4f92fd700b235a12146658">More...</a><br/></td></tr>
<tr class="separator:ac518a80bea4f92fd700b235a12146658"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa679772c8c6b65183102bc220ebe7870"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#aa679772c8c6b65183102bc220ebe7870">sortChromatograms</a> (bool sort_rt=true)</td></tr>
<tr class="memdesc:aa679772c8c6b65183102bc220ebe7870"><td class="mdescLeft"> </td><td class="mdescRight">Sorts the data points of the chromatograms by m/z. <a href="#aa679772c8c6b65183102bc220ebe7870">More...</a><br/></td></tr>
<tr class="separator:aa679772c8c6b65183102bc220ebe7870"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50d19782103ccc00edaabfba88dd2598"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a50d19782103ccc00edaabfba88dd2598">isSorted</a> (bool check_mz=true) const </td></tr>
<tr class="memdesc:a50d19782103ccc00edaabfba88dd2598"><td class="mdescLeft"> </td><td class="mdescRight">Checks if all spectra are sorted with respect to ascending RT. <a href="#a50d19782103ccc00edaabfba88dd2598">More...</a><br/></td></tr>
<tr class="separator:a50d19782103ccc00edaabfba88dd2598"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1RangeManager"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1RangeManager')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager< 2 ></a></td></tr>
<tr class="memitem:a2819d7889d3f7ecd7441d8e57811a03f inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a2819d7889d3f7ecd7441d8e57811a03f">RangeManager</a> ()</td></tr>
<tr class="memdesc:a2819d7889d3f7ecd7441d8e57811a03f inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Default constructor. <a href="#a2819d7889d3f7ecd7441d8e57811a03f">More...</a><br/></td></tr>
<tr class="separator:a2819d7889d3f7ecd7441d8e57811a03f inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9674af31a0f97a3b684ec886264667b6 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a9674af31a0f97a3b684ec886264667b6">RangeManager</a> (const <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a> &rhs)</td></tr>
<tr class="memdesc:a9674af31a0f97a3b684ec886264667b6 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor. <a href="#a9674af31a0f97a3b684ec886264667b6">More...</a><br/></td></tr>
<tr class="separator:a9674af31a0f97a3b684ec886264667b6 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7c7da4957e13f1070fb0eec76d1d8745 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a7c7da4957e13f1070fb0eec76d1d8745">~RangeManager</a> ()</td></tr>
<tr class="memdesc:a7c7da4957e13f1070fb0eec76d1d8745 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#a7c7da4957e13f1070fb0eec76d1d8745">More...</a><br/></td></tr>
<tr class="separator:a7c7da4957e13f1070fb0eec76d1d8745 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad808bc540f1cba8049a23bec074eed64 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#ad808bc540f1cba8049a23bec074eed64">operator=</a> (const <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a> &rhs)</td></tr>
<tr class="memdesc:ad808bc540f1cba8049a23bec074eed64 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator. <a href="#ad808bc540f1cba8049a23bec074eed64">More...</a><br/></td></tr>
<tr class="separator:ad808bc540f1cba8049a23bec074eed64 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afd83f7e639b59d37a1ea380d935ec4eb inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#afd83f7e639b59d37a1ea380d935ec4eb">operator==</a> (const <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a> &rhs) const</td></tr>
<tr class="memdesc:afd83f7e639b59d37a1ea380d935ec4eb inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#afd83f7e639b59d37a1ea380d935ec4eb">More...</a><br/></td></tr>
<tr class="separator:afd83f7e639b59d37a1ea380d935ec4eb inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a03478cbcbe3bccce37db0657226a538d inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a03478cbcbe3bccce37db0657226a538d">operator!=</a> (const <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a> &rhs) const</td></tr>
<tr class="memdesc:a03478cbcbe3bccce37db0657226a538d inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#a03478cbcbe3bccce37db0657226a538d">More...</a><br/></td></tr>
<tr class="separator:a03478cbcbe3bccce37db0657226a538d inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad7e9497afbc70b1bd40dba2874802954 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1RangeManager.html#a49ac71825a631fc5537551e33ad4b72c">PositionType</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#ad7e9497afbc70b1bd40dba2874802954">getMin</a> () const</td></tr>
<tr class="memdesc:ad7e9497afbc70b1bd40dba2874802954 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Returns the minimum position. <a href="#ad7e9497afbc70b1bd40dba2874802954">More...</a><br/></td></tr>
<tr class="separator:ad7e9497afbc70b1bd40dba2874802954 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab54df5a3894df5cebc88022e8684ff65 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1RangeManager.html#a49ac71825a631fc5537551e33ad4b72c">PositionType</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#ab54df5a3894df5cebc88022e8684ff65">getMax</a> () const</td></tr>
<tr class="memdesc:ab54df5a3894df5cebc88022e8684ff65 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Returns the maximum position. <a href="#ab54df5a3894df5cebc88022e8684ff65">More...</a><br/></td></tr>
<tr class="separator:ab54df5a3894df5cebc88022e8684ff65 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe0be2a3600705a1471df7caf6e9f07c inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#afe0be2a3600705a1471df7caf6e9f07c">getMinInt</a> () const</td></tr>
<tr class="memdesc:afe0be2a3600705a1471df7caf6e9f07c inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Returns the minimum intensity. <a href="#afe0be2a3600705a1471df7caf6e9f07c">More...</a><br/></td></tr>
<tr class="separator:afe0be2a3600705a1471df7caf6e9f07c inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2aae292c90f0f138170dd774601a7139 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a2aae292c90f0f138170dd774601a7139">getMaxInt</a> () const</td></tr>
<tr class="memdesc:a2aae292c90f0f138170dd774601a7139 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Returns the maximum intensity. <a href="#a2aae292c90f0f138170dd774601a7139">More...</a><br/></td></tr>
<tr class="separator:a2aae292c90f0f138170dd774601a7139 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaa3d5efb96ade4c8ce2c8e216a73dcd1 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#aaa3d5efb96ade4c8ce2c8e216a73dcd1">clearRanges</a> ()</td></tr>
<tr class="memdesc:aaa3d5efb96ade4c8ce2c8e216a73dcd1 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Resets the ranges. <a href="#aaa3d5efb96ade4c8ce2c8e216a73dcd1">More...</a><br/></td></tr>
<tr class="separator:aaa3d5efb96ade4c8ce2c8e216a73dcd1 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1ExperimentalSettings"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1ExperimentalSettings')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a></td></tr>
<tr class="memitem:a2d81d988f41678e20ddcf7682553e29f inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a2d81d988f41678e20ddcf7682553e29f">ExperimentalSettings</a> ()</td></tr>
<tr class="memdesc:a2d81d988f41678e20ddcf7682553e29f inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">Constructor. <a href="#a2d81d988f41678e20ddcf7682553e29f">More...</a><br/></td></tr>
<tr class="separator:a2d81d988f41678e20ddcf7682553e29f inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a007ef6fd867381ab18b79b712dd6b2eb inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a007ef6fd867381ab18b79b712dd6b2eb">ExperimentalSettings</a> (const <a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a> &source)</td></tr>
<tr class="memdesc:a007ef6fd867381ab18b79b712dd6b2eb inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor. <a href="#a007ef6fd867381ab18b79b712dd6b2eb">More...</a><br/></td></tr>
<tr class="separator:a007ef6fd867381ab18b79b712dd6b2eb inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5db11e642e9ce6ef66166508f67d030f inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a5db11e642e9ce6ef66166508f67d030f">~ExperimentalSettings</a> ()</td></tr>
<tr class="memdesc:a5db11e642e9ce6ef66166508f67d030f inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#a5db11e642e9ce6ef66166508f67d030f">More...</a><br/></td></tr>
<tr class="separator:a5db11e642e9ce6ef66166508f67d030f inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af78fdc64006d9f5578691a0136178674 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#af78fdc64006d9f5578691a0136178674">operator=</a> (const <a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a> &source)</td></tr>
<tr class="memdesc:af78fdc64006d9f5578691a0136178674 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator. <a href="#af78fdc64006d9f5578691a0136178674">More...</a><br/></td></tr>
<tr class="separator:af78fdc64006d9f5578691a0136178674 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a650e4912e273a3e22f09f3b760d914b6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a650e4912e273a3e22f09f3b760d914b6">operator==</a> (const <a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a> &rhs) const </td></tr>
<tr class="memdesc:a650e4912e273a3e22f09f3b760d914b6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#a650e4912e273a3e22f09f3b760d914b6">More...</a><br/></td></tr>
<tr class="separator:a650e4912e273a3e22f09f3b760d914b6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab9db3f57b2ddac5ed6a3f4bac96f9c9a inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#ab9db3f57b2ddac5ed6a3f4bac96f9c9a">operator!=</a> (const <a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a> &rhs) const </td></tr>
<tr class="memdesc:ab9db3f57b2ddac5ed6a3f4bac96f9c9a inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#ab9db3f57b2ddac5ed6a3f4bac96f9c9a">More...</a><br/></td></tr>
<tr class="separator:ab9db3f57b2ddac5ed6a3f4bac96f9c9a inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a41b52ab4804807f81a49016b6f3bf9a0 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1Sample.html">Sample</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a41b52ab4804807f81a49016b6f3bf9a0">getSample</a> () const </td></tr>
<tr class="memdesc:a41b52ab4804807f81a49016b6f3bf9a0 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a const reference to the sample description <a href="#a41b52ab4804807f81a49016b6f3bf9a0">More...</a><br/></td></tr>
<tr class="separator:a41b52ab4804807f81a49016b6f3bf9a0 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a35cce308e91cbc6822dfd1b620aa1732 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Sample.html">Sample</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a35cce308e91cbc6822dfd1b620aa1732">getSample</a> ()</td></tr>
<tr class="memdesc:a35cce308e91cbc6822dfd1b620aa1732 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a mutable reference to the sample description <a href="#a35cce308e91cbc6822dfd1b620aa1732">More...</a><br/></td></tr>
<tr class="separator:a35cce308e91cbc6822dfd1b620aa1732 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0385726a3501607dc61d02dbe9dc5345 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a0385726a3501607dc61d02dbe9dc5345">setSample</a> (const <a class="el" href="classOpenMS_1_1Sample.html">Sample</a> &sample)</td></tr>
<tr class="memdesc:a0385726a3501607dc61d02dbe9dc5345 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">sets the sample description <a href="#a0385726a3501607dc61d02dbe9dc5345">More...</a><br/></td></tr>
<tr class="separator:a0385726a3501607dc61d02dbe9dc5345 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b357a65e5ec19027b8fa94379439f8c inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">const std::vector< <a class="el" href="classOpenMS_1_1SourceFile.html">SourceFile</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a9b357a65e5ec19027b8fa94379439f8c">getSourceFiles</a> () const </td></tr>
<tr class="memdesc:a9b357a65e5ec19027b8fa94379439f8c inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a const reference to the source data file <a href="#a9b357a65e5ec19027b8fa94379439f8c">More...</a><br/></td></tr>
<tr class="separator:a9b357a65e5ec19027b8fa94379439f8c inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae23c9a66217ff3f6a5da87eeccf34d06 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">std::vector< <a class="el" href="classOpenMS_1_1SourceFile.html">SourceFile</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#ae23c9a66217ff3f6a5da87eeccf34d06">getSourceFiles</a> ()</td></tr>
<tr class="memdesc:ae23c9a66217ff3f6a5da87eeccf34d06 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a mutable reference to the source data file <a href="#ae23c9a66217ff3f6a5da87eeccf34d06">More...</a><br/></td></tr>
<tr class="separator:ae23c9a66217ff3f6a5da87eeccf34d06 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc78c538c853e1c54b13a9ea6fce859b inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#adc78c538c853e1c54b13a9ea6fce859b">setSourceFiles</a> (const std::vector< <a class="el" href="classOpenMS_1_1SourceFile.html">SourceFile</a> > &source_files)</td></tr>
<tr class="memdesc:adc78c538c853e1c54b13a9ea6fce859b inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">sets the source data file <a href="#adc78c538c853e1c54b13a9ea6fce859b">More...</a><br/></td></tr>
<tr class="separator:adc78c538c853e1c54b13a9ea6fce859b inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae62fcbaec5280a77c18356a4ffa7bce5 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">const std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1ContactPerson.html">ContactPerson</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#ae62fcbaec5280a77c18356a4ffa7bce5">getContacts</a> () const </td></tr>
<tr class="memdesc:ae62fcbaec5280a77c18356a4ffa7bce5 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a const reference to the list of contact persons <a href="#ae62fcbaec5280a77c18356a4ffa7bce5">More...</a><br/></td></tr>
<tr class="separator:ae62fcbaec5280a77c18356a4ffa7bce5 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a292e64f6cb7baa18567843e6d80a3fd6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">std::vector< <a class="el" href="classOpenMS_1_1ContactPerson.html">ContactPerson</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a292e64f6cb7baa18567843e6d80a3fd6">getContacts</a> ()</td></tr>
<tr class="memdesc:a292e64f6cb7baa18567843e6d80a3fd6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a mutable reference to the list of contact persons <a href="#a292e64f6cb7baa18567843e6d80a3fd6">More...</a><br/></td></tr>
<tr class="separator:a292e64f6cb7baa18567843e6d80a3fd6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a42404b8b8267149022bdee58f46fc5ec inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a42404b8b8267149022bdee58f46fc5ec">setContacts</a> (const std::vector< <a class="el" href="classOpenMS_1_1ContactPerson.html">ContactPerson</a> > &contacts)</td></tr>
<tr class="memdesc:a42404b8b8267149022bdee58f46fc5ec inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">sets the list of contact persons <a href="#a42404b8b8267149022bdee58f46fc5ec">More...</a><br/></td></tr>
<tr class="separator:a42404b8b8267149022bdee58f46fc5ec inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7d483912a9f94f4a6e1505124868cba6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1Instrument.html">Instrument</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a7d483912a9f94f4a6e1505124868cba6">getInstrument</a> () const </td></tr>
<tr class="memdesc:a7d483912a9f94f4a6e1505124868cba6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a const reference to the MS instrument description <a href="#a7d483912a9f94f4a6e1505124868cba6">More...</a><br/></td></tr>
<tr class="separator:a7d483912a9f94f4a6e1505124868cba6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad5dc55ac3aa576764f21140757be42a8 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Instrument.html">Instrument</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#ad5dc55ac3aa576764f21140757be42a8">getInstrument</a> ()</td></tr>
<tr class="memdesc:ad5dc55ac3aa576764f21140757be42a8 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a mutable reference to the MS instrument description <a href="#ad5dc55ac3aa576764f21140757be42a8">More...</a><br/></td></tr>
<tr class="separator:ad5dc55ac3aa576764f21140757be42a8 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a93504aa70c988cb638c0f0d413dc1aa2 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a93504aa70c988cb638c0f0d413dc1aa2">setInstrument</a> (const <a class="el" href="classOpenMS_1_1Instrument.html">Instrument</a> &instrument)</td></tr>
<tr class="memdesc:a93504aa70c988cb638c0f0d413dc1aa2 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">sets the MS instrument description <a href="#a93504aa70c988cb638c0f0d413dc1aa2">More...</a><br/></td></tr>
<tr class="separator:a93504aa70c988cb638c0f0d413dc1aa2 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2be3893c8c5d8d9da2a4d0f56fd2f664 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1HPLC.html">HPLC</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a2be3893c8c5d8d9da2a4d0f56fd2f664">getHPLC</a> () const </td></tr>
<tr class="memdesc:a2be3893c8c5d8d9da2a4d0f56fd2f664 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a const reference to the description of the <a class="el" href="classOpenMS_1_1HPLC.html" title="Representation of a HPLC experiment. ">HPLC</a> run <a href="#a2be3893c8c5d8d9da2a4d0f56fd2f664">More...</a><br/></td></tr>
<tr class="separator:a2be3893c8c5d8d9da2a4d0f56fd2f664 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:addc15722f7e74e4a62d1e94df799d5a0 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1HPLC.html">HPLC</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#addc15722f7e74e4a62d1e94df799d5a0">getHPLC</a> ()</td></tr>
<tr class="memdesc:addc15722f7e74e4a62d1e94df799d5a0 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a mutable reference to the description of the <a class="el" href="classOpenMS_1_1HPLC.html" title="Representation of a HPLC experiment. ">HPLC</a> run <a href="#addc15722f7e74e4a62d1e94df799d5a0">More...</a><br/></td></tr>
<tr class="separator:addc15722f7e74e4a62d1e94df799d5a0 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a974ea481356edfc781dc082d34691037 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a974ea481356edfc781dc082d34691037">setHPLC</a> (const <a class="el" href="classOpenMS_1_1HPLC.html">HPLC</a> &hplc)</td></tr>
<tr class="memdesc:a974ea481356edfc781dc082d34691037 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">sets the description of the <a class="el" href="classOpenMS_1_1HPLC.html" title="Representation of a HPLC experiment. ">HPLC</a> run <a href="#a974ea481356edfc781dc082d34691037">More...</a><br/></td></tr>
<tr class="separator:a974ea481356edfc781dc082d34691037 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae2c8ff7196c08b1ff00e8f80d6293135 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1DateTime.html">DateTime</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#ae2c8ff7196c08b1ff00e8f80d6293135">getDateTime</a> () const </td></tr>
<tr class="memdesc:ae2c8ff7196c08b1ff00e8f80d6293135 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns the date the experiment was performed <a href="#ae2c8ff7196c08b1ff00e8f80d6293135">More...</a><br/></td></tr>
<tr class="separator:ae2c8ff7196c08b1ff00e8f80d6293135 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae0728c54c04bcc99a4c6ebfa961ed2c5 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#ae0728c54c04bcc99a4c6ebfa961ed2c5">setDateTime</a> (const <a class="el" href="classOpenMS_1_1DateTime.html">DateTime</a> &date)</td></tr>
<tr class="memdesc:ae0728c54c04bcc99a4c6ebfa961ed2c5 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">sets the date the experiment was performed <a href="#ae0728c54c04bcc99a4c6ebfa961ed2c5">More...</a><br/></td></tr>
<tr class="separator:ae0728c54c04bcc99a4c6ebfa961ed2c5 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af974151b7df6fcfeb6509e26431dcaa0 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#af974151b7df6fcfeb6509e26431dcaa0">getComment</a> () const </td></tr>
<tr class="memdesc:af974151b7df6fcfeb6509e26431dcaa0 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns the free-text comment <a href="#af974151b7df6fcfeb6509e26431dcaa0">More...</a><br/></td></tr>
<tr class="separator:af974151b7df6fcfeb6509e26431dcaa0 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2116f9b1dde8ba3aef4a07e6f2a970a7 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a2116f9b1dde8ba3aef4a07e6f2a970a7">setComment</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &comment)</td></tr>
<tr class="memdesc:a2116f9b1dde8ba3aef4a07e6f2a970a7 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">sets the free-text comment <a href="#a2116f9b1dde8ba3aef4a07e6f2a970a7">More...</a><br/></td></tr>
<tr class="separator:a2116f9b1dde8ba3aef4a07e6f2a970a7 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acef58bf2531b77d0191c4780739281c6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">const std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#acef58bf2531b77d0191c4780739281c6">getProteinIdentifications</a> () const </td></tr>
<tr class="memdesc:acef58bf2531b77d0191c4780739281c6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a const reference to the protein <a class="el" href="classOpenMS_1_1ProteinIdentification.html" title="Representation of a protein identification run. ">ProteinIdentification</a> vector <a href="#acef58bf2531b77d0191c4780739281c6">More...</a><br/></td></tr>
<tr class="separator:acef58bf2531b77d0191c4780739281c6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a606b9b370ed163364cc104c39fe17ae6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a606b9b370ed163364cc104c39fe17ae6">getProteinIdentifications</a> ()</td></tr>
<tr class="memdesc:a606b9b370ed163364cc104c39fe17ae6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns a mutable reference to the protein <a class="el" href="classOpenMS_1_1ProteinIdentification.html" title="Representation of a protein identification run. ">ProteinIdentification</a> vector <a href="#a606b9b370ed163364cc104c39fe17ae6">More...</a><br/></td></tr>
<tr class="separator:a606b9b370ed163364cc104c39fe17ae6 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6d85ac28bb82da988383fd19b8504988 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a6d85ac28bb82da988383fd19b8504988">setProteinIdentifications</a> (const std::vector< <a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a> > &protein_identifications)</td></tr>
<tr class="memdesc:a6d85ac28bb82da988383fd19b8504988 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">sets the protein <a class="el" href="classOpenMS_1_1ProteinIdentification.html" title="Representation of a protein identification run. ">ProteinIdentification</a> vector <a href="#a6d85ac28bb82da988383fd19b8504988">More...</a><br/></td></tr>
<tr class="separator:a6d85ac28bb82da988383fd19b8504988 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afc3f5804aa8fa153a867d0aef945bf22 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#afc3f5804aa8fa153a867d0aef945bf22">getFractionIdentifier</a> () const </td></tr>
<tr class="memdesc:afc3f5804aa8fa153a867d0aef945bf22 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">returns fraction identifier <a href="#afc3f5804aa8fa153a867d0aef945bf22">More...</a><br/></td></tr>
<tr class="separator:afc3f5804aa8fa153a867d0aef945bf22 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a957d4a6b556cd9b0190f0a0780bc2720 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a957d4a6b556cd9b0190f0a0780bc2720">setFractionIdentifier</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &fraction_identifier)</td></tr>
<tr class="memdesc:a957d4a6b556cd9b0190f0a0780bc2720 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="mdescLeft"> </td><td class="mdescRight">sets the fraction identifier <a href="#a957d4a6b556cd9b0190f0a0780bc2720">More...</a><br/></td></tr>
<tr class="separator:a957d4a6b556cd9b0190f0a0780bc2720 inherit pub_methods_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1MetaInfoInterface"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1MetaInfoInterface')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a></td></tr>
<tr class="memitem:a4adf02f403d7b972e7e6a58e938ecb6c inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a4adf02f403d7b972e7e6a58e938ecb6c">MetaInfoInterface</a> ()</td></tr>
<tr class="memdesc:a4adf02f403d7b972e7e6a58e938ecb6c inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">constructor <a href="#a4adf02f403d7b972e7e6a58e938ecb6c">More...</a><br/></td></tr>
<tr class="separator:a4adf02f403d7b972e7e6a58e938ecb6c inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae216eb0aa3192b67d70da8c461583256 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#ae216eb0aa3192b67d70da8c461583256">MetaInfoInterface</a> (const <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a> &rhs)</td></tr>
<tr class="memdesc:ae216eb0aa3192b67d70da8c461583256 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">copy constructor <a href="#ae216eb0aa3192b67d70da8c461583256">More...</a><br/></td></tr>
<tr class="separator:ae216eb0aa3192b67d70da8c461583256 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a30c6469ab28a1ae578b23109f8b931c6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a30c6469ab28a1ae578b23109f8b931c6">~MetaInfoInterface</a> ()</td></tr>
<tr class="memdesc:a30c6469ab28a1ae578b23109f8b931c6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">destructor <a href="#a30c6469ab28a1ae578b23109f8b931c6">More...</a><br/></td></tr>
<tr class="separator:a30c6469ab28a1ae578b23109f8b931c6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0b7e858982ccb9d37b01971e6cd43596 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a0b7e858982ccb9d37b01971e6cd43596">operator=</a> (const <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a> &rhs)</td></tr>
<tr class="memdesc:a0b7e858982ccb9d37b01971e6cd43596 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">assignment operator <a href="#a0b7e858982ccb9d37b01971e6cd43596">More...</a><br/></td></tr>
<tr class="separator:a0b7e858982ccb9d37b01971e6cd43596 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae1233471a3265a00a5edef4017ee8f20 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#ae1233471a3265a00a5edef4017ee8f20">operator==</a> (const <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a> &rhs) const </td></tr>
<tr class="memdesc:ae1233471a3265a00a5edef4017ee8f20 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#ae1233471a3265a00a5edef4017ee8f20">More...</a><br/></td></tr>
<tr class="separator:ae1233471a3265a00a5edef4017ee8f20 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aabdb6bf51d554dba98617e3f7609c6cf inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#aabdb6bf51d554dba98617e3f7609c6cf">operator!=</a> (const <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a> &rhs) const </td></tr>
<tr class="memdesc:aabdb6bf51d554dba98617e3f7609c6cf inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#aabdb6bf51d554dba98617e3f7609c6cf">More...</a><br/></td></tr>
<tr class="separator:aabdb6bf51d554dba98617e3f7609c6cf inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aae35ae2dfad88d673b03c787aafca83d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1DataValue.html">DataValue</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#aae35ae2dfad88d673b03c787aafca83d">getMetaValue</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &name) const </td></tr>
<tr class="memdesc:aae35ae2dfad88d673b03c787aafca83d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">returns the value corresponding to a string <a href="#aae35ae2dfad88d673b03c787aafca83d">More...</a><br/></td></tr>
<tr class="separator:aae35ae2dfad88d673b03c787aafca83d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae9b2516ea1331df63e4fc098c16b50e3 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1DataValue.html">DataValue</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#ae9b2516ea1331df63e4fc098c16b50e3">getMetaValue</a> (<a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> index) const </td></tr>
<tr class="memdesc:ae9b2516ea1331df63e4fc098c16b50e3 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">returns the value corresponding to an index <a href="#ae9b2516ea1331df63e4fc098c16b50e3">More...</a><br/></td></tr>
<tr class="separator:ae9b2516ea1331df63e4fc098c16b50e3 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acabf8a0e3c40224df62b282a5ce0318f inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#acabf8a0e3c40224df62b282a5ce0318f">metaValueExists</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &name) const </td></tr>
<tr class="memdesc:acabf8a0e3c40224df62b282a5ce0318f inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">returns if this <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> is set <a href="#acabf8a0e3c40224df62b282a5ce0318f">More...</a><br/></td></tr>
<tr class="separator:acabf8a0e3c40224df62b282a5ce0318f inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aabf87daa46e081dd9584d4987d2206f6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#aabf87daa46e081dd9584d4987d2206f6">metaValueExists</a> (<a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> index) const </td></tr>
<tr class="memdesc:aabf87daa46e081dd9584d4987d2206f6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">returns if this <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> is set <a href="#aabf87daa46e081dd9584d4987d2206f6">More...</a><br/></td></tr>
<tr class="separator:aabf87daa46e081dd9584d4987d2206f6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a135a7e818125b31198a8a65d9ac7a3d1 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a135a7e818125b31198a8a65d9ac7a3d1">setMetaValue</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &name, const <a class="el" href="classOpenMS_1_1DataValue.html">DataValue</a> &value)</td></tr>
<tr class="memdesc:a135a7e818125b31198a8a65d9ac7a3d1 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">sets the <a class="el" href="classOpenMS_1_1DataValue.html" title="Class to hold strings, numeric values, lists of strings and lists of numeric values. ">DataValue</a> corresponding to a name <a href="#a135a7e818125b31198a8a65d9ac7a3d1">More...</a><br/></td></tr>
<tr class="separator:a135a7e818125b31198a8a65d9ac7a3d1 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abbb9d3ebe8c7c3f6a9ed131faa8cf2c9 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#abbb9d3ebe8c7c3f6a9ed131faa8cf2c9">setMetaValue</a> (<a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> index, const <a class="el" href="classOpenMS_1_1DataValue.html">DataValue</a> &value)</td></tr>
<tr class="memdesc:abbb9d3ebe8c7c3f6a9ed131faa8cf2c9 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">sets the <a class="el" href="classOpenMS_1_1DataValue.html" title="Class to hold strings, numeric values, lists of strings and lists of numeric values. ">DataValue</a> corresponding to an index <a href="#abbb9d3ebe8c7c3f6a9ed131faa8cf2c9">More...</a><br/></td></tr>
<tr class="separator:abbb9d3ebe8c7c3f6a9ed131faa8cf2c9 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aac68103b8336fa854cf4c59f8bd6cff8 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#aac68103b8336fa854cf4c59f8bd6cff8">removeMetaValue</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &name)</td></tr>
<tr class="memdesc:aac68103b8336fa854cf4c59f8bd6cff8 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">Removes the <a class="el" href="classOpenMS_1_1DataValue.html" title="Class to hold strings, numeric values, lists of strings and lists of numeric values. ">DataValue</a> corresponding to <code>name</code> if it exists. <a href="#aac68103b8336fa854cf4c59f8bd6cff8">More...</a><br/></td></tr>
<tr class="separator:aac68103b8336fa854cf4c59f8bd6cff8 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3a8a7da0f5e71d3b96ea902c29bcf632 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a3a8a7da0f5e71d3b96ea902c29bcf632">removeMetaValue</a> (<a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> index)</td></tr>
<tr class="memdesc:a3a8a7da0f5e71d3b96ea902c29bcf632 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">Removes the <a class="el" href="classOpenMS_1_1DataValue.html" title="Class to hold strings, numeric values, lists of strings and lists of numeric values. ">DataValue</a> corresponding to <code>index</code> if it exists. <a href="#a3a8a7da0f5e71d3b96ea902c29bcf632">More...</a><br/></td></tr>
<tr class="separator:a3a8a7da0f5e71d3b96ea902c29bcf632 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaefa2a4a5d50f899cdd82d686104d164 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#aaefa2a4a5d50f899cdd82d686104d164">getKeys</a> (std::vector< <a class="el" href="classOpenMS_1_1String.html">String</a> > &keys) const </td></tr>
<tr class="memdesc:aaefa2a4a5d50f899cdd82d686104d164 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">fills the given vector with a list of all keys for which a value is set <a href="#aaefa2a4a5d50f899cdd82d686104d164">More...</a><br/></td></tr>
<tr class="separator:aaefa2a4a5d50f899cdd82d686104d164 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a121b22fe4dd05ef9fc4160bd52e9bd0b inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a121b22fe4dd05ef9fc4160bd52e9bd0b">getKeys</a> (std::vector< <a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> > &keys) const </td></tr>
<tr class="memdesc:a121b22fe4dd05ef9fc4160bd52e9bd0b inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">fills the given vector with a list of all keys for which a value is set <a href="#a121b22fe4dd05ef9fc4160bd52e9bd0b">More...</a><br/></td></tr>
<tr class="separator:a121b22fe4dd05ef9fc4160bd52e9bd0b inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a001483d1f67f068e585f10d9abcc487d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a001483d1f67f068e585f10d9abcc487d">isMetaEmpty</a> () const </td></tr>
<tr class="memdesc:a001483d1f67f068e585f10d9abcc487d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">returns if the <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> is empty <a href="#a001483d1f67f068e585f10d9abcc487d">More...</a><br/></td></tr>
<tr class="separator:a001483d1f67f068e585f10d9abcc487d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae5b77ecfe9182ebd648d54ca1137eba0 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#ae5b77ecfe9182ebd648d54ca1137eba0">clearMetaInfo</a> ()</td></tr>
<tr class="memdesc:ae5b77ecfe9182ebd648d54ca1137eba0 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">removes all meta values <a href="#ae5b77ecfe9182ebd648d54ca1137eba0">More...</a><br/></td></tr>
<tr class="separator:ae5b77ecfe9182ebd648d54ca1137eba0 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1DocumentIdentifier"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1DocumentIdentifier')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a></td></tr>
<tr class="memitem:a7fb206677dc6ea82973629409705fd75 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a7fb206677dc6ea82973629409705fd75">DocumentIdentifier</a> ()</td></tr>
<tr class="memdesc:a7fb206677dc6ea82973629409705fd75 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">default constructor <a href="#a7fb206677dc6ea82973629409705fd75">More...</a><br/></td></tr>
<tr class="separator:a7fb206677dc6ea82973629409705fd75 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a40662ac1f41ebf7483cc85d4f1b409c5 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a40662ac1f41ebf7483cc85d4f1b409c5">DocumentIdentifier</a> (const <a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a> &source)</td></tr>
<tr class="memdesc:a40662ac1f41ebf7483cc85d4f1b409c5 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor. <a href="#a40662ac1f41ebf7483cc85d4f1b409c5">More...</a><br/></td></tr>
<tr class="separator:a40662ac1f41ebf7483cc85d4f1b409c5 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9cef699d5e2f6c8c197a1364605923ac inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a9cef699d5e2f6c8c197a1364605923ac">operator=</a> (const <a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a> &source)</td></tr>
<tr class="memdesc:a9cef699d5e2f6c8c197a1364605923ac inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator. <a href="#a9cef699d5e2f6c8c197a1364605923ac">More...</a><br/></td></tr>
<tr class="separator:a9cef699d5e2f6c8c197a1364605923ac inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a75abab7891cf576f294c2878cf00f090 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a75abab7891cf576f294c2878cf00f090">operator==</a> (const <a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a> &rhs) const </td></tr>
<tr class="memdesc:a75abab7891cf576f294c2878cf00f090 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#a75abab7891cf576f294c2878cf00f090">More...</a><br/></td></tr>
<tr class="separator:a75abab7891cf576f294c2878cf00f090 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a36b60bd2716d88a78e7f80b9ecd83dc8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a36b60bd2716d88a78e7f80b9ecd83dc8">~DocumentIdentifier</a> ()</td></tr>
<tr class="memdesc:a36b60bd2716d88a78e7f80b9ecd83dc8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">destructor <a href="#a36b60bd2716d88a78e7f80b9ecd83dc8">More...</a><br/></td></tr>
<tr class="separator:a36b60bd2716d88a78e7f80b9ecd83dc8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00f1456779f764c2738c35be2c04f6e8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a00f1456779f764c2738c35be2c04f6e8">setIdentifier</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &id)</td></tr>
<tr class="memdesc:a00f1456779f764c2738c35be2c04f6e8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">set document identifier (e.g. an LSID) <a href="#a00f1456779f764c2738c35be2c04f6e8">More...</a><br/></td></tr>
<tr class="separator:a00f1456779f764c2738c35be2c04f6e8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4eb8ec8636a89f575db95a370fd480b6 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a4eb8ec8636a89f575db95a370fd480b6">getIdentifier</a> () const </td></tr>
<tr class="memdesc:a4eb8ec8636a89f575db95a370fd480b6 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">retrieve document identifier (e.g. an LSID) <a href="#a4eb8ec8636a89f575db95a370fd480b6">More...</a><br/></td></tr>
<tr class="separator:a4eb8ec8636a89f575db95a370fd480b6 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af35350b215e234aeb68b5a2d058e9c6f inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#af35350b215e234aeb68b5a2d058e9c6f">swap</a> (<a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a> &from)</td></tr>
<tr class="memdesc:af35350b215e234aeb68b5a2d058e9c6f inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">exchange content with <code>from</code> <a href="#af35350b215e234aeb68b5a2d058e9c6f">More...</a><br/></td></tr>
<tr class="separator:af35350b215e234aeb68b5a2d058e9c6f inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3b1a4ef7f451b9fdf97c46a128275c99 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a3b1a4ef7f451b9fdf97c46a128275c99">setLoadedFilePath</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &file_name)</td></tr>
<tr class="memdesc:a3b1a4ef7f451b9fdf97c46a128275c99 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">set the file_name_ according to absolute path of the file loaded from preferably done whilst loading <a href="#a3b1a4ef7f451b9fdf97c46a128275c99">More...</a><br/></td></tr>
<tr class="separator:a3b1a4ef7f451b9fdf97c46a128275c99 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aee7ac99be667b810be1b096691c58efa inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#aee7ac99be667b810be1b096691c58efa">getLoadedFilePath</a> () const </td></tr>
<tr class="memdesc:aee7ac99be667b810be1b096691c58efa inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">get the file_name_ which is the absolute path to the file loaded from <a href="#aee7ac99be667b810be1b096691c58efa">More...</a><br/></td></tr>
<tr class="separator:aee7ac99be667b810be1b096691c58efa inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb9181a2ee15dc517acea64e11ba8f6e inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#aeb9181a2ee15dc517acea64e11ba8f6e">setLoadedFileType</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &file_name)</td></tr>
<tr class="memdesc:aeb9181a2ee15dc517acea64e11ba8f6e inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">set the file_type according to the type of the file loaded from (see FileHandler::Type) preferably done whilst loading <a href="#aeb9181a2ee15dc517acea64e11ba8f6e">More...</a><br/></td></tr>
<tr class="separator:aeb9181a2ee15dc517acea64e11ba8f6e inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad995fa0a761bfdc08fd54e38b1fa1d55 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="structOpenMS_1_1FileTypes.html#a1d1cfd8ffb84e947f82999c682b666a7">FileTypes::Type</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#ad995fa0a761bfdc08fd54e38b1fa1d55">getLoadedFileType</a> () const </td></tr>
<tr class="memdesc:ad995fa0a761bfdc08fd54e38b1fa1d55 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">get the file_type (e.g. featureXML, consensusXML, mzData, mzXML, mzML, ...) of the file loaded from <a href="#ad995fa0a761bfdc08fd54e38b1fa1d55">More...</a><br/></td></tr>
<tr class="separator:ad995fa0a761bfdc08fd54e38b1fa1d55 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1PersistentObject"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1PersistentObject')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classOpenMS_1_1PersistentObject.html">PersistentObject</a></td></tr>
<tr class="memitem:a7e87ad10dca0d49591d34fc0b3a7b1d8 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1PersistentObject.html#a7e87ad10dca0d49591d34fc0b3a7b1d8">PersistentObject</a> ()</td></tr>
<tr class="memdesc:a7e87ad10dca0d49591d34fc0b3a7b1d8 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="mdescLeft"> </td><td class="mdescRight">Default constructor. <a href="#a7e87ad10dca0d49591d34fc0b3a7b1d8">More...</a><br/></td></tr>
<tr class="separator:a7e87ad10dca0d49591d34fc0b3a7b1d8 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad40e53542f2296d4210e0163d00abc19 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1PersistentObject.html#ad40e53542f2296d4210e0163d00abc19">~PersistentObject</a> ()</td></tr>
<tr class="memdesc:ad40e53542f2296d4210e0163d00abc19 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#ad40e53542f2296d4210e0163d00abc19">More...</a><br/></td></tr>
<tr class="separator:ad40e53542f2296d4210e0163d00abc19 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aede71eb0c7f871a5415bb4757f8faec5 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1PersistentObject.html">PersistentObject</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1PersistentObject.html#aede71eb0c7f871a5415bb4757f8faec5">operator=</a> (const <a class="el" href="classOpenMS_1_1PersistentObject.html">PersistentObject</a> &rhs)</td></tr>
<tr class="memdesc:aede71eb0c7f871a5415bb4757f8faec5 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator. <a href="#aede71eb0c7f871a5415bb4757f8faec5">More...</a><br/></td></tr>
<tr class="separator:aede71eb0c7f871a5415bb4757f8faec5 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad90344f35ad83bd6e69af1a17883b8e5 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="group__Concept.html#gab5658a38464ac4e09c792c26840150f1">UID</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1PersistentObject.html#ad90344f35ad83bd6e69af1a17883b8e5">getPersistenceId</a> () const </td></tr>
<tr class="memdesc:ad90344f35ad83bd6e69af1a17883b8e5 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="mdescLeft"> </td><td class="mdescRight">Returns the persistence id. <a href="#ad90344f35ad83bd6e69af1a17883b8e5">More...</a><br/></td></tr>
<tr class="separator:ad90344f35ad83bd6e69af1a17883b8e5 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab1d88f1b260549db53cf50056e42dde9 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1PersistentObject.html#ab1d88f1b260549db53cf50056e42dde9">setPersistenceId</a> (const <a class="el" href="group__Concept.html#gab5658a38464ac4e09c792c26840150f1">UID</a> &persistence_id)</td></tr>
<tr class="memdesc:ab1d88f1b260549db53cf50056e42dde9 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="mdescLeft"> </td><td class="mdescRight">Sets the persistence id. <a href="#ab1d88f1b260549db53cf50056e42dde9">More...</a><br/></td></tr>
<tr class="separator:ab1d88f1b260549db53cf50056e42dde9 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad88b5f0f6c90153e67e86b0b761e54c4 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1PersistentObject.html#ad88b5f0f6c90153e67e86b0b761e54c4">clearId</a> (bool deep=true)</td></tr>
<tr class="memdesc:ad88b5f0f6c90153e67e86b0b761e54c4 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="mdescLeft"> </td><td class="mdescRight">Clears the persistence id. <a href="#ad88b5f0f6c90153e67e86b0b761e54c4">More...</a><br/></td></tr>
<tr class="separator:ad88b5f0f6c90153e67e86b0b761e54c4 inherit pub_methods_classOpenMS_1_1PersistentObject"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:aca192a8c89187e4311eacc9daa073c7b"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#aca192a8c89187e4311eacc9daa073c7b">clearChildIds_</a> ()</td></tr>
<tr class="memdesc:aca192a8c89187e4311eacc9daa073c7b"><td class="mdescLeft"> </td><td class="mdescRight">Clears the persistence id of all sub-objects. <a href="#aca192a8c89187e4311eacc9daa073c7b">More...</a><br/></td></tr>
<tr class="separator:aca192a8c89187e4311eacc9daa073c7b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classOpenMS_1_1RangeManager"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classOpenMS_1_1RangeManager')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager< 2 ></a></td></tr>
<tr class="memitem:a1b01c1c3871aad142893e20d17afc340 inherit pro_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a1b01c1c3871aad142893e20d17afc340">updateRanges_</a> (const PeakIteratorType &begin, const PeakIteratorType &end)</td></tr>
<tr class="memdesc:a1b01c1c3871aad142893e20d17afc340 inherit pro_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Updates the range using data points in the iterator range. <a href="#a1b01c1c3871aad142893e20d17afc340">More...</a><br/></td></tr>
<tr class="separator:a1b01c1c3871aad142893e20d17afc340 inherit pro_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classOpenMS_1_1MetaInfoInterface"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classOpenMS_1_1MetaInfoInterface')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a></td></tr>
<tr class="memitem:a23bcf7d2c2357d11e1363dfe44057037 inherit pro_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a23bcf7d2c2357d11e1363dfe44057037">createIfNotExists_</a> ()</td></tr>
<tr class="memdesc:a23bcf7d2c2357d11e1363dfe44057037 inherit pro_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">creates the <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> object if it does not exist <a href="#a23bcf7d2c2357d11e1363dfe44057037">More...</a><br/></td></tr>
<tr class="separator:a23bcf7d2c2357d11e1363dfe44057037 inherit pro_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr class="memitem:a9737d91a86f67021ec794749b5b6840a"><td class="memItemLeft" align="right" valign="top">std::vector< <a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a9737d91a86f67021ec794749b5b6840a">ms_levels_</a></td></tr>
<tr class="memdesc:a9737d91a86f67021ec794749b5b6840a"><td class="mdescLeft"> </td><td class="mdescRight">MS levels of the data. <a href="#a9737d91a86f67021ec794749b5b6840a">More...</a><br/></td></tr>
<tr class="separator:a9737d91a86f67021ec794749b5b6840a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab8aa658ccc7d2555975e8f90c09c211c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#ga5162db95dc78bdf2e3a71d73bec703e9">UInt64</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ab8aa658ccc7d2555975e8f90c09c211c">total_size_</a></td></tr>
<tr class="memdesc:ab8aa658ccc7d2555975e8f90c09c211c"><td class="mdescLeft"> </td><td class="mdescRight">Number of all data points. <a href="#ab8aa658ccc7d2555975e8f90c09c211c">More...</a><br/></td></tr>
<tr class="separator:ab8aa658ccc7d2555975e8f90c09c211c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac2bb84635b95ec5bff6954f28375cd94"><td class="memItemLeft" align="right" valign="top">std::vector< <a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a><br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ac2bb84635b95ec5bff6954f28375cd94">chromatograms_</a></td></tr>
<tr class="memdesc:ac2bb84635b95ec5bff6954f28375cd94"><td class="mdescLeft"> </td><td class="mdescRight">chromatograms <a href="#ac2bb84635b95ec5bff6954f28375cd94">More...</a><br/></td></tr>
<tr class="separator:ac2bb84635b95ec5bff6954f28375cd94"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a05de1d78d72149ac5c9fa2d8aec6f6cd"><td class="memItemLeft" align="right" valign="top">std::vector< <a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a05de1d78d72149ac5c9fa2d8aec6f6cd">spectra_</a></td></tr>
<tr class="memdesc:a05de1d78d72149ac5c9fa2d8aec6f6cd"><td class="mdescLeft"> </td><td class="mdescRight">spectra <a href="#a05de1d78d72149ac5c9fa2d8aec6f6cd">More...</a><br/></td></tr>
<tr class="separator:a05de1d78d72149ac5c9fa2d8aec6f6cd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1RangeManager"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1RangeManager')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager< 2 ></a></td></tr>
<tr class="memitem:a17d1a1e2129fe7ed31600ef8e73c5f9c inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1RangeManager.html#a6e46dc0a14662f00a779721738310cfb">IntensityRangeType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a17d1a1e2129fe7ed31600ef8e73c5f9c">int_range_</a></td></tr>
<tr class="memdesc:a17d1a1e2129fe7ed31600ef8e73c5f9c inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Intensity range (1-dimensional) <a href="#a17d1a1e2129fe7ed31600ef8e73c5f9c">More...</a><br/></td></tr>
<tr class="separator:a17d1a1e2129fe7ed31600ef8e73c5f9c inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab5f4f0d11b0ceff54d8664d1cce7fd8a inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1RangeManager.html#ace303f7dacc306627f694eb21d6a8366">PositionRangeType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#ab5f4f0d11b0ceff54d8664d1cce7fd8a">pos_range_</a></td></tr>
<tr class="memdesc:ab5f4f0d11b0ceff54d8664d1cce7fd8a inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Position range (D-dimensional) <a href="#ab5f4f0d11b0ceff54d8664d1cce7fd8a">More...</a><br/></td></tr>
<tr class="separator:ab5f4f0d11b0ceff54d8664d1cce7fd8a inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1ExperimentalSettings"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1ExperimentalSettings')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a></td></tr>
<tr class="memitem:a3d4aae66109891928b621a6437b234f2 inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Sample.html">Sample</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a3d4aae66109891928b621a6437b234f2">sample_</a></td></tr>
<tr class="separator:a3d4aae66109891928b621a6437b234f2 inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a72a82b25931a7ecc3444b375069ca892 inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">std::vector< <a class="el" href="classOpenMS_1_1SourceFile.html">SourceFile</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a72a82b25931a7ecc3444b375069ca892">source_files_</a></td></tr>
<tr class="separator:a72a82b25931a7ecc3444b375069ca892 inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af16d546a5fb88573a5c1a4f35a69920b inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">std::vector< <a class="el" href="classOpenMS_1_1ContactPerson.html">ContactPerson</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#af16d546a5fb88573a5c1a4f35a69920b">contacts_</a></td></tr>
<tr class="separator:af16d546a5fb88573a5c1a4f35a69920b inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6c810bcd15297b0cb139dc389654e637 inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Instrument.html">Instrument</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a6c810bcd15297b0cb139dc389654e637">instrument_</a></td></tr>
<tr class="separator:a6c810bcd15297b0cb139dc389654e637 inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5973f3fbd3c0c041d58906f6fe9dc97a inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1HPLC.html">HPLC</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a5973f3fbd3c0c041d58906f6fe9dc97a">hplc_</a></td></tr>
<tr class="separator:a5973f3fbd3c0c041d58906f6fe9dc97a inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae37df8c90f7246f2ea705421a91bdf34 inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1DateTime.html">DateTime</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#ae37df8c90f7246f2ea705421a91bdf34">datetime_</a></td></tr>
<tr class="separator:ae37df8c90f7246f2ea705421a91bdf34 inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0476ea2b66eba99318ede9591a223f64 inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a0476ea2b66eba99318ede9591a223f64">comment_</a></td></tr>
<tr class="separator:a0476ea2b66eba99318ede9591a223f64 inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad9d205c1045bb7a3b829070054db706f inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top">std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#ad9d205c1045bb7a3b829070054db706f">protein_identifications_</a></td></tr>
<tr class="separator:ad9d205c1045bb7a3b829070054db706f inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a43f32aca679ba6854548e93eabb4249b inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html#a43f32aca679ba6854548e93eabb4249b">fraction_identifier_</a></td></tr>
<tr class="separator:a43f32aca679ba6854548e93eabb4249b inherit pro_attribs_classOpenMS_1_1ExperimentalSettings"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1MetaInfoInterface"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1MetaInfoInterface')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a></td></tr>
<tr class="memitem:a07ce72f4d24f650fcdbba3801e1b8f59 inherit pro_attribs_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MetaInfo.html">MetaInfo</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a07ce72f4d24f650fcdbba3801e1b8f59">meta_</a></td></tr>
<tr class="memdesc:a07ce72f4d24f650fcdbba3801e1b8f59 inherit pro_attribs_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">pointer to the <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> object. 0 by default <a href="#a07ce72f4d24f650fcdbba3801e1b8f59">More...</a><br/></td></tr>
<tr class="separator:a07ce72f4d24f650fcdbba3801e1b8f59 inherit pro_attribs_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1DocumentIdentifier"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1DocumentIdentifier')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a></td></tr>
<tr class="memitem:ae1d43a6f8bee9f364bea98c12662e966 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#ae1d43a6f8bee9f364bea98c12662e966">id_</a></td></tr>
<tr class="memdesc:ae1d43a6f8bee9f364bea98c12662e966 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">the ID (e.g. LSID) <a href="#ae1d43a6f8bee9f364bea98c12662e966">More...</a><br/></td></tr>
<tr class="separator:ae1d43a6f8bee9f364bea98c12662e966 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acb68b342f99bac716f72c8d48bb1f517 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#acb68b342f99bac716f72c8d48bb1f517">file_path_</a></td></tr>
<tr class="memdesc:acb68b342f99bac716f72c8d48bb1f517 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">the path to the loaded file <a href="#acb68b342f99bac716f72c8d48bb1f517">More...</a><br/></td></tr>
<tr class="separator:acb68b342f99bac716f72c8d48bb1f517 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae997e7676ba9c8429217e6b94c377ece inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structOpenMS_1_1FileTypes.html#a1d1cfd8ffb84e947f82999c682b666a7">FileTypes::Type</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#ae997e7676ba9c8429217e6b94c377ece">file_type_</a></td></tr>
<tr class="memdesc:ae997e7676ba9c8429217e6b94c377ece inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">the type of the loaded file <a href="#ae997e7676ba9c8429217e6b94c377ece">More...</a><br/></td></tr>
<tr class="separator:ae997e7676ba9c8429217e6b94c377ece inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1PersistentObject"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1PersistentObject')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classOpenMS_1_1PersistentObject.html">PersistentObject</a></td></tr>
<tr class="memitem:af3010751b605ab1544b527f76a49c6a7 inherit pro_attribs_classOpenMS_1_1PersistentObject"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gab5658a38464ac4e09c792c26840150f1">UID</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1PersistentObject.html#af3010751b605ab1544b527f76a49c6a7">persistence_id_</a></td></tr>
<tr class="memdesc:af3010751b605ab1544b527f76a49c6a7 inherit pro_attribs_classOpenMS_1_1PersistentObject"><td class="mdescLeft"> </td><td class="mdescRight">A persistence id used to refer the data back to the source. <a href="#af3010751b605ab1544b527f76a49c6a7">More...</a><br/></td></tr>
<tr class="separator:af3010751b605ab1544b527f76a49c6a7 inherit pro_attribs_classOpenMS_1_1PersistentObject"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="member-group"></a>
Delegations of calls to the vector of MSSpectra</h2></td></tr>
<tr class="memitem:a758d02a5183e542558cd2f7ad65c683c"><td class="memItemLeft" align="right" valign="top">typedef Base::value_type </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a758d02a5183e542558cd2f7ad65c683c">value_type</a></td></tr>
<tr class="separator:a758d02a5183e542558cd2f7ad65c683c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0bc3019d7d2ff6c73f261836bff0af3a"><td class="memItemLeft" align="right" valign="top">typedef Base::iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a0bc3019d7d2ff6c73f261836bff0af3a">iterator</a></td></tr>
<tr class="separator:a0bc3019d7d2ff6c73f261836bff0af3a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8163da75e575365fc14d7dbf3ea74de"><td class="memItemLeft" align="right" valign="top">typedef Base::const_iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ae8163da75e575365fc14d7dbf3ea74de">const_iterator</a></td></tr>
<tr class="separator:ae8163da75e575365fc14d7dbf3ea74de"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9d78a687cf2a391198bb3cbc08bc06cb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a9d78a687cf2a391198bb3cbc08bc06cb">size</a> () const </td></tr>
<tr class="separator:a9d78a687cf2a391198bb3cbc08bc06cb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac2bc824d6ff2633ec34793c9e918d479"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ac2bc824d6ff2633ec34793c9e918d479">resize</a> (<a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> s)</td></tr>
<tr class="separator:ac2bc824d6ff2633ec34793c9e918d479"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac6e61de369e994009e36f344f99c15ad"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ac6e61de369e994009e36f344f99c15ad">empty</a> () const </td></tr>
<tr class="separator:ac6e61de369e994009e36f344f99c15ad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af5e67d26823ec12e91434f4e74faa9d1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#af5e67d26823ec12e91434f4e74faa9d1">reserve</a> (<a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> s)</td></tr>
<tr class="separator:af5e67d26823ec12e91434f4e74faa9d1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af7dcf81ab729a368193aa0bbe5ac116e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#af7dcf81ab729a368193aa0bbe5ac116e">operator[]</a> (<a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> n)</td></tr>
<tr class="separator:af7dcf81ab729a368193aa0bbe5ac116e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2aa0b6f1da05f0ef6eddefa06f858e1b"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a2aa0b6f1da05f0ef6eddefa06f858e1b">operator[]</a> (<a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> n) const </td></tr>
<tr class="separator:a2aa0b6f1da05f0ef6eddefa06f858e1b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2387033802383edbdc95f9bbb12a707e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#a2387033802383edbdc95f9bbb12a707e">begin</a> ()</td></tr>
<tr class="separator:a2387033802383edbdc95f9bbb12a707e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb8a08dab209e7d8bd94ea796e8055e7"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#aeb8a08dab209e7d8bd94ea796e8055e7">begin</a> () const </td></tr>
<tr class="separator:aeb8a08dab209e7d8bd94ea796e8055e7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab45dae688fc5d8983727abffa4389003"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#ab45dae688fc5d8983727abffa4389003">end</a> ()</td></tr>
<tr class="separator:ab45dae688fc5d8983727abffa4389003"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afd94c820b193c151ddbaae99185a24f4"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MSExperiment.html#afd94c820b193c151ddbaae99185a24f4">end</a> () const </td></tr>
<tr class="separator:afd94c820b193c151ddbaae99185a24f4"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_static_methods_classOpenMS_1_1MetaInfoInterface"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classOpenMS_1_1MetaInfoInterface')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a></td></tr>
<tr class="memitem:adc0992991f912788ed14e72b6f62b2dd inherit pub_static_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classOpenMS_1_1MetaInfoRegistry.html">MetaInfoRegistry</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#adc0992991f912788ed14e72b6f62b2dd">metaRegistry</a> ()</td></tr>
<tr class="memdesc:adc0992991f912788ed14e72b6f62b2dd inherit pub_static_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft"> </td><td class="mdescRight">retuns a reference to the <a class="el" href="classOpenMS_1_1MetaInfoRegistry.html" title="Registry which assigns unique integer indices to strings. ">MetaInfoRegistry</a> <a href="#adc0992991f912788ed14e72b6f62b2dd">More...</a><br/></td></tr>
<tr class="separator:adc0992991f912788ed14e72b6f62b2dd inherit pub_static_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><h3>template<typename PeakT = Peak1D, typename ChromatogramPeakT = ChromatogramPeak><br/>
class OpenMS::MSExperiment< PeakT, ChromatogramPeakT ></h3>
<p>Representation of a mass spectrometry experiment. </p>
<p>Contains the data and metadata of an experiment performed with an MS (or <a class="el" href="classOpenMS_1_1HPLC.html" title="Representation of a HPLC experiment. ">HPLC</a> and MS).</p>
<p>Be carefull when changing the order of contained <a class="el" href="classOpenMS_1_1MSSpectrum.html" title="The representation of a 1D spectrum. ">MSSpectrum</a> instances, if tandem-MS data is stored in this class. The only way to find a precursor spectrum of <a class="el" href="classOpenMS_1_1MSSpectrum.html" title="The representation of a 1D spectrum. ">MSSpectrum</a> x is to search for the first spectrum before x that has a lower MS-level!</p>
<dl class="section note"><dt>Note</dt><dd>For range operations, see <a class="el" href="group__RangeUtils.html">RangeUtils module</a>! </dd></dl>
</div><h2 class="groupheader">Member Typedef Documentation</h2>
<a class="anchor" id="a9aa8e2a39a1767b456c47000d2ae1a56"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classOpenMS_1_1Internal_1_1AreaIterator.html">Internal::AreaIterator</a><<a class="el" href="classPeakT.html">PeakT</a>, <a class="el" href="classPeakT.html">PeakT</a> &, <a class="el" href="classPeakT.html">PeakT</a> *, <a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a>, typename <a class="el" href="classOpenMS_1_1MSSpectrum.html#a6d64276a665c3c0dca8fb4ade3c8b477">SpectrumType::Iterator</a>> <a class="el" href="classOpenMS_1_1MSExperiment.html#a9aa8e2a39a1767b456c47000d2ae1a56">AreaIterator</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Mutable area iterator type (for traversal of a rectangular subset of the peaks) </p>
</div>
</div>
<a class="anchor" id="a167f63a2d1a578a83eb07c33a25a8f43"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classOpenMS_1_1DRange.html">DRange</a><2> <a class="el" href="classOpenMS_1_1MSExperiment.html#a167f63a2d1a578a83eb07c33a25a8f43">AreaType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Area type. </p>
</div>
</div>
<a class="anchor" id="a08f107173406c1c71a7127eebef82515"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef std::vector<<a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a>> <a class="el" href="classOpenMS_1_1MSExperiment.html#a08f107173406c1c71a7127eebef82515">Base</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>STL base class type. </p>
</div>
</div>
<a class="anchor" id="a5de1db69904b11c688819feb60559d98"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef ChromatogramPeakT <a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Chromatogram peak type. </p>
</div>
</div>
<a class="anchor" id="a5bfc152a01835ee1a12f01241b4eda50"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a><<a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a>> <a class="el" href="classOpenMS_1_1MSExperiment.html#a5bfc152a01835ee1a12f01241b4eda50">ChromatogramType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Chromatogram type. </p>
</div>
</div>
<a class="anchor" id="ae8163da75e575365fc14d7dbf3ea74de"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef Base::const_iterator <a class="el" href="classOpenMS_1_1MSExperiment.html#ae8163da75e575365fc14d7dbf3ea74de">const_iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a0dd6c8130427f887b79db48cfd58181a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classOpenMS_1_1Internal_1_1AreaIterator.html">Internal::AreaIterator</a><const <a class="el" href="classPeakT.html">PeakT</a>, const <a class="el" href="classPeakT.html">PeakT</a> &, const <a class="el" href="classPeakT.html">PeakT</a> *, <a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a>, typename <a class="el" href="classOpenMS_1_1MSSpectrum.html#a4895afe86c2aa0747ae0411c58c82114">SpectrumType::ConstIterator</a>> <a class="el" href="classOpenMS_1_1MSExperiment.html#a0dd6c8130427f887b79db48cfd58181a">ConstAreaIterator</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Immutable area iterator type (for traversal of a rectangular subset of the peaks) </p>
</div>
</div>
<a class="anchor" id="aee0a1a68d0fab63eefa6e14010b4a7f0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef std::vector<<a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a>>::<a class="el" href="classOpenMS_1_1MSExperiment.html#ae8163da75e575365fc14d7dbf3ea74de">const_iterator</a> <a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Non-mutable iterator. </p>
</div>
</div>
<a class="anchor" id="a181486a43da338e31f089df7661f50bb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classOpenMS_1_1Peak2D.html#a063d40a3528749f1a905ab04d76387e0">PeakType::CoordinateType</a> <a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Coordinate type of peak positions. </p>
</div>
</div>
<a class="anchor" id="a221361082f641c3fccc58e9bc66aeee1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classOpenMS_1_1Peak2D.html#a4a8c5b2adc05e9ff96a007385bfe9b47">PeakType::IntensityType</a> <a class="el" href="classOpenMS_1_1MSExperiment.html#a221361082f641c3fccc58e9bc66aeee1">IntensityType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Intenstiy type of peaks. </p>
</div>
</div>
<a class="anchor" id="a3049e1d8765313f967f17885188d767c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef std::vector<<a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a>>::<a class="el" href="classOpenMS_1_1MSExperiment.html#a0bc3019d7d2ff6c73f261836bff0af3a">iterator</a> <a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Mutable iterator. </p>
</div>
</div>
<a class="anchor" id="a0bc3019d7d2ff6c73f261836bff0af3a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef Base::iterator <a class="el" href="classOpenMS_1_1MSExperiment.html#a0bc3019d7d2ff6c73f261836bff0af3a">iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a698f324c36214cc6ffb30a4868a88b2b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classPeakT.html">PeakT</a> <a class="el" href="classOpenMS_1_1MSExperiment.html#a698f324c36214cc6ffb30a4868a88b2b">PeakType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Peak type. </p>
</div>
</div>
<a class="anchor" id="a035217389fa12c02d059ddfb29c459e1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a><2> <a class="el" href="classOpenMS_1_1MSExperiment.html#a035217389fa12c02d059ddfb29c459e1">RangeManagerType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p><a class="el" href="classOpenMS_1_1RangeManager.html" title="Handles the managment of a position and intensity range. ">RangeManager</a> type. </p>
</div>
</div>
<a class="anchor" id="a066042ae14211da37d4fa66d466bfa3e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classOpenMS_1_1MSSpectrum.html">MSSpectrum</a><<a class="el" href="classOpenMS_1_1MSExperiment.html#a698f324c36214cc6ffb30a4868a88b2b">PeakType</a>> <a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Spectrum Type. </p>
</div>
</div>
<a class="anchor" id="a758d02a5183e542558cd2f7ad65c683c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef Base::value_type <a class="el" href="classOpenMS_1_1MSExperiment.html#a758d02a5183e542558cd2f7ad65c683c">value_type</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a77b14e3bc3d80b04c6e8c0253fc79ce2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a> </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Constructor. </p>
</div>
</div>
<a class="anchor" id="abad159f926fca4e34260f1331a5847c1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a> </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a>< <a class="el" href="classPeakT.html">PeakT</a>, ChromatogramPeakT > & </td>
<td class="paramname"><em>source</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Copy constructor. </p>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a37eb544fb451472f4679589fee735df4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void addChromatogram </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a>< <a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a> > & </td>
<td class="paramname"><em>chromatogram</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>adds a chromatogram to the list </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1PeakPickerHiRes.html#a805fcad9297b5ec0ee96b811e79ae895">PeakPickerHiRes::pickExperiment()</a>.</p>
</div>
</div>
<a class="anchor" id="ae9dafbb74a1a4c430ceef03e25ab8e10"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void addSpectrum </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1MSSpectrum.html">MSSpectrum</a>< <a class="el" href="classPeakT.html">PeakT</a> > & </td>
<td class="paramname"><em>spectrum</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>adds a spectra to the list </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1IDEvaluationBase.html#aef488ced33b7003c3eed1899b578e884">IDEvaluationBase::addSearchFile()</a>, <a class="el" href="classOpenMS_1_1TOPPViewBase.html#a653cd298ceb9fc75783f7ecdf476fe39">TOPPViewBase::copyLayer()</a>, <a class="el" href="classTOPPRNPxl.html#ae6668492d67ea303296f9db6ac56325c">TOPPRNPxl::main_()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#afc3ec85793adf0cdaacc5803e59f6c17">OfflinePrecursorIonSelection::makePrecursorSelectionForKnownLCMSMap()</a>, <a class="el" href="classOpenMS_1_1CachedmzML.html#a78668c2f83b7e9e4fe595c57ab4c642d">CachedmzML::readMemdump()</a>, and <a class="el" href="classOpenMS_1_1TOPPViewBase.html#ad0c5e46e336d0faaea1ecb2a11e58cea">TOPPViewBase::showSpectrumGenerationDialog()</a>.</p>
</div>
</div>
<a class="anchor" id="a878abca09cb3f6810e634b72b99007eb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a9aa8e2a39a1767b456c47000d2ae1a56">AreaIterator</a> areaBegin </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>min_rt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>max_rt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>min_mz</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>max_mz</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns an area iterator for <code>area</code>. </p>
</div>
</div>
<a class="anchor" id="aa23ed32415e6667bd2737377c24c16fb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a0dd6c8130427f887b79db48cfd58181a">ConstAreaIterator</a> areaBeginConst </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>min_rt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>max_rt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>min_mz</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>max_mz</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a non-mutable area iterator for <code>area</code>. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>.</p>
</div>
</div>
<a class="anchor" id="afb936fe46d35a9d29e36552a68c1ef2a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a9aa8e2a39a1767b456c47000d2ae1a56">AreaIterator</a> areaEnd </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns an invalid area iterator marking the end of an area. </p>
</div>
</div>
<a class="anchor" id="a5f9d4faff212e67330d60f958f0ce4bc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a0dd6c8130427f887b79db48cfd58181a">ConstAreaIterator</a> areaEndConst </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns an non-mutable invalid area iterator marking the end of an area. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>.</p>
</div>
</div>
<a class="anchor" id="a2387033802383edbdc95f9bbb12a707e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a> begin </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classOpenMS_1_1TOPPViewBase.html#a998e79e7149ca4ef1ca8fa1625ffa250">TOPPViewBase::annotateWithID()</a>, <a class="el" href="classOpenMS_1_1InternalCalibration.html#a2157a7fbbba00561b9bf8b26b469786d">InternalCalibration::calibrateMapGlobally()</a>, <a class="el" href="classOpenMS_1_1IsotopeWaveletTransform.html#a6eb1919d7fb83824c39dff16d3fca8f7">IsotopeWaveletTransform< PeakType >::extendBox_()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#ae895e8f290c7f5869249e59a7b53c417">OfflinePrecursorIonSelection::getMassRanges()</a>, <a class="el" href="classOpenMS_1_1TwoDOptimization.html#a6d2b21b20b10f65e5a6052e8c8aa84e7">TwoDOptimization::getRegionEndpoints_()</a>, <a class="el" href="classTOPPRNPxl.html#ae6668492d67ea303296f9db6ac56325c">TOPPRNPxl::main_()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#afc3ec85793adf0cdaacc5803e59f6c17">OfflinePrecursorIonSelection::makePrecursorSelectionForKnownLCMSMap()</a>, <a class="el" href="classOpenMS_1_1TwoDOptimization.html#a5678eb60386afb7f97145b361bd3947f">TwoDOptimization::optimize()</a>, <a class="el" href="classOpenMS_1_1TwoDOptimization.html#adca2617ab638fed2467b9d57b1fe2cfa">TwoDOptimization::optimizeRegionsScanwise_()</a>, and <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>.</p>
</div>
</div>
<a class="anchor" id="aeb8a08dab209e7d8bd94ea796e8055e7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> begin </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="af072fc84225ae927f7527f208ea86cbd"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void clear </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>clear_meta_data</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Clears all data and meta data. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">clear_meta_data</td><td>If <em>true</em>, all meta data is cleared in addition to the data. </td></tr>
</table>
</dd>
</dl>
<p>Referenced by <a class="el" href="classOpenMS_1_1PeakPickerHiRes.html#a805fcad9297b5ec0ee96b811e79ae895">PeakPickerHiRes::pickExperiment()</a>, <a class="el" href="classOpenMS_1_1IsotopeWaveletTransform.html#ac0b48539bdee44dbe1368bcfd412f33f">IsotopeWaveletTransform< PeakType >::updateBoxStates()</a>, and <a class="el" href="classOpenMS_1_1CachedmzML.html#ad117b85f93b2c7c04b5031c4d6f70a9f">CachedmzML::writeMetadata()</a>.</p>
</div>
</div>
<a class="anchor" id="aca192a8c89187e4311eacc9daa073c7b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void clearChildIds_ </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Clears the persistence id of all sub-objects. </p>
<p>Implements <a class="el" href="classOpenMS_1_1PersistentObject.html#af4bfd2fe1ed3e2440b51fcd77cfe06f7">PersistentObject</a>.</p>
</div>
</div>
<a class="anchor" id="a30581229b2239b7f01ad77aa8cec118c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool clearMetaDataArrays </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Clears the meta data arrays of all contained spectra (float, integer and string arrays) </p>
<dl class="section return"><dt>Returns</dt><dd><em>true</em> if meta data arrays were present and removed. <em>false</em> otherwise. </dd></dl>
</div>
</div>
<a class="anchor" id="ac6e61de369e994009e36f344f99c15ad"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool empty </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classOpenMS_1_1IDMapper.html#ad8c436deda857f332e4d843d002e0717">IDMapper::annotate()</a>, <a class="el" href="classOpenMS_1_1InternalCalibration.html#a2157a7fbbba00561b9bf8b26b469786d">InternalCalibration::calibrateMapGlobally()</a>, <a class="el" href="classOpenMS_1_1InternalCalibration.html#a1651981607d6c86252b9ab64e5f7996c">InternalCalibration::calibrateMapSpectrumwise()</a>, <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a48c8332d7771967946379f577ca3d973">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::findIsotope_()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#ae895e8f290c7f5869249e59a7b53c417">OfflinePrecursorIonSelection::getMassRanges()</a>, <a class="el" href="classOpenMS_1_1TOPPViewBase.html#ae9cf6e8153070938662f70474ce9a9a7">TOPPViewBase::hasPeptideIdentifications()</a>, <a class="el" href="classOpenMS_1_1TwoDOptimization.html#a5678eb60386afb7f97145b361bd3947f">TwoDOptimization::optimize()</a>, and <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>.</p>
</div>
</div>
<a class="anchor" id="ab45dae688fc5d8983727abffa4389003"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a> end </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classOpenMS_1_1TOPPViewBase.html#a998e79e7149ca4ef1ca8fa1625ffa250">TOPPViewBase::annotateWithID()</a>, <a class="el" href="classOpenMS_1_1InternalCalibration.html#a2157a7fbbba00561b9bf8b26b469786d">InternalCalibration::calibrateMapGlobally()</a>, <a class="el" href="classOpenMS_1_1TOPPViewBase.html#ade4a574ad3c0497e0e50ea61bc04b94f">TOPPViewBase::estimateNoiseFromRandomMS1Scans()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#ae895e8f290c7f5869249e59a7b53c417">OfflinePrecursorIonSelection::getMassRanges()</a>, <a class="el" href="classOpenMS_1_1TwoDOptimization.html#a6d2b21b20b10f65e5a6052e8c8aa84e7">TwoDOptimization::getRegionEndpoints_()</a>, <a class="el" href="classTOPPRNPxl.html#ae6668492d67ea303296f9db6ac56325c">TOPPRNPxl::main_()</a>, and <a class="el" href="classOpenMS_1_1TwoDOptimization.html#a5678eb60386afb7f97145b361bd3947f">TwoDOptimization::optimize()</a>.</p>
</div>
</div>
<a class="anchor" id="afd94c820b193c151ddbaae99185a24f4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> end </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a39cd3877560af16732f709348724f53a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void get2DData </td>
<td>(</td>
<td class="paramtype">Container & </td>
<td class="paramname"><em>cont</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads out a 2D Spectrum. </p>
<p>Container can be a PeakArray or an STL container of peaks which supports push_back(), <a class="el" href="classOpenMS_1_1MSExperiment.html#ab45dae688fc5d8983727abffa4389003">end()</a> and back() </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1ConsensusMap.html#ae48739acf91763132e117f8b608da145">ConsensusMap::convert()</a>.</p>
</div>
</div>
<a class="anchor" id="ae9be60694b267dc26b3e79a125646e25"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a><<a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a>>& getChromatogram </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td>
<td class="paramname"><em>id</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns a single chromatogram </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1GaussFilter.html#ad4b88e98d5f5de8b90ba2c68ecdddc1e">GaussFilter::filterExperiment()</a>, and <a class="el" href="classOpenMS_1_1SavitzkyGolayFilter.html#ad4b88e98d5f5de8b90ba2c68ecdddc1e">SavitzkyGolayFilter::filterExperiment()</a>.</p>
</div>
</div>
<a class="anchor" id="a02fccfed86a20f8bd0f6b98c23fadb2e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const std::vector<<a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a><<a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a>> >& getChromatograms </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the chromatogram list </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1TOPPBase.html#a8e50b81e2c3372c6c9529b10e6f1bf80">TOPPBase::addDataProcessing_()</a>, <a class="el" href="classOpenMS_1_1GaussFilter.html#ad4b88e98d5f5de8b90ba2c68ecdddc1e">GaussFilter::filterExperiment()</a>, <a class="el" href="classOpenMS_1_1SavitzkyGolayFilter.html#ad4b88e98d5f5de8b90ba2c68ecdddc1e">SavitzkyGolayFilter::filterExperiment()</a>, <a class="el" href="classOpenMS_1_1PeakPickerHiRes.html#a805fcad9297b5ec0ee96b811e79ae895">PeakPickerHiRes::pickExperiment()</a>, <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>, <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmMRM.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmMRM< PeakType, FeatureType >::run()</a>, <a class="el" href="classOpenMS_1_1FileHandler.html#a4a8354ef45f8a0eac5a5038b3a025f37">FileHandler::storeExperiment()</a>, and <a class="el" href="classOpenMS_1_1CachedmzML.html#ad117b85f93b2c7c04b5031c4d6f70a9f">CachedmzML::writeMetadata()</a>.</p>
</div>
</div>
<a class="anchor" id="a18ecdc4784f2b340944659a1847557e9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classOpenMS_1_1MSExperiment.html#a167f63a2d1a578a83eb07c33a25a8f43">AreaType</a>& getDataRange </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns RT and m/z range the data lies in. </p>
<p>RT is dimension 0, m/z is dimension 1 </p>
</div>
</div>
<a class="anchor" id="a97a188fab675068e314d4058d9bb5c33"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a>& getExperimentalSettings </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the meta information of this experiment (const access) </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1XMassFile.html#a43556a513eaa5395c068a7c9874cc6d1">XMassFile::importExperimentalSettings()</a>.</p>
</div>
</div>
<a class="anchor" id="a4c61e437da9328fe32bfa0ab529d429c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a>& getExperimentalSettings </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the meta information of this experiment (mutable access) </p>
</div>
</div>
<a class="anchor" id="a87d8ffa067f5ee283997ac69b197234f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> getMaxMZ </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the maximal m/z value </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>.</p>
</div>
</div>
<a class="anchor" id="af67f955c87166e64d9361815dc3760b5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> getMaxRT </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the maximal retention time value </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>.</p>
</div>
</div>
<a class="anchor" id="a9d8aab759e082ef93475344071fb7809"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> getMinMZ </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the minimal m/z value </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a5ae84d207afd136419c46d9ec811bb97">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::intensityScore_()</a>, and <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>.</p>
</div>
</div>
<a class="anchor" id="a9244f3b9aefde24a9b246a8396c3bb84"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> getMinRT </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the minimal retention time value </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a5ae84d207afd136419c46d9ec811bb97">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::intensityScore_()</a>, and <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>.</p>
</div>
</div>
<a class="anchor" id="adbc1e31b95b2364ef4b3b1ba94b0aa8d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const std::vector<<a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a>>& getMSLevels </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns an array of MS levels </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>.</p>
</div>
</div>
<a class="anchor" id="a65f612b2c985382e4e8946bc60da8f75"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> getPrecursorSpectrum </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> </td>
<td class="paramname"><em>iterator</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the precursor spectrum of the scan pointed to by <code>iterator</code>. </p>
<p>If there is no precursor scan the past-the-end iterator is returned. </p>
</div>
</div>
<a class="anchor" id="aac09407a6369916d487f3a83527b8398"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__Concept.html#ga5162db95dc78bdf2e3a71d73bec703e9">UInt64</a> getSize </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the total number of peaks </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1ConsensusMap.html#ae48739acf91763132e117f8b608da145">ConsensusMap::convert()</a>, and <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>.</p>
</div>
</div>
<a class="anchor" id="a0aaed6b7672a2808c67006e604708c76"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const std::vector<<a class="el" href="classOpenMS_1_1MSSpectrum.html">MSSpectrum</a><<a class="el" href="classPeakT.html">PeakT</a>> >& getSpectra </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the spectra list </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1MSExperiment.html#a1acb534122a4490f537bd523ec7e8c74">MSExperiment< SimPointType >::swap()</a>.</p>
</div>
</div>
<a class="anchor" id="a4ea10711f169cfa40e8475bb4d226514"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<<a class="el" href="classOpenMS_1_1MSSpectrum.html">MSSpectrum</a><<a class="el" href="classPeakT.html">PeakT</a>> >& getSpectra </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the spectra list </p>
</div>
</div>
<a class="anchor" id="ab9c3bac03f15bef0516ef45b9bc02c31"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a><<a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a>> getTIC </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns the total ion chromatogram (TIC) </p>
</div>
</div>
<a class="anchor" id="a50d19782103ccc00edaabfba88dd2598"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool isSorted </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>check_mz</em> = <code>true</code></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Checks if all spectra are sorted with respect to ascending RT. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">check_mz</td><td>if <em>true</em>, checks if all peaks are sorted with respect to ascending m/z </td></tr>
</table>
</dd>
</dl>
<p>Referenced by <a class="el" href="classOpenMS_1_1MSExperiment.html#aa23ed32415e6667bd2737377c24c16fb">MSExperiment< SimPointType >::areaBeginConst()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a50d19782103ccc00edaabfba88dd2598">MSExperiment< SimPointType >::isSorted()</a>, and <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>.</p>
</div>
</div>
<a class="anchor" id="a78b38fac5fb7ca9480209042d49605ba"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool operator!= </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a>< <a class="el" href="classPeakT.html">PeakT</a>, ChromatogramPeakT > & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Equality operator. </p>
</div>
</div>
<a class="anchor" id="a60095ad674632c73d7d08ebc1e2b05f5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a>& operator= </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a>< <a class="el" href="classPeakT.html">PeakT</a>, ChromatogramPeakT > & </td>
<td class="paramname"><em>source</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Assignment operator. </p>
</div>
</div>
<a class="anchor" id="ae9b04b8c759e9fbe9079c8bfa3f85ef8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a>& operator= </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1ExperimentalSettings.html">ExperimentalSettings</a> & </td>
<td class="paramname"><em>source</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Assignment operator. </p>
</div>
</div>
<a class="anchor" id="ae004afe606d6054f9d0c9139e3a126ce"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool operator== </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a>< <a class="el" href="classPeakT.html">PeakT</a>, ChromatogramPeakT > & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Equality operator. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1MSExperiment.html#a78b38fac5fb7ca9480209042d49605ba">MSExperiment< SimPointType >::operator!=()</a>.</p>
</div>
</div>
<a class="anchor" id="af7dcf81ab729a368193aa0bbe5ac116e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a>& operator[] </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td>
<td class="paramname"><em>n</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a2aa0b6f1da05f0ef6eddefa06f858e1b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a>& operator[] </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td>
<td class="paramname"><em>n</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="af5e67d26823ec12e91434f4e74faa9d1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void reserve </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td>
<td class="paramname"><em>s</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classOpenMS_1_1CachedmzML.html#a78668c2f83b7e9e4fe595c57ab4c642d">CachedmzML::readMemdump()</a>.</p>
</div>
</div>
<a class="anchor" id="a4de1763c39f89f224521ec0d7a804589"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void reserveSpaceChromatograms </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td>
<td class="paramname"><em>s</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ad9c7f3105519d825fa5f0ec8c9b94148"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void reserveSpaceSpectra </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td>
<td class="paramname"><em>s</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ad20897c5c8bd47f5d4005989bead0e55"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void reset </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Resets all internal values. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1InspectOutfile.html#a94fe62a5040d77b84878d091f0eb8686">InspectOutfile::getExperiment()</a>, and <a class="el" href="classOpenMS_1_1FileHandler.html#a408091416e0e1f6019abd59bdb6a9269">FileHandler::loadExperiment()</a>.</p>
</div>
</div>
<a class="anchor" id="ac2bc824d6ff2633ec34793c9e918d479"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void resize </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td>
<td class="paramname"><em>s</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classOpenMS_1_1InternalCalibration.html#a2157a7fbbba00561b9bf8b26b469786d">InternalCalibration::calibrateMapGlobally()</a>, <a class="el" href="classOpenMS_1_1FileHandler.html#a408091416e0e1f6019abd59bdb6a9269">FileHandler::loadExperiment()</a>, <a class="el" href="classOpenMS_1_1PeakPickerHiRes.html#a805fcad9297b5ec0ee96b811e79ae895">PeakPickerHiRes::pickExperiment()</a>, <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>, and <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmSH.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmSH< PeakType, FeatureType >::run()</a>.</p>
</div>
</div>
<a class="anchor" id="adb2f0f3e10754ca4dc7be677f15689a3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> RTBegin </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>rt</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Fast search for spectrum range begin. </p>
<p>Returns the first scan which has equal or higher (>=) RT than <code>rt</code>.</p>
<dl class="section note"><dt>Note</dt><dd>Make sure the spectra are sorted with respect to retention time! Otherwise the result is undefined. </dd></dl>
<p>Referenced by <a class="el" href="classOpenMS_1_1MSExperiment.html#aa23ed32415e6667bd2737377c24c16fb">MSExperiment< SimPointType >::areaBeginConst()</a>, <a class="el" href="classOpenMS_1_1InternalCalibration.html#a2157a7fbbba00561b9bf8b26b469786d">InternalCalibration::calibrateMapGlobally()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#ae895e8f290c7f5869249e59a7b53c417">OfflinePrecursorIonSelection::getMassRanges()</a>, <a class="el" href="classOpenMS_1_1TwoDOptimization.html#a6d2b21b20b10f65e5a6052e8c8aa84e7">TwoDOptimization::getRegionEndpoints_()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#afc3ec85793adf0cdaacc5803e59f6c17">OfflinePrecursorIonSelection::makePrecursorSelectionForKnownLCMSMap()</a>, and <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>.</p>
</div>
</div>
<a class="anchor" id="aaa28bff92147612bdfc8ac6892395c93"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a> RTBegin </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>rt</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Fast search for spectrum range begin. </p>
<dl class="section note"><dt>Note</dt><dd>Make sure the spectra are sorted with respect to retention time! Otherwise the result is undefined. </dd></dl>
</div>
</div>
<a class="anchor" id="aecc2b466c4b527df363f5b1287a5e646"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#aee0a1a68d0fab63eefa6e14010b4a7f0">ConstIterator</a> RTEnd </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>rt</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Fast search for spectrum range end (returns the past-the-end iterator) </p>
<p>Returns the first scan which has higher (>) RT than <code>rt</code>.</p>
<dl class="section note"><dt>Note</dt><dd>Make sure the spectra are sorted with respect to retention time! Otherwise the result is undefined. </dd></dl>
<p>Referenced by <a class="el" href="classOpenMS_1_1MSExperiment.html#aa23ed32415e6667bd2737377c24c16fb">MSExperiment< SimPointType >::areaBeginConst()</a>, and <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#afc3ec85793adf0cdaacc5803e59f6c17">OfflinePrecursorIonSelection::makePrecursorSelectionForKnownLCMSMap()</a>.</p>
</div>
</div>
<a class="anchor" id="a5f9b950ce9dd8beba1afb32cc934b567"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1MSExperiment.html#a3049e1d8765313f967f17885188d767c">Iterator</a> RTEnd </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html#a181486a43da338e31f089df7661f50bb">CoordinateType</a> </td>
<td class="paramname"><em>rt</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Fast search for spectrum range end (returns the past-the-end iterator) </p>
<dl class="section note"><dt>Note</dt><dd>Make sure the spectra are sorted with respect to retention time! Otherwise the result is undefined. </dd></dl>
</div>
</div>
<a class="anchor" id="a62fd7dbc7f6e5cc960d5db28524512f8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void set2DData </td>
<td>(</td>
<td class="paramtype">const Container & </td>
<td class="paramname"><em>cont</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Assignment of a 2D spectrum to <a class="el" href="classOpenMS_1_1MSExperiment.html" title="Representation of a mass spectrometry experiment. ">MSExperiment</a>. </p>
<p>Container can be a PeakArray or an STL container of peaks.</p>
<dl class="exception"><dt>Exceptions</dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classOpenMS_1_1Exception_1_1Precondition.html" title="Precondition failed exception. ">Exception::Precondition</a></td><td>is thrown if the container is not sorted according to retention time (not only in debug mode) </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a4c105ad43f3c61a53997af8ba28720e2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void setChromatograms </td>
<td>(</td>
<td class="paramtype">const std::vector< <a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a>< <a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a> > > & </td>
<td class="paramname"><em>chromatograms</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>sets the chromatogram list </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1TOPPBase.html#a8e50b81e2c3372c6c9529b10e6f1bf80">TOPPBase::addDataProcessing_()</a>, <a class="el" href="classOpenMS_1_1CachedmzML.html#a78668c2f83b7e9e4fe595c57ab4c642d">CachedmzML::readMemdump()</a>, and <a class="el" href="classOpenMS_1_1CachedmzML.html#ad117b85f93b2c7c04b5031c4d6f70a9f">CachedmzML::writeMetadata()</a>.</p>
</div>
</div>
<a class="anchor" id="a41f3cfaba60bdd362dc5f4c0494e0a23"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void setSpectra </td>
<td>(</td>
<td class="paramtype">const std::vector< <a class="el" href="classOpenMS_1_1MSSpectrum.html">MSSpectrum</a>< <a class="el" href="classPeakT.html">PeakT</a> > > & </td>
<td class="paramname"><em>spectra</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>sets the spectra list </p>
</div>
</div>
<a class="anchor" id="a9d78a687cf2a391198bb3cbc08bc06cb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> size </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classOpenMS_1_1TOPPBase.html#a8e50b81e2c3372c6c9529b10e6f1bf80">TOPPBase::addDataProcessing_()</a>, <a class="el" href="classOpenMS_1_1SpectrumCanvas.html#aaac8f1a76ed8daa37ed605f1dd60d22a">SpectrumCanvas::addDataProcessing_()</a>, <a class="el" href="classOpenMS_1_1IDMapper.html#ad8c436deda857f332e4d843d002e0717">IDMapper::annotate()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#a09cf655b910fa7166cd8b27d17e02453">OfflinePrecursorIonSelection::calculateXICs_()</a>, <a class="el" href="classOpenMS_1_1TOFCalibration.html#a6841ec670af59eab6ba6d998710e7197">TOFCalibration::calibrate()</a>, <a class="el" href="classOpenMS_1_1InternalCalibration.html#a2157a7fbbba00561b9bf8b26b469786d">InternalCalibration::calibrateMapGlobally()</a>, <a class="el" href="classOpenMS_1_1InternalCalibration.html#a1651981607d6c86252b9ab64e5f7996c">InternalCalibration::calibrateMapSpectrumwise()</a>, <a class="el" href="classOpenMS_1_1OpenSwathHelper.html#a58f5957aa8b970648d7cb611c76ed0f9">OpenSwathHelper::checkSwathMapAndSelectTransitions()</a>, <a class="el" href="classOpenMS_1_1TOPPViewBase.html#a1a0e3814f639bbceb2a4f454bd7fe1ff">TOPPViewBase::containsMS1Scans()</a>, <a class="el" href="classOpenMS_1_1TOPPViewBase.html#ae122d126bb53355225514589c29b21d7">TOPPViewBase::countMS1Zeros()</a>, <a class="el" href="classOpenMS_1_1PSLPFormulation.html#a79f7295c0f12730a06e4e2c871f6a322">PSLPFormulation::createAndSolveCombinedLPForKnownLCMSMapFeatureBased()</a>, <a class="el" href="classOpenMS_1_1PSLPFormulation.html#a2a93e2928cdbb7704c7d49a33f13b091">PSLPFormulation::createAndSolveILPForKnownLCMSMapFeatureBased()</a>, <a class="el" href="classOpenMS_1_1TOPPViewBase.html#ade4a574ad3c0497e0e50ea61bc04b94f">TOPPViewBase::estimateNoiseFromRandomMS1Scans()</a>, <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#aa839121d4666e45d2b5b6d6eab010c5f">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::extendMassTrace_()</a>, <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a00f443c46b1d9f3485ef02d844b2433d">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::extendMassTraces_()</a>, <a class="el" href="classOpenMS_1_1GaussFilter.html#ad4b88e98d5f5de8b90ba2c68ecdddc1e">GaussFilter::filterExperiment()</a>, <a class="el" href="classOpenMS_1_1SavitzkyGolayFilter.html#ad4b88e98d5f5de8b90ba2c68ecdddc1e">SavitzkyGolayFilter::filterExperiment()</a>, <a class="el" href="classOpenMS_1_1MorphologicalFilter.html#af66fb340e0482d1bc81baaf86d1b72a2">MorphologicalFilter::filterExperiment()</a>, <a class="el" href="classOpenMS_1_1IDFilter.html#adbddef78d7fcfbd5a87e19762fd1cc7b">IDFilter::filterIdentificationsByBestNHits()</a>, <a class="el" href="classOpenMS_1_1IDFilter.html#a4abee7e9d0f79197ddf80a6af8632d03">IDFilter::filterIdentificationsByProteins()</a>, <a class="el" href="classOpenMS_1_1IDFilter.html#aeb523c70d4d0f6e8cabd7b8db02cf638">IDFilter::filterIdentificationsByScores()</a>, <a class="el" href="classOpenMS_1_1IDFilter.html#a5317f48e0a2b44028ade11faa175dc12">IDFilter::filterIdentificationsByThresholds()</a>, <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a48c8332d7771967946379f577ca3d973">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::findIsotope_()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#ae895e8f290c7f5869249e59a7b53c417">OfflinePrecursorIonSelection::getMassRanges()</a>, <a class="el" href="classOpenMS_1_1FeaFiModule.html#a9f755c03fd9b7a485fec02224cc858d7">FeaFiModule< PeakType, FeatureType >::getNextMz()</a>, <a class="el" href="classOpenMS_1_1FeaFiModule.html#adf52c00b457571ad74d59a5d6fd12d1a">FeaFiModule< PeakType, FeatureType >::getNextRt()</a>, <a class="el" href="classOpenMS_1_1FeaFiModule.html#a4698fa90bfbdd5729e0e25c62345ff0d">FeaFiModule< PeakType, FeatureType >::getPeakIntensity()</a>, <a class="el" href="classOpenMS_1_1FeaFiModule.html#a606049d47faacd506705556d333849a2">FeaFiModule< PeakType, FeatureType >::getPeakMz()</a>, <a class="el" href="classOpenMS_1_1FeaFiModule.html#a8e5564d7b686645a7d7d6f5aed8cd494">FeaFiModule< PeakType, FeatureType >::getPeakRt()</a>, <a class="el" href="classOpenMS_1_1FeaFiModule.html#a62c6d0208b4fc2bc51e55eea8ea1ce9d">FeaFiModule< PeakType, FeatureType >::getPrevMz()</a>, <a class="el" href="classOpenMS_1_1FeaFiModule.html#ad4efb644d8a117edfaf7f0f5a9b34e0a">FeaFiModule< PeakType, FeatureType >::getPrevRt()</a>, <a class="el" href="classOpenMS_1_1TwoDOptimization.html#a6d2b21b20b10f65e5a6052e8c8aa84e7">TwoDOptimization::getRegionEndpoints_()</a>, <a class="el" href="classOpenMS_1_1TOPPViewBase.html#ae9cf6e8153070938662f70474ce9a9a7">TOPPViewBase::hasPeptideIdentifications()</a>, <a class="el" href="classTOPPRNPxl.html#ae6668492d67ea303296f9db6ac56325c">TOPPRNPxl::main_()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#afc3ec85793adf0cdaacc5803e59f6c17">OfflinePrecursorIonSelection::makePrecursorSelectionForKnownLCMSMap()</a>, <a class="el" href="classOpenMS_1_1IsotopeWaveletTransform.html#a12db861a7fd5db1a8aea9e6c4a403a89">IsotopeWaveletTransform< PeakType >::mapSeeds2Features()</a>, <a class="el" href="classOpenMS_1_1TwoDOptimization.html#a5678eb60386afb7f97145b361bd3947f">TwoDOptimization::optimize()</a>, <a class="el" href="classOpenMS_1_1PeakPickerHiRes.html#a805fcad9297b5ec0ee96b811e79ae895">PeakPickerHiRes::pickExperiment()</a>, <a class="el" href="classOpenMS_1_1LinearResampler.html#a48a6496f271f68218b1f197a7b7afae3">LinearResampler::rasterExperiment()</a>, <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>, <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmMRM.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmMRM< PeakType, FeatureType >::run()</a>, <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>, <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmIsotopeWavelet.html#a13a43e6d814de94978c515cb084873b1">FeatureFinderAlgorithmIsotopeWavelet< OpenMS::Peak2D, FeatureType >::run()</a>, <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmSH.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmSH< PeakType, FeatureType >::run()</a>, <a class="el" href="classOpenMS_1_1IsotopeWaveletTransform.html#ac0b48539bdee44dbe1368bcfd412f33f">IsotopeWaveletTransform< PeakType >::updateBoxStates()</a>, and <a class="el" href="classOpenMS_1_1CachedmzML.html#ad117b85f93b2c7c04b5031c4d6f70a9f">CachedmzML::writeMetadata()</a>.</p>
</div>
</div>
<a class="anchor" id="aa679772c8c6b65183102bc220ebe7870"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void sortChromatograms </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>sort_rt</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sorts the data points of the chromatograms by m/z. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">sort_rt</td><td>if <em>true</em>, chromatograms are sorted by rt position as well </td></tr>
</table>
</dd>
</dl>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>.</p>
</div>
</div>
<a class="anchor" id="ac518a80bea4f92fd700b235a12146658"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void sortSpectra </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>sort_mz</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sorts the data points by retention time. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">sort_mz</td><td>if <em>true</em>, spectra are sorted by m/z position as well </td></tr>
</table>
</dd>
</dl>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>.</p>
</div>
</div>
<a class="anchor" id="a1acb534122a4490f537bd523ec7e8c74"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void swap </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1MSExperiment.html">MSExperiment</a>< <a class="el" href="classPeakT.html">PeakT</a>, ChromatogramPeakT > & </td>
<td class="paramname"><em>from</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Swaps the content of this map with the content of <code>from</code>. </p>
</div>
</div>
<a class="anchor" id="ae6cec659c6191c8cb73a1f6af8eba1cd"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void updateRanges </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Updates minimum and maximum position/intensity. </p>
<p>This method is usually implemented by calling <a class="el" href="classOpenMS_1_1RangeManager.html#aaa3d5efb96ade4c8ce2c8e216a73dcd1" title="Resets the ranges. ">clearRanges()</a> and <a class="el" href="classOpenMS_1_1RangeManager.html#a1b01c1c3871aad142893e20d17afc340" title="Updates the range using data points in the iterator range. ">updateRanges_()</a>. </p>
<p>Implements <a class="el" href="classOpenMS_1_1RangeManager.html#a60f107aa09cf96dfd7eceb9ebe5eff34">RangeManager< 2 ></a>.</p>
<p>Referenced by <a class="el" href="classOpenMS_1_1ConsensusMap.html#ae48739acf91763132e117f8b608da145">ConsensusMap::convert()</a>, and <a class="el" href="classOpenMS_1_1MSExperiment.html#ae6cec659c6191c8cb73a1f6af8eba1cd">MSExperiment< SimPointType >::updateRanges()</a>.</p>
</div>
</div>
<a class="anchor" id="aa23cd56c00752986da68f5aaccedeeed"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void updateRanges </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a> </td>
<td class="paramname"><em>ms_level</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Updates the m/z, intensity, retention time and MS level ranges of all spectra with a certain ms level. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">ms_level</td><td>MS level to consider for m/z range , RT range and intensity range (All MS levels if negative) </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a class="anchor" id="ac2bb84635b95ec5bff6954f28375cd94"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<<a class="el" href="classOpenMS_1_1MSChromatogram.html">MSChromatogram</a><<a class="el" href="classOpenMS_1_1MSExperiment.html#a5de1db69904b11c688819feb60559d98">ChromatogramPeakType</a>> > chromatograms_</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>chromatograms </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1MSExperiment.html#a37eb544fb451472f4679589fee735df4">MSExperiment< SimPointType >::addChromatogram()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#af072fc84225ae927f7527f208ea86cbd">MSExperiment< SimPointType >::clear()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#ae9be60694b267dc26b3e79a125646e25">MSExperiment< SimPointType >::getChromatogram()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a02fccfed86a20f8bd0f6b98c23fadb2e">MSExperiment< SimPointType >::getChromatograms()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a60095ad674632c73d7d08ebc1e2b05f5">MSExperiment< SimPointType >::operator=()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#ae004afe606d6054f9d0c9139e3a126ce">MSExperiment< SimPointType >::operator==()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a4de1763c39f89f224521ec0d7a804589">MSExperiment< SimPointType >::reserveSpaceChromatograms()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a4c105ad43f3c61a53997af8ba28720e2">MSExperiment< SimPointType >::setChromatograms()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#aa679772c8c6b65183102bc220ebe7870">MSExperiment< SimPointType >::sortChromatograms()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a1acb534122a4490f537bd523ec7e8c74">MSExperiment< SimPointType >::swap()</a>, and <a class="el" href="classOpenMS_1_1MSExperiment.html#aa23cd56c00752986da68f5aaccedeeed">MSExperiment< SimPointType >::updateRanges()</a>.</p>
</div>
</div>
<a class="anchor" id="a9737d91a86f67021ec794749b5b6840a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<<a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a>> ms_levels_</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>MS levels of the data. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1MSExperiment.html#af072fc84225ae927f7527f208ea86cbd">MSExperiment< SimPointType >::clear()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#adbc1e31b95b2364ef4b3b1ba94b0aa8d">MSExperiment< SimPointType >::getMSLevels()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a60095ad674632c73d7d08ebc1e2b05f5">MSExperiment< SimPointType >::operator=()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a1acb534122a4490f537bd523ec7e8c74">MSExperiment< SimPointType >::swap()</a>, and <a class="el" href="classOpenMS_1_1MSExperiment.html#aa23cd56c00752986da68f5aaccedeeed">MSExperiment< SimPointType >::updateRanges()</a>.</p>
</div>
</div>
<a class="anchor" id="a05de1d78d72149ac5c9fa2d8aec6f6cd"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<<a class="el" href="classOpenMS_1_1MSExperiment.html#a066042ae14211da37d4fa66d466bfa3e">SpectrumType</a>> spectra_</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>spectra </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1MSExperiment.html#ae9dafbb74a1a4c430ceef03e25ab8e10">MSExperiment< SimPointType >::addSpectrum()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#aa23ed32415e6667bd2737377c24c16fb">MSExperiment< SimPointType >::areaBeginConst()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a2387033802383edbdc95f9bbb12a707e">MSExperiment< SimPointType >::begin()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#af072fc84225ae927f7527f208ea86cbd">MSExperiment< SimPointType >::clear()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#aca192a8c89187e4311eacc9daa073c7b">MSExperiment< SimPointType >::clearChildIds_()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a30581229b2239b7f01ad77aa8cec118c">MSExperiment< SimPointType >::clearMetaDataArrays()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#ac6e61de369e994009e36f344f99c15ad">MSExperiment< SimPointType >::empty()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#ab45dae688fc5d8983727abffa4389003">MSExperiment< SimPointType >::end()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a39cd3877560af16732f709348724f53a">MSExperiment< SimPointType >::get2DData()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a65f612b2c985382e4e8946bc60da8f75">MSExperiment< SimPointType >::getPrecursorSpectrum()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a0aaed6b7672a2808c67006e604708c76">MSExperiment< SimPointType >::getSpectra()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#ab9c3bac03f15bef0516ef45b9bc02c31">MSExperiment< SimPointType >::getTIC()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a50d19782103ccc00edaabfba88dd2598">MSExperiment< SimPointType >::isSorted()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a60095ad674632c73d7d08ebc1e2b05f5">MSExperiment< SimPointType >::operator=()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#ae004afe606d6054f9d0c9139e3a126ce">MSExperiment< SimPointType >::operator==()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#af7dcf81ab729a368193aa0bbe5ac116e">MSExperiment< SimPointType >::operator[]()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#af5e67d26823ec12e91434f4e74faa9d1">MSExperiment< SimPointType >::reserve()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#ad9c7f3105519d825fa5f0ec8c9b94148">MSExperiment< SimPointType >::reserveSpaceSpectra()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#ad20897c5c8bd47f5d4005989bead0e55">MSExperiment< SimPointType >::reset()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#ac2bc824d6ff2633ec34793c9e918d479">MSExperiment< SimPointType >::resize()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#adb2f0f3e10754ca4dc7be677f15689a3">MSExperiment< SimPointType >::RTBegin()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#aecc2b466c4b527df363f5b1287a5e646">MSExperiment< SimPointType >::RTEnd()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a62fd7dbc7f6e5cc960d5db28524512f8">MSExperiment< SimPointType >::set2DData()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a41f3cfaba60bdd362dc5f4c0494e0a23">MSExperiment< SimPointType >::setSpectra()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a9d78a687cf2a391198bb3cbc08bc06cb">MSExperiment< SimPointType >::size()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#ac518a80bea4f92fd700b235a12146658">MSExperiment< SimPointType >::sortSpectra()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a1acb534122a4490f537bd523ec7e8c74">MSExperiment< SimPointType >::swap()</a>, and <a class="el" href="classOpenMS_1_1MSExperiment.html#aa23cd56c00752986da68f5aaccedeeed">MSExperiment< SimPointType >::updateRanges()</a>.</p>
</div>
</div>
<a class="anchor" id="ab8aa658ccc7d2555975e8f90c09c211c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__Concept.html#ga5162db95dc78bdf2e3a71d73bec703e9">UInt64</a> total_size_</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Number of all data points. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1MSExperiment.html#af072fc84225ae927f7527f208ea86cbd">MSExperiment< SimPointType >::clear()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#aac09407a6369916d487f3a83527b8398">MSExperiment< SimPointType >::getSize()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a60095ad674632c73d7d08ebc1e2b05f5">MSExperiment< SimPointType >::operator=()</a>, <a class="el" href="classOpenMS_1_1MSExperiment.html#a1acb534122a4490f537bd523ec7e8c74">MSExperiment< SimPointType >::swap()</a>, and <a class="el" href="classOpenMS_1_1MSExperiment.html#aa23cd56c00752986da68f5aaccedeeed">MSExperiment< SimPointType >::updateRanges()</a>.</p>
</div>
</div>
</div><!-- contents -->
<HR style="height:1px; border:none; border-top:1px solid #c0c0c0;">
<TABLE width="100%" border="0">
<TR>
<TD><font color="#c0c0c0">OpenMS / TOPP release 1.11.1</font></TD>
<TD align="right"><font color="#c0c0c0">Documentation generated on Thu Nov 14 2013 11:19:32 using doxygen 1.8.5</font></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|