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
|
<HTML>
<HEAD>
<TITLE>Class Hierarchy</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><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">Class Hierarchy</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock">This inheritance list is sorted roughly, but not completely, alphabetically:</div><div class="directory">
<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span><span onclick="javascript:toggleLevel(3);">3</span><span onclick="javascript:toggleLevel(4);">4</span><span onclick="javascript:toggleLevel(5);">5</span><span onclick="javascript:toggleLevel(6);">6</span>]</div><table class="directory">
<tr id="row_0_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AAIndex.html" target="_self">AAIndex</a></td><td class="desc">Representation of selected AAIndex properties </td></tr>
<tr id="row_1_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AASequence.html" target="_self">AASequence</a></td><td class="desc">Representation of a peptide/protein sequence </td></tr>
<tr id="row_2_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FuzzyStringComparator_1_1AbortComparison.html" target="_self">FuzzyStringComparator::AbortComparison</a></td><td class="desc">Internal exception class </td></tr>
<tr id="row_3_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AccurateMassSearchResult.html" target="_self">AccurateMassSearchResult</a></td><td class="desc"></td></tr>
<tr id="row_4_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1AcqusHandler.html" target="_self">AcqusHandler</a></td><td class="desc">Read-only acqus <a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> handler for XMass Analysis </td></tr>
<tr id="row_5_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Adduct.html" target="_self">Adduct</a></td><td class="desc"></td></tr>
<tr id="row_6_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PepXMLFile_1_1AminoAcidModification.html" target="_self">PepXMLFile::AminoAcidModification</a></td><td class="desc"></td></tr>
<tr id="row_7_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MSQuantifications_1_1AnalysisSummary.html" target="_self">MSQuantifications::AnalysisSummary</a></td><td class="desc"></td></tr>
<tr id="row_8_" class="even"><td class="entry"><img id="arr_8_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('8_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Annotation1DItem.html" target="_self">Annotation1DItem</a></td><td class="desc">An abstract class acting as an interface for the different 1D annotation items </td></tr>
<tr id="row_8_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Annotation1DDistanceItem.html" target="_self">Annotation1DDistanceItem</a></td><td class="desc">An annotation item which represents a measured distance between two peaks </td></tr>
<tr id="row_8_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Annotation1DPeakItem.html" target="_self">Annotation1DPeakItem</a></td><td class="desc">A peak annotation item </td></tr>
<tr id="row_8_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Annotation1DTextItem.html" target="_self">Annotation1DTextItem</a></td><td class="desc">An annotation item which represents an arbitrary text on the canvas </td></tr>
<tr id="row_9_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1AnnotationStatistics.html" target="_self">AnnotationStatistics</a></td><td class="desc"></td></tr>
<tr id="row_10_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AScore.html" target="_self">AScore</a></td><td class="desc">Implementation of the Ascore For a given peptide sequence and its MS^2 spectrum it is tried to identify the most probable phosphorylation-site(s). For each phosphorylation site a score is calculated, which is an indicator for the probability that this site is phosphorylated. The algorithm is implemented according to Beausoleil et al </td></tr>
<tr id="row_11_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MSQuantifications_1_1Assay.html" target="_self">MSQuantifications::Assay</a></td><td class="desc"></td></tr>
<tr id="row_12_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1QcMLFile_1_1Attachment.html" target="_self">QcMLFile::Attachment</a></td><td class="desc">Representation of an attachment </td></tr>
<tr id="row_13_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1AveragePosition.html" target="_self">AveragePosition< D ></a></td><td class="desc">Maintain an average position by summing up positions with weights </td></tr>
<tr id="row_14_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1AveragePosition.html" target="_self">AveragePosition< 2 ></a></td><td class="desc"></td></tr>
<tr id="row_15_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AxisPainter.html" target="_self">AxisPainter</a></td><td class="desc">Draws a coordinate axis. It has only static methods, that's why the constructor is private </td></tr>
<tr id="row_16_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AxisTickCalculator.html" target="_self">AxisTickCalculator</a></td><td class="desc">Calculates ticks for a given value range </td></tr>
<tr id="row_17_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BackgroundControl.html" target="_self">BackgroundControl</a></td><td class="desc"></td></tr>
<tr id="row_18_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BackgroundIntensityBin.html" target="_self">BackgroundIntensityBin</a></td><td class="desc"></td></tr>
<tr id="row_19_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Base64.html" target="_self">Base64</a></td><td class="desc">Class to encode and decode <a class="el" href="classOpenMS_1_1Base64.html" title="Class to encode and decode Base64. ">Base64</a> </td></tr>
<tr id="row_20_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< ObjectType ></a></td><td class="desc">A base class for all visualizer classes </td></tr>
<tr id="row_21_"><td class="entry"><img id="arr_21_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('21_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< Acquisition ></a></td><td class="desc"></td></tr>
<tr id="row_21_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AcquisitionVisualizer.html" target="_self">AcquisitionVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1Acquisition.html" title="Information about one raw data spectrum that was combined with several other raw data spectra...">Acquisition</a> objects </td></tr>
<tr id="row_22_" class="even"><td class="entry"><img id="arr_22_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('22_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< AcquisitionInfo ></a></td><td class="desc"></td></tr>
<tr id="row_22_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AcquisitionInfoVisualizer.html" target="_self">AcquisitionInfoVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1AcquisitionInfo.html" title="Description of the combination of raw data to a single spectrum. ">AcquisitionInfo</a> objects </td></tr>
<tr id="row_23_"><td class="entry"><img id="arr_23_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('23_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< ContactPerson ></a></td><td class="desc"></td></tr>
<tr id="row_23_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ContactPersonVisualizer.html" target="_self">ContactPersonVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1ContactPerson.html" title="Contact person information. ">ContactPerson</a> objects </td></tr>
<tr id="row_24_" class="even"><td class="entry"><img id="arr_24_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('24_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< DataProcessing ></a></td><td class="desc"></td></tr>
<tr id="row_24_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DataProcessingVisualizer.html" target="_self">DataProcessingVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1DataProcessing.html" title="Descripton of the applied preprocessing steps. ">DataProcessing</a> objects </td></tr>
<tr id="row_25_"><td class="entry"><img id="arr_25_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('25_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< Digestion ></a></td><td class="desc"></td></tr>
<tr id="row_25_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DigestionVisualizer.html" target="_self">DigestionVisualizer</a></td><td class="desc">Class that displays all meta information of digestion objects </td></tr>
<tr id="row_26_" class="even"><td class="entry"><img id="arr_26_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('26_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< DocumentIdentifier ></a></td><td class="desc"></td></tr>
<tr id="row_26_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DocumentIdentifierVisualizer.html" target="_self">DocumentIdentifierVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1DocumentIdentifier.html" title="Manage source document information. ">DocumentIdentifier</a> objects </td></tr>
<tr id="row_27_"><td class="entry"><img id="arr_27_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('27_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< ExperimentalSettings ></a></td><td class="desc"></td></tr>
<tr id="row_27_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ExperimentalSettingsVisualizer.html" target="_self">ExperimentalSettingsVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1ExperimentalSettings.html" title="Description of the experimental settings. ">ExperimentalSettings</a> objects </td></tr>
<tr id="row_28_" class="even"><td class="entry"><img id="arr_28_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('28_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< Gradient ></a></td><td class="desc"></td></tr>
<tr id="row_28_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GradientVisualizer.html" target="_self">GradientVisualizer</a></td><td class="desc"><a class="el" href="classOpenMS_1_1GradientVisualizer.html" title="GradientVisualizer is a visualizer class for objects of type gradient. ">GradientVisualizer</a> is a visualizer class for objects of type gradient </td></tr>
<tr id="row_29_"><td class="entry"><img id="arr_29_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('29_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< HPLC ></a></td><td class="desc"></td></tr>
<tr id="row_29_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HPLCVisualizer.html" target="_self">HPLCVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1HPLC.html" title="Representation of a HPLC experiment. ">HPLC</a> objects </td></tr>
<tr id="row_30_" class="even"><td class="entry"><img id="arr_30_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('30_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< Instrument ></a></td><td class="desc"></td></tr>
<tr id="row_30_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InstrumentVisualizer.html" target="_self">InstrumentVisualizer</a></td><td class="desc">Class that displays all meta information for an MS instrument </td></tr>
<tr id="row_31_"><td class="entry"><img id="arr_31_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('31_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< InstrumentSettings ></a></td><td class="desc"></td></tr>
<tr id="row_31_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InstrumentSettingsVisualizer.html" target="_self">InstrumentSettingsVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1InstrumentSettings.html" title="Description of the settings a MS Instrument was run with. ">InstrumentSettings</a> objects </td></tr>
<tr id="row_32_" class="even"><td class="entry"><img id="arr_32_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('32_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< IonDetector ></a></td><td class="desc"></td></tr>
<tr id="row_32_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IonDetectorVisualizer.html" target="_self">IonDetectorVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1IonDetector.html" title="Description of a ion detector (part of a MS Instrument) ">IonDetector</a> objects </td></tr>
<tr id="row_33_"><td class="entry"><img id="arr_33_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('33_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< IonSource ></a></td><td class="desc"></td></tr>
<tr id="row_33_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IonSourceVisualizer.html" target="_self">IonSourceVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1IonSource.html" title="Description of a ion source (part of a MS Instrument) ">IonSource</a> objects </td></tr>
<tr id="row_34_" class="even"><td class="entry"><img id="arr_34_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('34_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< MassAnalyzer ></a></td><td class="desc"></td></tr>
<tr id="row_34_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MassAnalyzerVisualizer.html" target="_self">MassAnalyzerVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1MassAnalyzer.html" title="Descripton of a mass analyzer (part of a MS Instrument) ">MassAnalyzer</a> objects </td></tr>
<tr id="row_35_"><td class="entry"><img id="arr_35_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('35_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< MetaInfoDescription ></a></td><td class="desc"></td></tr>
<tr id="row_35_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MetaInfoDescriptionVisualizer.html" target="_self">MetaInfoDescriptionVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1MetaInfoDescription.html" title="Description of the meta data arrays of MSSpectrum. ">MetaInfoDescription</a> objects </td></tr>
<tr id="row_36_" class="even"><td class="entry"><img id="arr_36_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('36_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< MetaInfoInterface ></a></td><td class="desc"></td></tr>
<tr id="row_36_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MetaInfoVisualizer.html" target="_self">MetaInfoVisualizer</a></td><td class="desc"><a class="el" href="classOpenMS_1_1MetaInfoVisualizer.html" title="MetaInfoVisualizer is a visualizer class for all classes that use one MetaInfo object as member...">MetaInfoVisualizer</a> is a visualizer class for all classes that use one <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> object as member </td></tr>
<tr id="row_37_"><td class="entry"><img id="arr_37_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('37_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< Modification ></a></td><td class="desc"></td></tr>
<tr id="row_37_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ModificationVisualizer.html" target="_self">ModificationVisualizer</a></td><td class="desc">Class that displays all meta information of modification objects </td></tr>
<tr id="row_38_" class="even"><td class="entry"><img id="arr_38_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('38_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< PeptideHit ></a></td><td class="desc"></td></tr>
<tr id="row_38_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeptideHitVisualizer.html" target="_self">PeptideHitVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1PeptideHit.html" title="Representation of a peptide hit. ">PeptideHit</a> objects </td></tr>
<tr id="row_39_"><td class="entry"><img id="arr_39_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('39_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< PeptideIdentification ></a></td><td class="desc"></td></tr>
<tr id="row_39_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeptideIdentificationVisualizer.html" target="_self">PeptideIdentificationVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1PeptideIdentification.html" title="Represents the peptide hits for a spectrum. ">PeptideIdentification</a> objects </td></tr>
<tr id="row_40_" class="even"><td class="entry"><img id="arr_40_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('40_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< Precursor ></a></td><td class="desc"></td></tr>
<tr id="row_40_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PrecursorVisualizer.html" target="_self">PrecursorVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1Precursor.html" title="Precursor meta information. ">Precursor</a> objects </td></tr>
<tr id="row_41_"><td class="entry"><img id="arr_41_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('41_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< Product ></a></td><td class="desc"></td></tr>
<tr id="row_41_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProductVisualizer.html" target="_self">ProductVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1Product.html" title="Product meta information. ">Product</a> objects </td></tr>
<tr id="row_42_" class="even"><td class="entry"><img id="arr_42_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('42_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< ProteinHit ></a></td><td class="desc"></td></tr>
<tr id="row_42_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProteinHitVisualizer.html" target="_self">ProteinHitVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1ProteinHit.html" title="Representation of a protein hit. ">ProteinHit</a> objects </td></tr>
<tr id="row_43_"><td class="entry"><img id="arr_43_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('43_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< ProteinIdentification ></a></td><td class="desc"></td></tr>
<tr id="row_43_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProteinIdentificationVisualizer.html" target="_self">ProteinIdentificationVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1ProteinIdentification.html" title="Representation of a protein identification run. ">ProteinIdentification</a> objects </td></tr>
<tr id="row_44_" class="even"><td class="entry"><img id="arr_44_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('44_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< Sample ></a></td><td class="desc"></td></tr>
<tr id="row_44_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SampleVisualizer.html" target="_self">SampleVisualizer</a></td><td class="desc">Class that displays all meta information of sample objects </td></tr>
<tr id="row_45_"><td class="entry"><img id="arr_45_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('45_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< ScanWindow ></a></td><td class="desc"></td></tr>
<tr id="row_45_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ScanWindowVisualizer.html" target="_self">ScanWindowVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="structOpenMS_1_1ScanWindow.html" title="Scan window description. ">ScanWindow</a> objects </td></tr>
<tr id="row_46_" class="even"><td class="entry"><img id="arr_46_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('46_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< Software ></a></td><td class="desc"></td></tr>
<tr id="row_46_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SoftwareVisualizer.html" target="_self">SoftwareVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1Software.html" title="Description of the software used for processing. ">Software</a> objects </td></tr>
<tr id="row_47_"><td class="entry"><img id="arr_47_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('47_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< SourceFile ></a></td><td class="desc"></td></tr>
<tr id="row_47_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SourceFileVisualizer.html" target="_self">SourceFileVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1SourceFile.html" title="Description of a file location, used to store the origin of (meta) data. ">SourceFile</a> objects </td></tr>
<tr id="row_48_" class="even"><td class="entry"><img id="arr_48_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('48_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< SpectrumSettings ></a></td><td class="desc"></td></tr>
<tr id="row_48_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumSettingsVisualizer.html" target="_self">SpectrumSettingsVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1SpectrumSettings.html" title="Representation of 1D spectrum settings. ">SpectrumSettings</a> objects </td></tr>
<tr id="row_49_"><td class="entry"><img id="arr_49_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('49_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizer.html" target="_self">BaseVisualizer< Tagging ></a></td><td class="desc"></td></tr>
<tr id="row_49_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TaggingVisualizer.html" target="_self">TaggingVisualizer</a></td><td class="desc">Class that displays all meta information of tagging objects </td></tr>
<tr id="row_50_" class="even"><td class="entry"><img id="arr_50_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('50_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>basic_string< Char ></b></td><td class="desc">STL class </td></tr>
<tr id="row_50_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_50_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('50_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>string</b></td><td class="desc">STL class </td></tr>
<tr id="row_50_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1String.html" target="_self">String</a></td><td class="desc">A more convenient string class </td></tr>
<tr id="row_51_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1BasicStatistics.html" target="_self">BasicStatistics< RealT ></a></td><td class="desc">Calculates some basic statistical parameters of a distribution: sum, mean, variance, and provides the normal approximation </td></tr>
<tr id="row_52_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1BasicStatistics.html" target="_self">BasicStatistics< CoordinateType ></a></td><td class="desc"></td></tr>
<tr id="row_53_"><td class="entry"><img id="arr_53_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('53_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1BasicStatistics.html" target="_self">BasicStatistics< Real ></a></td><td class="desc"></td></tr>
<tr id="row_53_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1AsymmetricStatistics.html" target="_self">AsymmetricStatistics< Real ></a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Internal.html" title="Namespace used to hide implementation details from users. ">Internal</a> class for asymmetric distributions </td></tr>
<tr id="row_54_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BigString.html" target="_self">BigString</a></td><td class="desc">Concatenates Proteins given as FASTAEntry to one big string separated by a unique character (by default $) </td></tr>
<tr id="row_55_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1BilinearInterpolation.html" target="_self">BilinearInterpolation< Key, Value ></a></td><td class="desc">Provides access to bilinearly interpolated values (and derivatives) from discrete data points. Values beyond the given range of data points are implicitly taken as zero </td></tr>
<tr id="row_56_" class="even"><td class="entry"><img id="arr_56_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('56_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>binary_function</b></td><td class="desc"></td></tr>
<tr id="row_56_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1BaseFeature_1_1QualityLess.html" target="_self">BaseFeature::QualityLess</a></td><td class="desc">Compare by quality </td></tr>
<tr id="row_56_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BinaryComposeFunctionAdapter.html" target="_self">BinaryComposeFunctionAdapter< OP1, OP2, OP3 ></a></td><td class="desc">Represents the binary compose function object adapter </td></tr>
<tr id="row_56_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ChromatogramPeak_1_1IntensityLess.html" target="_self">ChromatogramPeak::IntensityLess</a></td><td class="desc">Comparator by intensity </td></tr>
<tr id="row_56_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ChromatogramPeak_1_1PositionLess.html" target="_self">ChromatogramPeak::PositionLess</a></td><td class="desc">Comparator by position. As this class has dimension 1, this is basically an alias for <a class="el" href="structOpenMS_1_1ChromatogramPeak_1_1RTLess.html" title="Comparator by RT position. ">RTLess</a> </td></tr>
<tr id="row_56_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ChromatogramPeak_1_1RTLess.html" target="_self">ChromatogramPeak::RTLess</a></td><td class="desc">Comparator by RT position </td></tr>
<tr id="row_56_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ConsensusFeature_1_1MapsLess.html" target="_self">ConsensusFeature::MapsLess</a></td><td class="desc">Compare by the sets of consensus elements (lexicographically) </td></tr>
<tr id="row_56_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ConsensusFeature_1_1SizeLess.html" target="_self">ConsensusFeature::SizeLess</a></td><td class="desc">Compare by <a class="el" href="classOpenMS_1_1ConsensusFeature.html#a9d78a687cf2a391198bb3cbc08bc06cb">size()</a>, the number of consensus elements </td></tr>
<tr id="row_56_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1EqualInTolerance.html" target="_self">EqualInTolerance< CompareType ></a></td><td class="desc">Struct for binary predicate to consider equality with a certain tolerance </td></tr>
<tr id="row_56_8_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FeatureHandle_1_1IndexLess.html" target="_self">FeatureHandle::IndexLess</a></td><td class="desc">Comparator by map and unique id </td></tr>
<tr id="row_56_9_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1IntensityLess.html" target="_self">IntensityLess< FeaFiModuleType ></a></td><td class="desc">Comparator that allows to compare the indices of two peaks by their intensity </td></tr>
<tr id="row_56_10_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1LexicographicComparator.html" target="_self">LexicographicComparator< Cmp1, Cmp2 ></a></td><td class="desc">A wrapper class that combines two comparators lexicographically. Normally you should use the make-function <a class="el" href="structOpenMS_1_1LexicographicComparator.html#ac4e734db514973176bfe65e0fa9905ae" title="Make-function to create a LexicographicComparator from two other comparators without the need to spec...">lexicographicComparator()</a> because then you do not need to specify the template arguments </td></tr>
<tr id="row_56_11_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MSChromatogram_1_1MZLess.html" target="_self">MSChromatogram< PeakT >::MZLess</a></td><td class="desc">Comparator for the retention time </td></tr>
<tr id="row_56_12_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MSSpectrum_1_1RTLess.html" target="_self">MSSpectrum< PeakT >::RTLess</a></td><td class="desc">Comparator for the retention time </td></tr>
<tr id="row_56_13_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PairComparatorFirstElement.html" target="_self">PairComparatorFirstElement< PairType ></a></td><td class="desc">Class for comparison of std::pair using first ONLY e.g. for use with std::sort </td></tr>
<tr id="row_56_14_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PairComparatorFirstElementMore.html" target="_self">PairComparatorFirstElementMore< PairType ></a></td><td class="desc">Class for comparison of std::pair using first ONLY e.g. for use with std::sort </td></tr>
<tr id="row_56_15_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PairComparatorSecondElement.html" target="_self">PairComparatorSecondElement< PairType ></a></td><td class="desc">Class for comparison of std::pair using second ONLY e.g. for use with std::sort </td></tr>
<tr id="row_56_16_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PairComparatorSecondElementMore.html" target="_self">PairComparatorSecondElementMore< PairType ></a></td><td class="desc">Class for comparison of std::pair using second ONLY e.g. for use with std::sort </td></tr>
<tr id="row_56_17_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PairMatcherFirstElement.html" target="_self">PairMatcherFirstElement< PairType ></a></td><td class="desc">Class for comparison of std::pair using first ONLY e.g. for use with std::sort </td></tr>
<tr id="row_56_18_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PairMatcherSecondElement.html" target="_self">PairMatcherSecondElement< PairType ></a></td><td class="desc">Struct for comparison of std::pair using second ONLY e.g. for use with std::sort </td></tr>
<tr id="row_56_19_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Peak1D_1_1IntensityLess.html" target="_self">Peak1D::IntensityLess</a></td><td class="desc"></td></tr>
<tr id="row_56_20_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Peak1D_1_1MZLess.html" target="_self">Peak1D::MZLess</a></td><td class="desc">Comparator by m/z position </td></tr>
<tr id="row_56_21_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Peak1D_1_1PositionLess.html" target="_self">Peak1D::PositionLess</a></td><td class="desc">Comparator by position. As this class has dimension 1, this is basically an alias for <a class="el" href="structOpenMS_1_1Peak1D_1_1MZLess.html" title="Comparator by m/z position. ">MZLess</a> </td></tr>
<tr id="row_56_22_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Peak2D_1_1IntensityLess.html" target="_self">Peak2D::IntensityLess</a></td><td class="desc"></td></tr>
<tr id="row_56_23_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Peak2D_1_1MZLess.html" target="_self">Peak2D::MZLess</a></td><td class="desc">Comparator by m/z position </td></tr>
<tr id="row_56_24_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Peak2D_1_1PositionLess.html" target="_self">Peak2D::PositionLess</a></td><td class="desc">Comparator by position. Lexicographical comparison (first RT then m/z) is done </td></tr>
<tr id="row_56_25_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Peak2D_1_1RTLess.html" target="_self">Peak2D::RTLess</a></td><td class="desc">Comparator by RT position </td></tr>
<tr id="row_56_26_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PointerComparator.html" target="_self">PointerComparator< Cmp ></a></td><td class="desc">Wrapper that takes a comparator for `something' and makes a comparator for <em>pointers</em> to `something' out of it. Normally you should use the make-function <a class="el" href="structOpenMS_1_1PointerComparator.html#aeb071107569224c672893cd945dff7fe" title="Make-function to create a PointerComparator from another comparator without the need to specify the t...">pointerComparator()</a> because then you do not need to specify the template arguments </td></tr>
<tr id="row_56_27_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PrecursorIonSelection_1_1SeqTotalScoreMore.html" target="_self">PrecursorIonSelection::SeqTotalScoreMore</a></td><td class="desc">Compare by score </td></tr>
<tr id="row_56_28_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PrecursorIonSelection_1_1TotalScoreMore.html" target="_self">PrecursorIonSelection::TotalScoreMore</a></td><td class="desc">Compare by score </td></tr>
<tr id="row_56_29_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PSLPFormulation_1_1IndexLess.html" target="_self">PSLPFormulation::IndexLess</a></td><td class="desc"></td></tr>
<tr id="row_56_30_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PSLPFormulation_1_1ScanLess.html" target="_self">PSLPFormulation::ScanLess</a></td><td class="desc"></td></tr>
<tr id="row_56_31_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PSLPFormulation_1_1VariableIndexLess.html" target="_self">PSLPFormulation::VariableIndexLess</a></td><td class="desc"></td></tr>
<tr id="row_56_32_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ReactionMonitoringTransition_1_1ProductMZLess.html" target="_self">ReactionMonitoringTransition::ProductMZLess</a></td><td class="desc">Comparator by <a class="el" href="classOpenMS_1_1Product.html" title="Product meta information. ">Product</a> ion MZ </td></tr>
<tr id="row_56_33_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ReverseComparator.html" target="_self">ReverseComparator< Cmp ></a></td><td class="desc">Wrapper that reverses (exchanges) the two arguments of a comparator. Normally you should use the make-function <a class="el" href="structOpenMS_1_1ReverseComparator.html#a74e80d32be63268d8a46039297e18cc6" title="Make-function to create a ReverseComparator from another comparator without the need to specify the t...">reverseComparator()</a> because then you do not need to specify the template arguments </td></tr>
<tr id="row_57_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1MzMLHandler_1_1BinaryData.html" target="_self">MzMLHandler< MapType >::BinaryData</a></td><td class="desc">Spectrum representation </td></tr>
<tr id="row_58_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Interfaces_1_1BinaryDataArray.html" target="_self">BinaryDataArray</a></td><td class="desc">The datastructures used by the <a class="el" href="namespaceOpenSwath.html">OpenSwath</a> interfaces </td></tr>
<tr id="row_59_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1BinaryDataArray.html" target="_self">BinaryDataArray</a></td><td class="desc">The datastructures used by the <a class="el" href="namespaceOpenSwath.html">OpenSwath</a> interfaces </td></tr>
<tr id="row_60_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BinaryTreeNode.html" target="_self">BinaryTreeNode</a></td><td class="desc">Elements of a binary tree used to represent a hierarchical clustering process </td></tr>
<tr id="row_61_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1EnzymaticDigestion_1_1BindingSite.html" target="_self">EnzymaticDigestion::BindingSite</a></td><td class="desc"></td></tr>
<tr id="row_62_" class="even"><td class="entry"><img id="arr_62_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('62_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>BinInputStream</b></td><td class="desc"></td></tr>
<tr id="row_62_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Bzip2InputStream.html" target="_self">Bzip2InputStream</a></td><td class="desc">Implements the BinInputStream class of the xerces-c library in order to read bzip2 compressed XML files </td></tr>
<tr id="row_62_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GzipInputStream.html" target="_self">GzipInputStream</a></td><td class="desc">Implements the BinInputStream class of the xerces-c library in order to read gzip compressed XML files </td></tr>
<tr id="row_63_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1SILACFiltering_1_1BlacklistEntry.html" target="_self">SILACFiltering::BlacklistEntry</a></td><td class="desc">Structure for blacklist </td></tr>
<tr id="row_64_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FeatureFinderAlgorithmIsotopeWavelet_1_1BoxElement.html" target="_self">FeatureFinderAlgorithmIsotopeWavelet< PeakType, FeatureType >::BoxElement</a></td><td class="desc">Internally used data structure for the sweep line algorithm </td></tr>
<tr id="row_65_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1IsotopeWaveletTransform_1_1BoxElement.html" target="_self">IsotopeWaveletTransform< PeakType >::BoxElement</a></td><td class="desc">Internally used data structure </td></tr>
<tr id="row_66_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Bzip2Ifstream.html" target="_self">Bzip2Ifstream</a></td><td class="desc">Decompresses files which are compressed in the bzip2 format (*.bz2) </td></tr>
<tr id="row_67_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CentroidData.html" target="_self">CentroidData</a></td><td class="desc"></td></tr>
<tr id="row_68_" class="even"><td class="entry"><img id="arr_68_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('68_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CentroidPeak.html" target="_self">CentroidPeak</a></td><td class="desc"></td></tr>
<tr id="row_68_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DeconvPeak.html" target="_self">DeconvPeak</a></td><td class="desc"></td></tr>
<tr id="row_69_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ItraqConstants_1_1ChannelInfo.html" target="_self">ItraqConstants::ChannelInfo</a></td><td class="desc">Stores information on an iTRAQ channel </td></tr>
<tr id="row_70_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ChargePair.html" target="_self">ChargePair</a></td><td class="desc">Representation of a (putative) link between two Features, which stem from the same compound but have different charge (including different adduct ions (H+, Na+, ..) </td></tr>
<tr id="row_71_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Interfaces_1_1Chromatogram.html" target="_self">Chromatogram</a></td><td class="desc">A single chromatogram </td></tr>
<tr id="row_72_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1Chromatogram.html" target="_self">Chromatogram</a></td><td class="desc">A single chromatogram </td></tr>
<tr id="row_73_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Interfaces_1_1ChromatogramMeta.html" target="_self">ChromatogramMeta</a></td><td class="desc">Identifying information for a chromatogram </td></tr>
<tr id="row_74_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1ChromatogramMeta.html" target="_self">ChromatogramMeta</a></td><td class="desc">Identifying information for a chromatogram </td></tr>
<tr id="row_75_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ChromatogramPeak.html" target="_self">ChromatogramPeak</a></td><td class="desc">A 1-dimensional raw data point or peak for chromatograms </td></tr>
<tr id="row_76_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ChromatogramTools.html" target="_self">ChromatogramTools</a></td><td class="desc">Conversion class to interconvert chromatograms </td></tr>
<tr id="row_77_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1EnzymaticDigestion_1_1CleavageModel.html" target="_self">EnzymaticDigestion::CleavageModel</a></td><td class="desc"></td></tr>
<tr id="row_78_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ClusterAnalyzer.html" target="_self">ClusterAnalyzer</a></td><td class="desc">Bundles analyzing tools for a clustering (given as sequence of <a class="el" href="classOpenMS_1_1BinaryTreeNode.html" title="Elements of a binary tree used to represent a hierarchical clustering process. ">BinaryTreeNode</a>'s) </td></tr>
<tr id="row_79_"><td class="entry"><img id="arr_79_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('79_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ClusterFunctor.html" target="_self">ClusterFunctor</a></td><td class="desc">Base class for cluster functors </td></tr>
<tr id="row_79_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AverageLinkage.html" target="_self">AverageLinkage</a></td><td class="desc"><a class="el" href="classOpenMS_1_1AverageLinkage.html" title="AverageLinkage ClusterMethod. ">AverageLinkage</a> ClusterMethod </td></tr>
<tr id="row_79_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompleteLinkage.html" target="_self">CompleteLinkage</a></td><td class="desc"><a class="el" href="classOpenMS_1_1CompleteLinkage.html" title="CompleteLinkage ClusterMethod. ">CompleteLinkage</a> ClusterMethod </td></tr>
<tr id="row_79_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SingleLinkage.html" target="_self">SingleLinkage</a></td><td class="desc"><a class="el" href="classOpenMS_1_1SingleLinkage.html" title="SingleLinkage ClusterMethod. ">SingleLinkage</a> ClusterMethod </td></tr>
<tr id="row_80_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ClusterHierarchical.html" target="_self">ClusterHierarchical</a></td><td class="desc">Hierarchical clustering with generic clustering functions </td></tr>
<tr id="row_81_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CmpHypothesesByScore.html" target="_self">CmpHypothesesByScore</a></td><td class="desc"></td></tr>
<tr id="row_82_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CmpMassTraceByMZ.html" target="_self">CmpMassTraceByMZ</a></td><td class="desc">Method for the assembly of mass traces belonging to the same isotope pattern, i.e., that are compatible in retention times, mass-to-charge ratios, and isotope abundances </td></tr>
<tr id="row_83_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MapAlignmentAlgorithmSpectrumAlignment_1_1Compare.html" target="_self">MapAlignmentAlgorithmSpectrumAlignment::Compare</a></td><td class="desc">Innerclass necessary for using the sort algo </td></tr>
<tr id="row_84_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Compomer.html" target="_self">Compomer</a></td><td class="desc">Holds information on an edge connecting two features from a (putative) charge ladder </td></tr>
<tr id="row_85_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusIsotopePattern.html" target="_self">ConsensusIsotopePattern</a></td><td class="desc"></td></tr>
<tr id="row_86_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusMapNormalizerAlgorithmMedian.html" target="_self">ConsensusMapNormalizerAlgorithmMedian</a></td><td class="desc">Algorithms of ConsensusMapNormalizer </td></tr>
<tr id="row_87_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusMapNormalizerAlgorithmQuantile.html" target="_self">ConsensusMapNormalizerAlgorithmQuantile</a></td><td class="desc">Algorithms of ConsensusMapNormalizer </td></tr>
<tr id="row_88_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusMapNormalizerAlgorithmThreshold.html" target="_self">ConsensusMapNormalizerAlgorithmThreshold</a></td><td class="desc">Algorithms of ConsensusMapNormalizer </td></tr>
<tr id="row_89_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsoleUtils.html" target="_self">ConsoleUtils</a></td><td class="desc"></td></tr>
<tr id="row_90_" class="even"><td class="entry"><img id="arr_90_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('90_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>set< K >::const_iterator</b></td><td class="desc">STL iterator class </td></tr>
<tr id="row_90_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1IntensityIterator.html" target="_self">IntensityIterator< FeaFiModuleType ></a></td><td class="desc">Intensity iterator for a <a class="el" href="structOpenMS_1_1FeatureFinderDefs.html#af7439235b89a75354a2e87350e36834f" title="A set of peak indices. ">FeatureFinderDefs::IndexSet</a> </td></tr>
<tr id="row_90_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1MzIterator.html" target="_self">MzIterator< FeaFiModuleType ></a></td><td class="desc">M/z iterator for a <a class="el" href="structOpenMS_1_1FeatureFinderDefs.html#af7439235b89a75354a2e87350e36834f" title="A set of peak indices. ">FeatureFinderDefs::IndexSet</a> </td></tr>
<tr id="row_90_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1RtIterator.html" target="_self">RtIterator< FeaFiModuleType ></a></td><td class="desc">Retention time iterator for a <a class="el" href="structOpenMS_1_1FeatureFinderDefs.html#af7439235b89a75354a2e87350e36834f" title="A set of peak indices. ">FeatureFinderDefs::IndexSet</a> </td></tr>
<tr id="row_91_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AASequence_1_1ConstIterator.html" target="_self">AASequence::ConstIterator</a></td><td class="desc"><a class="el" href="classOpenMS_1_1AASequence_1_1ConstIterator.html" title="ConstIterator for AASequence. ">ConstIterator</a> for <a class="el" href="classOpenMS_1_1AASequence.html" title="Representation of a peptide/protein sequence. ">AASequence</a> </td></tr>
<tr id="row_92_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConstRefVector.html" target="_self">ConstRefVector< ContainerT ></a></td><td class="desc">This vector holds pointer to the elements of another container </td></tr>
<tr id="row_93_"><td class="entry"><img id="arr_93_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('93_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConstRefVector_1_1ConstRefVectorConstIterator.html" target="_self">ConstRefVector< ContainerT >::ConstRefVectorConstIterator< ValueT ></a></td><td class="desc">ConstIterator for the <a class="el" href="classOpenMS_1_1ConstRefVector.html" title="This vector holds pointer to the elements of another container. ">ConstRefVector</a> </td></tr>
<tr id="row_93_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConstRefVector_1_1ConstRefVectorIterator.html" target="_self">ConstRefVector< ContainerT >::ConstRefVectorIterator< ValueT ></a></td><td class="desc">Mutable iterator for the <a class="el" href="classOpenMS_1_1ConstRefVector.html" title="This vector holds pointer to the elements of another container. ">ConstRefVector</a> </td></tr>
<tr id="row_94_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1RawMSSignalSimulation_1_1ContaminantInfo.html" target="_self">RawMSSignalSimulation::ContaminantInfo</a></td><td class="desc"></td></tr>
<tr id="row_95_"><td class="entry"><img id="arr_95_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('95_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ContinuousWaveletTransform.html" target="_self">ContinuousWaveletTransform</a></td><td class="desc">This class is the base class of the continuous wavelet transformation </td></tr>
<tr id="row_95_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ContinuousWaveletTransformNumIntegration.html" target="_self">ContinuousWaveletTransformNumIntegration</a></td><td class="desc">This class computes the continuous wavelet transformation using a marr wavelet </td></tr>
<tr id="row_96_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ControlledVocabulary.html" target="_self">ControlledVocabulary</a></td><td class="desc">Representation of a controlled vocabulary </td></tr>
<tr id="row_97_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConvexHull2D.html" target="_self">ConvexHull2D</a></td><td class="desc">A 2-dimensional hull representation in [counter]clockwise direction - depending on axis labelling </td></tr>
<tr id="row_98_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1cudaHelp.html" target="_self">cudaHelp</a></td><td class="desc">An internally used class, subsuming several variables </td></tr>
<tr id="row_99_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TargetedExperimentHelper_1_1CV.html" target="_self">CV</a></td><td class="desc"></td></tr>
<tr id="row_100_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CVMappingRule.html" target="_self">CVMappingRule</a></td><td class="desc">Representation of a CV Mapping rule used by <a class="el" href="classOpenMS_1_1CVMappings.html" title="Representation of controlled vocabulary mapping rules (for PSI formats) ">CVMappings</a> </td></tr>
<tr id="row_101_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CVMappings.html" target="_self">CVMappings</a></td><td class="desc">Representation of controlled vocabulary mapping rules (for PSI formats) </td></tr>
<tr id="row_102_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CVMappingTerm.html" target="_self">CVMappingTerm</a></td><td class="desc">Representation of controlled vocabulary term </td></tr>
<tr id="row_103_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CVReference.html" target="_self">CVReference</a></td><td class="desc">Controlled Vocabulary Reference </td></tr>
<tr id="row_104_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ControlledVocabulary_1_1CVTerm.html" target="_self">ControlledVocabulary::CVTerm</a></td><td class="desc">Representation of a CV term </td></tr>
<tr id="row_105_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1SemanticValidator_1_1CVTerm.html" target="_self">SemanticValidator::CVTerm</a></td><td class="desc">Representation of a parsed CV term </td></tr>
<tr id="row_106_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CVTerm.html" target="_self">CVTerm</a></td><td class="desc">Representation of controlled vocabulary term </td></tr>
<tr id="row_107_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1EGHFitter1D_1_1Data.html" target="_self">EGHFitter1D::Data</a></td><td class="desc">Helper struct (contains the size of an area and a raw data container) </td></tr>
<tr id="row_108_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1EmgFitter1D_1_1Data.html" target="_self">EmgFitter1D::Data</a></td><td class="desc">Helper struct (contains the size of an area and a raw data container) </td></tr>
<tr id="row_109_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1LmaGaussFitter1D_1_1Data.html" target="_self">LmaGaussFitter1D::Data</a></td><td class="desc">Helper struct (contains the size of an area and a raw data container) </td></tr>
<tr id="row_110_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1LmaIsotopeFitter1D_1_1Data.html" target="_self">LmaIsotopeFitter1D::Data</a></td><td class="desc">Helper struct (contains the size of an area, a raw data container, the relative abundance of i-th isotopic peak and the distance between consecutive isotopic peaks) </td></tr>
<tr id="row_111_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1OptimizePeakDeconvolution_1_1Data.html" target="_self">OptimizePeakDeconvolution::Data</a></td><td class="desc">Class containing the data needed for optimization </td></tr>
<tr id="row_112_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1OptimizePick_1_1Data.html" target="_self">OptimizePick::Data</a></td><td class="desc"></td></tr>
<tr id="row_113_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TwoDOptimization_1_1Data.html" target="_self">TwoDOptimization::Data</a></td><td class="desc">Helper struct (contains the size of an area and a raw data container) </td></tr>
<tr id="row_114_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1DataFilters_1_1DataFilter.html" target="_self">DataFilters::DataFilter</a></td><td class="desc">Representation of a peak/feature filter combining FilterType, FilterOperation and a value </td></tr>
<tr id="row_115_"><td class="entry"><img id="arr_115_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('115_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>DataFilterDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_115_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DataFilterDialog.html" target="_self">DataFilterDialog</a></td><td class="desc">Dialog for creating and changing a DataFilter </td></tr>
<tr id="row_116_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DataFilters.html" target="_self">DataFilters</a></td><td class="desc"><a class="el" href="structOpenMS_1_1DataFilters_1_1DataFilter.html" title="Representation of a peak/feature filter combining FilterType, FilterOperation and a value...">DataFilter</a> array providing some convenience functions </td></tr>
<tr id="row_117_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DataValue.html" target="_self">DataValue</a></td><td class="desc">Class to hold strings, numeric values, lists of strings and lists of numeric values </td></tr>
<tr id="row_118_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DBAdapter.html" target="_self">DBAdapter</a></td><td class="desc">A class for accessing and storing data in a SQL database </td></tr>
<tr id="row_119_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DBConnection.html" target="_self">DBConnection</a></td><td class="desc">A class for connecting to a SQL database </td></tr>
<tr id="row_120_" class="even"><td class="entry"><img id="arr_120_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('120_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>DefaultHandler</b></td><td class="desc"></td></tr>
<tr id="row_120_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_120_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('120_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1XMLHandler.html" target="_self">XMLHandler</a></td><td class="desc">Base class for XML handlers </td></tr>
<tr id="row_120_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusXMLFile.html" target="_self">ConsensusXMLFile</a></td><td class="desc">This class provides Input functionality for ConsensusMaps and Output functionality for alignments and quantitation </td></tr>
<tr id="row_120_0_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CVMappingFile.html" target="_self">CVMappingFile</a></td><td class="desc">Used to load CvMapping files </td></tr>
<tr id="row_120_0_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureXMLFile.html" target="_self">FeatureXMLFile</a></td><td class="desc">This class provides Input/Output functionality for feature maps </td></tr>
<tr id="row_120_0_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IdXMLFile.html" target="_self">IdXMLFile</a></td><td class="desc">Used to load and store idXML files </td></tr>
<tr id="row_120_0_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1MascotXMLHandler.html" target="_self">MascotXMLHandler</a></td><td class="desc">Handler that is used for parsing MascotXML data </td></tr>
<tr id="row_120_0_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1MzDataHandler.html" target="_self">MzDataHandler< MapType ></a></td><td class="desc">XML handler for <a class="el" href="classOpenMS_1_1MzDataFile.html" title="File adapter for MzData files. ">MzDataFile</a> </td></tr>
<tr id="row_120_0_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1MzIdentMLHandler.html" target="_self">MzIdentMLHandler</a></td><td class="desc">XML handler for <a class="el" href="classOpenMS_1_1MzIdentMLFile.html" title="File adapter for MzIdentML files. ">MzIdentMLFile</a> </td></tr>
<tr id="row_120_0_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1MzMLHandler.html" target="_self">MzMLHandler< MapType ></a></td><td class="desc">XML handler for <a class="el" href="classOpenMS_1_1MzMLFile.html" title="File adapter for MzML files. ">MzMLFile</a> </td></tr>
<tr id="row_120_0_8_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1MzQuantMLHandler.html" target="_self">MzQuantMLHandler</a></td><td class="desc">XML handler for <a class="el" href="classOpenMS_1_1MzQuantMLFile.html" title="File adapter for MzQuantML files. ">MzQuantMLFile</a> </td></tr>
<tr id="row_120_0_9_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1MzXMLHandler.html" target="_self">MzXMLHandler< MapType ></a></td><td class="desc">XML handlers for <a class="el" href="classOpenMS_1_1MzXMLFile.html" title="File adapter for MzXML 2.1 files. ">MzXMLFile</a> </td></tr>
<tr id="row_120_0_10_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_120_0_10_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('120_0_10_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1ParamXMLHandler.html" target="_self">ParamXMLHandler</a></td><td class="desc">XML Handler for <a class="el" href="classOpenMS_1_1Param.html" title="Management and storage of parameters / INI files. ">Param</a> files </td></tr>
<tr id="row_120_0_10_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1ToolDescriptionHandler.html" target="_self">ToolDescriptionHandler</a></td><td class="desc">XML handler for <a class="el" href="classOpenMS_1_1ToolDescriptionFile.html" title="File adapter for ToolDescriptor files. ">ToolDescriptionFile</a> </td></tr>
<tr id="row_120_0_11_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1PTMXMLHandler.html" target="_self">PTMXMLHandler</a></td><td class="desc">Handler that is used for parsing PTMXML data </td></tr>
<tr id="row_120_0_12_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_120_0_12_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('120_0_12_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1SemanticValidator.html" target="_self">SemanticValidator</a></td><td class="desc">Semantically validates XML files using <a class="el" href="classOpenMS_1_1CVMappings.html" title="Representation of controlled vocabulary mapping rules (for PSI formats) ">CVMappings</a> and a <a class="el" href="classOpenMS_1_1ControlledVocabulary.html" title="Representation of a controlled vocabulary. ">ControlledVocabulary</a> </td></tr>
<tr id="row_120_0_12_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1MzDataValidator.html" target="_self">MzDataValidator</a></td><td class="desc">Semantically validates MzXML files </td></tr>
<tr id="row_120_0_12_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1MzIdentMLValidator.html" target="_self">MzIdentMLValidator</a></td><td class="desc">Semantically validates MzXML files </td></tr>
<tr id="row_120_0_12_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1MzMLValidator.html" target="_self">MzMLValidator</a></td><td class="desc">Semantically validates MzXML files </td></tr>
<tr id="row_120_0_12_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1MzQuantMLValidator.html" target="_self">MzQuantMLValidator</a></td><td class="desc">Semantically validates MzQuantML files </td></tr>
<tr id="row_120_0_12_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1TraMLValidator.html" target="_self">TraMLValidator</a></td><td class="desc">Semantically validates MzXML files </td></tr>
<tr id="row_120_0_13_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1TraMLHandler.html" target="_self">TraMLHandler</a></td><td class="desc">XML handler for <a class="el" href="classOpenMS_1_1TraMLFile.html" title="File adapter for HUPO PSI TraML files. ">TraMLFile</a> </td></tr>
<tr id="row_120_0_14_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1UnimodXMLHandler.html" target="_self">UnimodXMLHandler</a></td><td class="desc">Handler that is used for parsing XTandemXML data </td></tr>
<tr id="row_120_0_15_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1XTandemInfileXMLHandler.html" target="_self">XTandemInfileXMLHandler</a></td><td class="desc">Handler that is used for parsing XTandemXML data </td></tr>
<tr id="row_120_0_16_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1OMSSAXMLFile.html" target="_self">OMSSAXMLFile</a></td><td class="desc">Used to load OMSSAXML files </td></tr>
<tr id="row_120_0_17_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PepXMLFile.html" target="_self">PepXMLFile</a></td><td class="desc">Used to load and store PepXML files </td></tr>
<tr id="row_120_0_18_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PepXMLFileMascot.html" target="_self">PepXMLFileMascot</a></td><td class="desc">Used to load Mascot PepXML files </td></tr>
<tr id="row_120_0_19_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProtXMLFile.html" target="_self">ProtXMLFile</a></td><td class="desc">Used to load (storing not supported, yet) ProtXML files </td></tr>
<tr id="row_120_0_20_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1QcMLFile.html" target="_self">QcMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for QcML files </td></tr>
<tr id="row_120_0_21_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TransformationXMLFile.html" target="_self">TransformationXMLFile</a></td><td class="desc">Used to load and store TransformationXML files </td></tr>
<tr id="row_120_0_22_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1XTandemXMLFile.html" target="_self">XTandemXMLFile</a></td><td class="desc">Used to load XTandemXML files </td></tr>
<tr id="row_121_"><td class="entry"><img id="arr_121_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DefaultParamHandler.html" target="_self">DefaultParamHandler</a></td><td class="desc">A base class for all classes handling default parameters </td></tr>
<tr id="row_121_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseModel.html" target="_self">BaseModel< 1 ></a></td><td class="desc"></td></tr>
<tr id="row_121_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_0_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('121_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InterpolationModel.html" target="_self">InterpolationModel</a></td><td class="desc">Abstract class for 1D-models that are approximated using linear interpolation </td></tr>
<tr id="row_121_0_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BiGaussModel.html" target="_self">BiGaussModel</a></td><td class="desc">Bigaussian distribution approximated using linear interpolation </td></tr>
<tr id="row_121_0_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EGHModel.html" target="_self">EGHModel</a></td><td class="desc">Exponential-Gaussian hybrid distribution model for elution profiles </td></tr>
<tr id="row_121_0_0_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EmgModel.html" target="_self">EmgModel</a></td><td class="desc">Exponentially modified gaussian distribution model for elution profiles </td></tr>
<tr id="row_121_0_0_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ExtendedIsotopeModel.html" target="_self">ExtendedIsotopeModel</a></td><td class="desc">Extended isotope distribution approximated using linear interpolation </td></tr>
<tr id="row_121_0_0_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GaussModel.html" target="_self">GaussModel</a></td><td class="desc">Normal distribution approximated using linear interpolation </td></tr>
<tr id="row_121_0_0_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeModel.html" target="_self">IsotopeModel</a></td><td class="desc">Isotope distribution approximated using linear interpolation </td></tr>
<tr id="row_121_0_0_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LmaGaussModel.html" target="_self">LmaGaussModel</a></td><td class="desc">Normal distribution model for elution profiles </td></tr>
<tr id="row_121_0_0_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LmaIsotopeModel.html" target="_self">LmaIsotopeModel</a></td><td class="desc">Isotope distribution approximated using linear interpolation </td></tr>
<tr id="row_121_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseModel.html" target="_self">BaseModel< 2 ></a></td><td class="desc"></td></tr>
<tr id="row_121_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProductModel_3_012_01_4.html" target="_self">ProductModel< 2 ></a></td><td class="desc">The class template is only implemented for D=2 because we use <a class="el" href="classOpenMS_1_1Peak2D.html" title="A 2-dimensional raw data point or peak. ">Peak2D</a> here </td></tr>
<tr id="row_121_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AccurateMassSearchEngine.html" target="_self">AccurateMassSearchEngine</a></td><td class="desc"></td></tr>
<tr id="row_121_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_3_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_3_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseGroupFinder.html" target="_self">BaseGroupFinder</a></td><td class="desc">The base class of all element group finding algorithms </td></tr>
<tr id="row_121_3_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LabeledPairFinder.html" target="_self">LabeledPairFinder</a></td><td class="desc">The <a class="el" href="classOpenMS_1_1LabeledPairFinder.html" title="The LabeledPairFinder allows the matching of labeled features (features with a fixed distance)...">LabeledPairFinder</a> allows the matching of labeled features (features with a fixed distance) </td></tr>
<tr id="row_121_3_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1QTClusterFinder.html" target="_self">QTClusterFinder</a></td><td class="desc">A variant of QT clustering for the detection of feature groups </td></tr>
<tr id="row_121_3_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SimplePairFinder.html" target="_self">SimplePairFinder</a></td><td class="desc">This class implements a simple point pair finding algorithm </td></tr>
<tr id="row_121_3_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1StablePairFinder.html" target="_self">StablePairFinder</a></td><td class="desc">This class implements a pair finding algorithm for consensus features </td></tr>
<tr id="row_121_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_4_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_4_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseLabeler.html" target="_self">BaseLabeler</a></td><td class="desc">Abstract base class for all kinds of labeling techniques </td></tr>
<tr id="row_121_4_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ICPLLabeler.html" target="_self">ICPLLabeler</a></td><td class="desc">Simulate ICPL experiments </td></tr>
<tr id="row_121_4_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ITRAQLabeler.html" target="_self">ITRAQLabeler</a></td><td class="desc">Simulate iTRAQ experiments </td></tr>
<tr id="row_121_4_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LabelFreeLabeler.html" target="_self">LabelFreeLabeler</a></td><td class="desc">Abstract base class for all kinds of labeling techniques </td></tr>
<tr id="row_121_4_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1O18Labeler.html" target="_self">O18Labeler</a></td><td class="desc">Simulate O-18 experiments </td></tr>
<tr id="row_121_4_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SILACLabeler.html" target="_self">SILACLabeler</a></td><td class="desc">Simulate SILAC experiments </td></tr>
<tr id="row_121_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseModel.html" target="_self">BaseModel< D ></a></td><td class="desc">Abstract base class for all D-dimensional models </td></tr>
<tr id="row_121_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_6_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_6_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseSuperimposer.html" target="_self">BaseSuperimposer</a></td><td class="desc">The base class of all superimposer algorithms </td></tr>
<tr id="row_121_6_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PoseClusteringAffineSuperimposer.html" target="_self">PoseClusteringAffineSuperimposer</a></td><td class="desc">A superimposer that uses a voting scheme, also known as pose clustering, to find a good affine transformation </td></tr>
<tr id="row_121_6_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PoseClusteringShiftSuperimposer.html" target="_self">PoseClusteringShiftSuperimposer</a></td><td class="desc">A superimposer that uses a voting scheme, also known as pose clustering, to find a good shift transformation </td></tr>
<tr id="row_121_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BernNorm.html" target="_self">BernNorm</a></td><td class="desc"><a class="el" href="classOpenMS_1_1BernNorm.html" title="BernNorm scales the peaks by ranking them and then scaling them according to rank. ">BernNorm</a> scales the peaks by ranking them and then scaling them according to rank </td></tr>
<tr id="row_121_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_8_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_8_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BinnedSpectrumCompareFunctor.html" target="_self">BinnedSpectrumCompareFunctor</a></td><td class="desc">Base class for compare functors of BinnedSpectra </td></tr>
<tr id="row_121_8_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BinnedSharedPeakCount.html" target="_self">BinnedSharedPeakCount</a></td><td class="desc">Compare functor scoring the shared peaks for similarity measurement </td></tr>
<tr id="row_121_8_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BinnedSpectralContrastAngle.html" target="_self">BinnedSpectralContrastAngle</a></td><td class="desc">Compare functor scoring the spectral contrast angle for similarity measurement </td></tr>
<tr id="row_121_8_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BinnedSumAgreeingIntensities.html" target="_self">BinnedSumAgreeingIntensities</a></td><td class="desc">Compare functor scoring the sum of agreeing intensities for similarity measurement </td></tr>
<tr id="row_121_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_9_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_9_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompNovoIdentificationBase.html" target="_self">CompNovoIdentificationBase</a></td><td class="desc">Run with <a class="el" href="classOpenMS_1_1CompNovoIdentificationBase.html" title="run with CompNovoIdentificationBase ">CompNovoIdentificationBase</a> </td></tr>
<tr id="row_121_9_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompNovoIdentification.html" target="_self">CompNovoIdentification</a></td><td class="desc">Run with <a class="el" href="classOpenMS_1_1CompNovoIdentification.html" title="run with CompNovoIdentification ">CompNovoIdentification</a> </td></tr>
<tr id="row_121_9_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompNovoIdentificationCID.html" target="_self">CompNovoIdentificationCID</a></td><td class="desc">Run with <a class="el" href="classOpenMS_1_1CompNovoIdentificationCID.html" title="run with CompNovoIdentificationCID ">CompNovoIdentificationCID</a> </td></tr>
<tr id="row_121_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_10_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_10_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompNovoIonScoringBase.html" target="_self">CompNovoIonScoringBase</a></td><td class="desc">Run with <a class="el" href="classOpenMS_1_1CompNovoIonScoringBase.html" title="run with CompNovoIonScoringBase ">CompNovoIonScoringBase</a> </td></tr>
<tr id="row_121_10_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompNovoIonScoring.html" target="_self">CompNovoIonScoring</a></td><td class="desc">Run with <a class="el" href="classOpenMS_1_1CompNovoIonScoring.html" title="run with CompNovoIonScoring ">CompNovoIonScoring</a> </td></tr>
<tr id="row_121_10_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompNovoIonScoringCID.html" target="_self">CompNovoIonScoringCID</a></td><td class="desc">Run with <a class="el" href="classOpenMS_1_1CompNovoIonScoringCID.html" title="run with CompNovoIonScoringCID ">CompNovoIonScoringCID</a> </td></tr>
<tr id="row_121_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusID.html" target="_self">ConsensusID</a></td><td class="desc">Calculates a consensus ID from several ID runs </td></tr>
<tr id="row_121_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DeNovoAlgorithm.html" target="_self">DeNovoAlgorithm</a></td><td class="desc">Base class for ion scoring implementation for de novo algorithms </td></tr>
<tr id="row_121_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DeNovoIdentification.html" target="_self">DeNovoIdentification</a></td><td class="desc">Base class for de novo identification </td></tr>
<tr id="row_121_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DeNovoIonScoring.html" target="_self">DeNovoIonScoring</a></td><td class="desc">Base class for ion scoring implementation for de novo algorithms </td></tr>
<tr id="row_121_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DeNovoPostScoring.html" target="_self">DeNovoPostScoring</a></td><td class="desc">Base class for ion scoring implementation for de novo algorithms </td></tr>
<tr id="row_121_16_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DetectabilitySimulation.html" target="_self">DetectabilitySimulation</a></td><td class="desc">Simulates peptide detectability </td></tr>
<tr id="row_121_17_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DiaPrescore.html" target="_self">DiaPrescore</a></td><td class="desc">Scoring of an spectrum given library intensities of a transition group </td></tr>
<tr id="row_121_18_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DIAScoring.html" target="_self">DIAScoring</a></td><td class="desc">Scoring of an spectrum at the peak apex of an chromatographic elution peak </td></tr>
<tr id="row_121_19_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DigestSimulation.html" target="_self">DigestSimulation</a></td><td class="desc">Simulates protein digestion </td></tr>
<tr id="row_121_20_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ElutionPeakDetection.html" target="_self">ElutionPeakDetection</a></td><td class="desc">Extracts chromatographic peaks from a mass trace </td></tr>
<tr id="row_121_21_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FalseDiscoveryRate.html" target="_self">FalseDiscoveryRate</a></td><td class="desc">Calculates an FDR from identifications </td></tr>
<tr id="row_121_22_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_22_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_22_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeaFiModule.html" target="_self">FeaFiModule< PeakType, FeatureType ></a></td><td class="desc">Implements a module of the <a class="el" href="classOpenMS_1_1FeatureFinder.html" title="The main feature finder class. ">FeatureFinder</a> algorithm </td></tr>
<tr id="row_121_22_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ModelFitter.html" target="_self">ModelFitter< PeakType, FeatureType ></a></td><td class="desc">Tests a group of data points in an LC-MS map for goodness-of-fit with a 2D averagine model </td></tr>
<tr id="row_121_22_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SimpleExtender.html" target="_self">SimpleExtender< PeakType, FeatureType ></a></td><td class="desc">Simple feature extension algorithm </td></tr>
<tr id="row_121_22_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SimpleSeeder.html" target="_self">SimpleSeeder< PeakType, FeatureType ></a></td><td class="desc">Simple seeding class that uses the strongest peak as next seed </td></tr>
<tr id="row_121_23_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureDeconvolution.html" target="_self">FeatureDeconvolution</a></td><td class="desc">An algorithm to decharge features (i.e. as found by <a class="el" href="classOpenMS_1_1FeatureFinder.html" title="The main feature finder class. ">FeatureFinder</a>) </td></tr>
<tr id="row_121_24_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureDistance.html" target="_self">FeatureDistance</a></td><td class="desc">A functor class for the calculation of distances between features or consensus features </td></tr>
<tr id="row_121_25_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_25_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_25_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" target="_self">FeatureFinderAlgorithm< PeakType, FeatureType ></a></td><td class="desc">Abstract base class for <a class="el" href="classOpenMS_1_1FeatureFinder.html" title="The main feature finder class. ">FeatureFinder</a> algorithms </td></tr>
<tr id="row_121_25_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmIsotopeWavelet.html" target="_self">FeatureFinderAlgorithmIsotopeWavelet< OpenMS::Peak2D, FeatureType ></a></td><td class="desc"></td></tr>
<tr id="row_121_25_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmIsotopeWavelet.html" target="_self">FeatureFinderAlgorithmIsotopeWavelet< PeakType, FeatureType ></a></td><td class="desc">Implements the isotope wavelet feature finder </td></tr>
<tr id="row_121_25_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmMRM.html" target="_self">FeatureFinderAlgorithmMRM< PeakType, FeatureType ></a></td><td class="desc"><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" title="Abstract base class for FeatureFinder algorithms. ">FeatureFinderAlgorithm</a> for MRM experiments </td></tr>
<tr id="row_121_25_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html" target="_self">FeatureFinderAlgorithmPicked< PeakType, FeatureType ></a></td><td class="desc"><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" title="Abstract base class for FeatureFinder algorithms. ">FeatureFinderAlgorithm</a> for picked peaks </td></tr>
<tr id="row_121_25_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmSH.html" target="_self">FeatureFinderAlgorithmSH< PeakType, FeatureType ></a></td><td class="desc">The Superhirn <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" title="Abstract base class for FeatureFinder algorithms. ">FeatureFinderAlgorithm</a> </td></tr>
<tr id="row_121_25_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmSimple.html" target="_self">FeatureFinderAlgorithmSimple< PeakType, FeatureType ></a></td><td class="desc"><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" title="Abstract base class for FeatureFinder algorithms. ">FeatureFinderAlgorithm</a> implementation using the Simple* modules </td></tr>
<tr id="row_121_25_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmSimplest.html" target="_self">FeatureFinderAlgorithmSimplest< PeakType, FeatureType ></a></td><td class="desc"><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" title="Abstract base class for FeatureFinder algorithms. ">FeatureFinderAlgorithm</a> implementation using the Simple* modules </td></tr>
<tr id="row_121_26_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFindingMetabo.html" target="_self">FeatureFindingMetabo</a></td><td class="desc"></td></tr>
<tr id="row_121_27_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_27_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_27_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureGroupingAlgorithm.html" target="_self">FeatureGroupingAlgorithm</a></td><td class="desc">Base class for all feature grouping algorithms </td></tr>
<tr id="row_121_27_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureGroupingAlgorithmIdentification.html" target="_self">FeatureGroupingAlgorithmIdentification</a></td><td class="desc">A map feature grouping algorithm for identified features </td></tr>
<tr id="row_121_27_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureGroupingAlgorithmLabeled.html" target="_self">FeatureGroupingAlgorithmLabeled</a></td><td class="desc">A map feature grouping algorithm for labeling techniques with two labels </td></tr>
<tr id="row_121_27_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureGroupingAlgorithmQT.html" target="_self">FeatureGroupingAlgorithmQT</a></td><td class="desc">A feature grouping algorithm for unlabeled data </td></tr>
<tr id="row_121_27_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureGroupingAlgorithmUnlabeled.html" target="_self">FeatureGroupingAlgorithmUnlabeled</a></td><td class="desc">A map feature grouping algorithm for unlabeled data </td></tr>
<tr id="row_121_28_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_28_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_28_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FilterFunctor.html" target="_self">FilterFunctor</a></td><td class="desc">A <a class="el" href="classOpenMS_1_1FilterFunctor.html" title="A FilterFunctor extracts some spectrum characteristics for quality assessment. ">FilterFunctor</a> extracts some spectrum characteristics for quality assessment </td></tr>
<tr id="row_121_28_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ComplementFilter.html" target="_self">ComplementFilter</a></td><td class="desc">Total intensity of peak pairs that could result from complementing fragments of charge state 1 </td></tr>
<tr id="row_121_28_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GoodDiffFilter.html" target="_self">GoodDiffFilter</a></td><td class="desc"><a class="el" href="classOpenMS_1_1GoodDiffFilter.html" title="GoodDiffFilter counts the number ob peak pairs whose m/z difference can be explained by a amino acid ...">GoodDiffFilter</a> counts the number ob peak pairs whose m/z difference can be explained by a amino acid loss </td></tr>
<tr id="row_121_28_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IntensityBalanceFilter.html" target="_self">IntensityBalanceFilter</a></td><td class="desc"><a class="el" href="classOpenMS_1_1IntensityBalanceFilter.html" title="IntensityBalanceFilter divides the m/z-range into ten regions and sums the intensity in these regions...">IntensityBalanceFilter</a> divides the m/z-range into ten regions and sums the intensity in these regions </td></tr>
<tr id="row_121_28_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeDiffFilter.html" target="_self">IsotopeDiffFilter</a></td><td class="desc"><a class="el" href="classOpenMS_1_1IsotopeDiffFilter.html" title="IsotopeDiffFilter returns total intensity of peak pairs that could result from isotope peaks...">IsotopeDiffFilter</a> returns total intensity of peak pairs that could result from isotope peaks </td></tr>
<tr id="row_121_28_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1NeutralLossDiffFilter.html" target="_self">NeutralLossDiffFilter</a></td><td class="desc"><a class="el" href="classOpenMS_1_1NeutralLossDiffFilter.html" title="NeutralLossDiffFilter returns the total intensity ob peak pairs whose m/z difference can be explained...">NeutralLossDiffFilter</a> returns the total intensity ob peak pairs whose m/z difference can be explained by a neutral loss </td></tr>
<tr id="row_121_28_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TICFilter.html" target="_self">TICFilter</a></td><td class="desc"><a class="el" href="classOpenMS_1_1TICFilter.html" title="TICFilter calculates TIC. ">TICFilter</a> calculates TIC </td></tr>
<tr id="row_121_29_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_29_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_29_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Fitter1D.html" target="_self">Fitter1D</a></td><td class="desc">Abstract base class for all 1D-dimensional model fitter </td></tr>
<tr id="row_121_29_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_29_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_29_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LevMarqFitter1D.html" target="_self">LevMarqFitter1D</a></td><td class="desc">Abstract class for 1D-model fitter using Levenberg-Marquardt algorithm for parameter optimization </td></tr>
<tr id="row_121_29_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EGHFitter1D.html" target="_self">EGHFitter1D</a></td><td class="desc">Exponential-Gaussian hybrid distribution fitter (1-dim.) using Levenberg-Marquardt algorithm (GSL implementation) for parameter optimization </td></tr>
<tr id="row_121_29_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EmgFitter1D.html" target="_self">EmgFitter1D</a></td><td class="desc">Exponentially modified gaussian distribution fitter (1-dim.) using Levenberg-Marquardt algorithm (GSL implementation) for parameter optimization </td></tr>
<tr id="row_121_29_0_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LmaGaussFitter1D.html" target="_self">LmaGaussFitter1D</a></td><td class="desc">Gaussian distribution fitter (1-dim.) using Levenberg-Marquardt algorithm (GSL implementation) for parameter optimization </td></tr>
<tr id="row_121_29_0_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LmaIsotopeFitter1D.html" target="_self">LmaIsotopeFitter1D</a></td><td class="desc">Isotope distribution fitter (1-dim.) approximated using Levenberg-Marquardt algorithm (GSL implementation) for parameter optimization </td></tr>
<tr id="row_121_29_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_29_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('121_29_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MaxLikeliFitter1D.html" target="_self">MaxLikeliFitter1D</a></td><td class="desc">Abstract base class for all 1D-model fitters using maximum likelihood optimization </td></tr>
<tr id="row_121_29_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BiGaussFitter1D.html" target="_self">BiGaussFitter1D</a></td><td class="desc">Bigaussian distribution fitter (1-dim.) approximated using linear interpolation </td></tr>
<tr id="row_121_29_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ExtendedIsotopeFitter1D.html" target="_self">ExtendedIsotopeFitter1D</a></td><td class="desc">Extended isotope distribution fitter (1-dim.) approximated using linear interpolation </td></tr>
<tr id="row_121_29_1_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GaussFitter1D.html" target="_self">GaussFitter1D</a></td><td class="desc">Gaussian distribution fitter (1-dim.) approximated using linear interpolation </td></tr>
<tr id="row_121_29_1_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeFitter1D.html" target="_self">IsotopeFitter1D</a></td><td class="desc">Isotope distribution fitter (1-dim.) approximated using linear interpolation </td></tr>
<tr id="row_121_30_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GaussFilter.html" target="_self">GaussFilter</a></td><td class="desc">This class represents a Gaussian lowpass-filter which works on uniform as well as on non-uniform profile data </td></tr>
<tr id="row_121_31_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IDDecoyProbability.html" target="_self">IDDecoyProbability</a></td><td class="desc"><a class="el" href="classOpenMS_1_1IDDecoyProbability.html" title="IDDecoyProbability calculates probabilities using decoy approach. ">IDDecoyProbability</a> calculates probabilities using decoy approach </td></tr>
<tr id="row_121_32_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IDEvaluationBase.html" target="_self">IDEvaluationBase</a></td><td class="desc">Main window of the IDEvaluation tool </td></tr>
<tr id="row_121_33_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IDMapper.html" target="_self">IDMapper</a></td><td class="desc">Annotates an <a class="el" href="classOpenMS_1_1MSExperiment.html" title="Representation of a mass spectrometry experiment. ">MSExperiment</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html" title="A container for features. ">FeatureMap</a> or <a class="el" href="classOpenMS_1_1ConsensusMap.html" title="A container for consensus elements. ">ConsensusMap</a> with peptide identifications </td></tr>
<tr id="row_121_34_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IDRipper.html" target="_self">IDRipper</a></td><td class="desc">Ripping protein/peptide identification according their file origin </td></tr>
<tr id="row_121_35_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InclusionExclusionList.html" target="_self">InclusionExclusionList</a></td><td class="desc">Provides functionalty for writing inclusion or exclusion lists </td></tr>
<tr id="row_121_36_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InternalCalibration.html" target="_self">InternalCalibration</a></td><td class="desc">A simple calibration method using linear interpolation of given reference masses </td></tr>
<tr id="row_121_37_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IonizationSimulation.html" target="_self">IonizationSimulation</a></td><td class="desc">Simulates Protein ionization </td></tr>
<tr id="row_121_38_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsobaricChannelExtractor.html" target="_self">IsobaricChannelExtractor</a></td><td class="desc">Extracts individual channels from MS/MS spectra for isobaric labeling experiments </td></tr>
<tr id="row_121_39_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsobaricQuantifier.html" target="_self">IsobaricQuantifier</a></td><td class="desc">Given the extracted channel intensities the <a class="el" href="classOpenMS_1_1IsobaricQuantifier.html" title="Given the extracted channel intensities the IsobaricQuantifier corrects and normalizes the intensitie...">IsobaricQuantifier</a> corrects and normalizes the intensities for further processing </td></tr>
<tr id="row_121_40_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_40_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_40_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsobaricQuantitationMethod.html" target="_self">IsobaricQuantitationMethod</a></td><td class="desc">Abstract base class describing an isobaric quantitation method in terms of the used channels and an isotope correction matrix </td></tr>
<tr id="row_121_40_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ItraqEightPlexQuantitationMethod.html" target="_self">ItraqEightPlexQuantitationMethod</a></td><td class="desc">ITRAQ 8 plex quantitation to be used with the IsobaricQuantitation </td></tr>
<tr id="row_121_40_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ItraqFourPlexQuantitationMethod.html" target="_self">ItraqFourPlexQuantitationMethod</a></td><td class="desc">ITRAQ 4 plex quantitation to be used with the IsobaricQuantitation </td></tr>
<tr id="row_121_40_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TMTSixPlexQuantitationMethod.html" target="_self">TMTSixPlexQuantitationMethod</a></td><td class="desc">TMT 6plex quantitation to be used with the IsobaricQuantitation </td></tr>
<tr id="row_121_41_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ItraqChannelExtractor.html" target="_self">ItraqChannelExtractor</a></td><td class="desc">[experimental class] extracts the iTRAQ channels from tandem MS data and stores intensity values in a consensus map </td></tr>
<tr id="row_121_42_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ItraqQuantifier.html" target="_self">ItraqQuantifier</a></td><td class="desc">Does post-processing on raw iTRAQ channel quantitation </td></tr>
<tr id="row_121_43_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_43_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_43_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LinearResampler.html" target="_self">LinearResampler</a></td><td class="desc">Linear Resampling of raw data </td></tr>
<tr id="row_121_43_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LinearResamplerAlign.html" target="_self">LinearResamplerAlign</a></td><td class="desc">Linear Resampling of raw data with alignment </td></tr>
<tr id="row_121_44_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LowessSmoothing.html" target="_self">LowessSmoothing</a></td><td class="desc">LOWESS (locally weighted scatterplot smoothing) </td></tr>
<tr id="row_121_45_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_45_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_45_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MapAlignmentAlgorithm.html" target="_self">MapAlignmentAlgorithm</a></td><td class="desc">Base class for all map-alignment algorithms </td></tr>
<tr id="row_121_45_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MapAlignmentAlgorithmIdentification.html" target="_self">MapAlignmentAlgorithmIdentification</a></td><td class="desc">A map alignment algorithm based on peptide identifications from MS2 spectra </td></tr>
<tr id="row_121_45_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MapAlignmentAlgorithmPoseClustering.html" target="_self">MapAlignmentAlgorithmPoseClustering</a></td><td class="desc">A map alignment algorithm based on pose clustering </td></tr>
<tr id="row_121_45_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MapAlignmentAlgorithmSpectrumAlignment.html" target="_self">MapAlignmentAlgorithmSpectrumAlignment</a></td><td class="desc">A map alignment algorithm based on spectrum similarity (dynamic programming) </td></tr>
<tr id="row_121_46_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MarkerMower.html" target="_self">MarkerMower</a></td><td class="desc"><a class="el" href="classOpenMS_1_1MarkerMower.html" title="MarkerMower uses PeakMarker to find peaks, those that are not marked get removed. ...">MarkerMower</a> uses <a class="el" href="classOpenMS_1_1PeakMarker.html" title="PeakMarker marks peaks that seem to fulfill some criterion. ">PeakMarker</a> to find peaks, those that are not marked get removed </td></tr>
<tr id="row_121_47_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MascotGenericFile.html" target="_self">MascotGenericFile</a></td><td class="desc">Mascot input file adapter </td></tr>
<tr id="row_121_48_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MascotRemoteQuery.html" target="_self">MascotRemoteQuery</a></td><td class="desc">Class which handles the communication between <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> and the Mascot server </td></tr>
<tr id="row_121_49_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MassDecompositionAlgorithm.html" target="_self">MassDecompositionAlgorithm</a></td><td class="desc">Mass decomposition algorithm, given a mass it suggests possible compositions </td></tr>
<tr id="row_121_50_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MassTraceDetection.html" target="_self">MassTraceDetection</a></td><td class="desc">A mass trace extraction method that gathers peaks similar in m/z and moving along retention time </td></tr>
<tr id="row_121_51_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1PosteriorErrorProbabilityModel.html" target="_self">PosteriorErrorProbabilityModel</a></td><td class="desc">Implements a mixture model of the inverse gumbel and the gauss distribution or a gaussian mixture </td></tr>
<tr id="row_121_52_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MorphologicalFilter.html" target="_self">MorphologicalFilter</a></td><td class="desc">This class implements baseline filtering operations using methods from mathematical morphology </td></tr>
<tr id="row_121_53_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MRMFeatureFinderScoring.html" target="_self">MRMFeatureFinderScoring</a></td><td class="desc">The MRMFeatureFinder finds and scores peaks of transitions that coelute </td></tr>
<tr id="row_121_54_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MRMFragmentSelection.html" target="_self">MRMFragmentSelection</a></td><td class="desc">This class can select appropriate fragment ions of an MS/MS spectrum of a peptide </td></tr>
<tr id="row_121_55_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MRMTransitionGroupPicker.html" target="_self">MRMTransitionGroupPicker</a></td><td class="desc">The <a class="el" href="classOpenMS_1_1MRMTransitionGroupPicker.html" title="The MRMTransitionGroupPicker finds peaks in chromatograms that belong to the same precursors...">MRMTransitionGroupPicker</a> finds peaks in chromatograms that belong to the same precursors </td></tr>
<tr id="row_121_56_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSPFile.html" target="_self">MSPFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MSP files (NIST spectra library) </td></tr>
<tr id="row_121_57_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSim.html" target="_self">MSSim</a></td><td class="desc">Central class for simulation of mass spectrometry experiments </td></tr>
<tr id="row_121_58_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1NLargest.html" target="_self">NLargest</a></td><td class="desc"><a class="el" href="classOpenMS_1_1NLargest.html" title="NLargest removes all but the n largest peaks. ">NLargest</a> removes all but the n largest peaks </td></tr>
<tr id="row_121_59_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Normalizer.html" target="_self">Normalizer</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Normalizer.html" title="Normalizer normalizes the peak intensities. ">Normalizer</a> normalizes the peak intensities </td></tr>
<tr id="row_121_60_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html" target="_self">OfflinePrecursorIonSelection</a></td><td class="desc">Implements different algorithms for precursor ion selection </td></tr>
<tr id="row_121_61_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1OptimizePeakDeconvolution.html" target="_self">OptimizePeakDeconvolution</a></td><td class="desc">This class provides the deconvolution of peak regions using non-linear optimization </td></tr>
<tr id="row_121_62_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ParentPeakMower.html" target="_self">ParentPeakMower</a></td><td class="desc"><a class="el" href="classOpenMS_1_1ParentPeakMower.html" title="ParentPeakMower gets rid of high peaks that could stem from unfragmented precursor ions...">ParentPeakMower</a> gets rid of high peaks that could stem from unfragmented precursor ions </td></tr>
<tr id="row_121_63_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_63_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_63_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakMarker.html" target="_self">PeakMarker</a></td><td class="desc"><a class="el" href="classOpenMS_1_1PeakMarker.html" title="PeakMarker marks peaks that seem to fulfill some criterion. ">PeakMarker</a> marks peaks that seem to fulfill some criterion </td></tr>
<tr id="row_121_63_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ComplementMarker.html" target="_self">ComplementMarker</a></td><td class="desc"><a class="el" href="classOpenMS_1_1ComplementMarker.html" title="ComplementMarker marks peak pairs which could represent y - b ion pairs. ">ComplementMarker</a> marks peak pairs which could represent y - b ion pairs </td></tr>
<tr id="row_121_63_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeMarker.html" target="_self">IsotopeMarker</a></td><td class="desc"><a class="el" href="classOpenMS_1_1IsotopeMarker.html" title="IsotopeMarker marks peak pairs which could represent an ion and its isotope. ">IsotopeMarker</a> marks peak pairs which could represent an ion and its isotope </td></tr>
<tr id="row_121_63_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1NeutralLossMarker.html" target="_self">NeutralLossMarker</a></td><td class="desc"><a class="el" href="classOpenMS_1_1NeutralLossMarker.html" title="NeutralLossMarker marks peak pairs which could represent an ion an its neutral loss (water...">NeutralLossMarker</a> marks peak pairs which could represent an ion an its neutral loss (water, ammonia) </td></tr>
<tr id="row_121_64_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakPickerCWT.html" target="_self">PeakPickerCWT</a></td><td class="desc">This class implements a peak picking algorithm using wavelet techniques </td></tr>
<tr id="row_121_65_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakPickerHiRes.html" target="_self">PeakPickerHiRes</a></td><td class="desc">This class implements a fast peak-picking algorithm best suited for high resolution MS data (FT-ICR-MS, Orbitrap). In high resolution data, the signals of ions with similar mass-to-charge ratios (m/z) exhibit little or no overlapping and therefore allow for a clear separation. Furthermore, ion signals tend to show well-defined peak shapes with narrow peak width </td></tr>
<tr id="row_121_66_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakPickerSH.html" target="_self">PeakPickerSH</a></td><td class="desc"></td></tr>
<tr id="row_121_67_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_67_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_67_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakSpectrumCompareFunctor.html" target="_self">PeakSpectrumCompareFunctor</a></td><td class="desc">Base class for compare functors of spectra, that return a similiarity value for two spectra </td></tr>
<tr id="row_121_67_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompareFouriertransform.html" target="_self">CompareFouriertransform</a></td><td class="desc">Compare Discrete Cosines value from a Fourier transformation, also known as Discrete Cosines Transformation </td></tr>
<tr id="row_121_67_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakAlignment.html" target="_self">PeakAlignment</a></td><td class="desc">Make a <a class="el" href="classOpenMS_1_1PeakAlignment.html" title="make a PeakAlignment of two PeakSpectra ">PeakAlignment</a> of two PeakSpectra </td></tr>
<tr id="row_121_67_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectraSTSimilarityScore.html" target="_self">SpectraSTSimilarityScore</a></td><td class="desc">Similarity score of SpectraST </td></tr>
<tr id="row_121_67_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumAlignmentScore.html" target="_self">SpectrumAlignmentScore</a></td><td class="desc">Similarity score via spectra alignment </td></tr>
<tr id="row_121_67_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumCheapDPCorr.html" target="_self">SpectrumCheapDPCorr</a></td><td class="desc"><a class="el" href="classOpenMS_1_1SpectrumCheapDPCorr.html" title="SpectrumCheapDPCorr calculates an optimal alignment on stick spectra. ">SpectrumCheapDPCorr</a> calculates an optimal alignment on stick spectra </td></tr>
<tr id="row_121_67_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumPrecursorComparator.html" target="_self">SpectrumPrecursorComparator</a></td><td class="desc"><a class="el" href="classOpenMS_1_1SpectrumPrecursorComparator.html" title="SpectrumPrecursorComparator compares just the parent mass of two spectra. ">SpectrumPrecursorComparator</a> compares just the parent mass of two spectra </td></tr>
<tr id="row_121_67_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SteinScottImproveScore.html" target="_self">SteinScottImproveScore</a></td><td class="desc">Similarity score based of Stein & Scott </td></tr>
<tr id="row_121_67_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ZhangSimilarityScore.html" target="_self">ZhangSimilarityScore</a></td><td class="desc">Similarity score of Zhang </td></tr>
<tr id="row_121_68_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeptideAndProteinQuant.html" target="_self">PeptideAndProteinQuant</a></td><td class="desc">Helper class for peptide and protein quantification based on feature data annotated with IDs </td></tr>
<tr id="row_121_69_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PILISCrossValidation.html" target="_self">PILISCrossValidation</a></td><td class="desc">Implementation of a cross valdidation training for the PILIS model </td></tr>
<tr id="row_121_70_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PILISIdentification.html" target="_self">PILISIdentification</a></td><td class="desc">This class actually implements a complete <a class="el" href="classOpenMS_1_1ProteinIdentification.html" title="Representation of a protein identification run. ">ProteinIdentification</a> run with PILIS </td></tr>
<tr id="row_121_71_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PILISModel.html" target="_self">PILISModel</a></td><td class="desc">This class implements the simulation of the spectra from PILIS </td></tr>
<tr id="row_121_72_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PILISModelGenerator.html" target="_self">PILISModelGenerator</a></td><td class="desc">This class implements the simulation of the spectra from PILIS </td></tr>
<tr id="row_121_73_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PILISNeutralLossModel.html" target="_self">PILISNeutralLossModel</a></td><td class="desc">This class implements the simulation of the spectra from PILIS </td></tr>
<tr id="row_121_74_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PILISScoring.html" target="_self">PILISScoring</a></td><td class="desc">This class actually implements the E-value based scoring of PILIS </td></tr>
<tr id="row_121_75_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PrecursorIonSelection.html" target="_self">PrecursorIonSelection</a></td><td class="desc">This class implements different precursor ion selection strategies </td></tr>
<tr id="row_121_76_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PrecursorIonSelectionPreprocessing.html" target="_self">PrecursorIonSelectionPreprocessing</a></td><td class="desc">This class implements the database preprocessing needing for precursor ion selection </td></tr>
<tr id="row_121_77_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProteinResolver.html" target="_self">ProteinResolver</a></td><td class="desc">Helper class for peptide and protein quantification based on feature data annotated with IDs </td></tr>
<tr id="row_121_78_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProtonDistributionModel.html" target="_self">ProtonDistributionModel</a></td><td class="desc">A proton distribution model to calculate the proton distribution over charged peptides </td></tr>
<tr id="row_121_79_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PSLPFormulation.html" target="_self">PSLPFormulation</a></td><td class="desc">Implements ILP formulation of precursor selection problems </td></tr>
<tr id="row_121_80_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1QuantitativeExperimentalDesign.html" target="_self">QuantitativeExperimentalDesign</a></td><td class="desc">Merge files according to experimental design </td></tr>
<tr id="row_121_81_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RawMSSignalSimulation.html" target="_self">RawMSSignalSimulation</a></td><td class="desc">Simulates MS signals for a given set of peptides </td></tr>
<tr id="row_121_82_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RawTandemMSSignalSimulation.html" target="_self">RawTandemMSSignalSimulation</a></td><td class="desc">Simulates tandem MS signales for a given set of peptides </td></tr>
<tr id="row_121_83_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RTSimulation.html" target="_self">RTSimulation</a></td><td class="desc">Simulates/Predicts retention times for peptides or peptide separation </td></tr>
<tr id="row_121_84_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SavitzkyGolayFilter.html" target="_self">SavitzkyGolayFilter</a></td><td class="desc">Computes the Savitzky-Golay filter coefficients using QR decomposition </td></tr>
<tr id="row_121_85_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Scaler.html" target="_self">Scaler</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Scaler.html" title="Scaler scales the peak by ranking the peaks and assigning intensity according to rank. ">Scaler</a> scales the peak by ranking the peaks and assigning intensity according to rank </td></tr>
<tr id="row_121_86_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_86_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_86_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SignalToNoiseEstimator.html" target="_self">SignalToNoiseEstimator< Container ></a></td><td class="desc">This class represents the abstract base class of a signal to noise estimator </td></tr>
<tr id="row_121_86_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SignalToNoiseEstimatorMeanIterative.html" target="_self">SignalToNoiseEstimatorMeanIterative< Container ></a></td><td class="desc">Estimates the signal/noise (S/N) ratio of each data point in a scan based on an iterative scheme which discards high intensities </td></tr>
<tr id="row_121_86_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SignalToNoiseEstimatorMedian.html" target="_self">SignalToNoiseEstimatorMedian< Container ></a></td><td class="desc">Estimates the signal/noise (S/N) ratio of each data point in a scan by using the median (histogram based) </td></tr>
<tr id="row_121_87_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectraIdentificationViewWidget.html" target="_self">SpectraIdentificationViewWidget</a></td><td class="desc">Tabular visualization / selection of identified specra </td></tr>
<tr id="row_121_88_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectraMerger.html" target="_self">SpectraMerger</a></td><td class="desc">Merges blocks of MS or MS2 spectra </td></tr>
<tr id="row_121_89_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectraMerger_1_1SpectraDistance__.html" target="_self">SpectraMerger::SpectraDistance_</a></td><td class="desc"></td></tr>
<tr id="row_121_90_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumAlignment.html" target="_self">SpectrumAlignment</a></td><td class="desc">Aligns the peaks of two spectra </td></tr>
<tr id="row_121_91_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_91_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_91_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumCanvas.html" target="_self">SpectrumCanvas</a></td><td class="desc">Base class for visualization canvas classes </td></tr>
<tr id="row_121_91_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum1DCanvas.html" target="_self">Spectrum1DCanvas</a></td><td class="desc">Canvas for visualization of one or several spectra </td></tr>
<tr id="row_121_91_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum2DCanvas.html" target="_self">Spectrum2DCanvas</a></td><td class="desc">Canvas for 2D-visualization of peak map, feature map and consensus map data </td></tr>
<tr id="row_121_91_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum3DCanvas.html" target="_self">Spectrum3DCanvas</a></td><td class="desc">Canvas for 3D-visualization of peak map data </td></tr>
<tr id="row_121_92_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SqrtMower.html" target="_self">SqrtMower</a></td><td class="desc">Scales the intensity of peaks to the sqrt </td></tr>
<tr id="row_121_93_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SvmTheoreticalSpectrumGenerator.html" target="_self">SvmTheoreticalSpectrumGenerator</a></td><td class="desc">Simulates ms2 spectra with support vector machines </td></tr>
<tr id="row_121_94_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SvmTheoreticalSpectrumGeneratorTrainer.html" target="_self">SvmTheoreticalSpectrumGeneratorTrainer</a></td><td class="desc">Train SVM models that are used by <a class="el" href="classOpenMS_1_1SvmTheoreticalSpectrumGenerator.html" title="Simulates ms2 spectra with support vector machines. ">SvmTheoreticalSpectrumGenerator</a> </td></tr>
<tr id="row_121_95_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TheoreticalSpectrumGenerator.html" target="_self">TheoreticalSpectrumGenerator</a></td><td class="desc">Generates theoretical spectra with various options </td></tr>
<tr id="row_121_96_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ThresholdMower.html" target="_self">ThresholdMower</a></td><td class="desc"><a class="el" href="classOpenMS_1_1ThresholdMower.html" title="ThresholdMower removes all peaks below a threshold. ">ThresholdMower</a> removes all peaks below a threshold </td></tr>
<tr id="row_121_97_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOFCalibration.html" target="_self">TOFCalibration</a></td><td class="desc">This class implements an external calibration for TOF data using external calibrant spectra </td></tr>
<tr id="row_121_98_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASBase.html" target="_self">TOPPASBase</a></td><td class="desc">Main window of the TOPPAS tool </td></tr>
<tr id="row_121_99_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPViewBase.html" target="_self">TOPPViewBase</a></td><td class="desc">Main window of TOPPView tool </td></tr>
<tr id="row_121_100_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_100_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('121_100_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TraceFitter.html" target="_self">TraceFitter< PeakType ></a></td><td class="desc">Abstract fitter for RT profile fitting </td></tr>
<tr id="row_121_100_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EGHTraceFitter.html" target="_self">EGHTraceFitter< PeakType ></a></td><td class="desc">A RT Profile fitter using an Exponential Gaussian Hybrid background model </td></tr>
<tr id="row_121_100_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GaussTraceFitter.html" target="_self">GaussTraceFitter< PeakType ></a></td><td class="desc">Fitter for RT profiles using a gaussian background model </td></tr>
<tr id="row_121_101_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TwoDOptimization.html" target="_self">TwoDOptimization</a></td><td class="desc">This class provides the two-dimensional optimization of the picked peak parameters </td></tr>
<tr id="row_121_102_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1WindowMower.html" target="_self">WindowMower</a></td><td class="desc"><a class="el" href="classOpenMS_1_1WindowMower.html" title="WindowMower augments the highest peaks in a sliding or jumping window. ">WindowMower</a> augments the highest peaks in a sliding or jumping window </td></tr>
<tr id="row_121_103_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_121_103_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('121_103_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SignalToNoiseEstimator.html" target="_self">SignalToNoiseEstimator< OpenMS::OpenMS::MSSpectrum< PeakT > ></a></td><td class="desc"></td></tr>
<tr id="row_121_103_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SignalToNoiseEstimatorMedian.html" target="_self">SignalToNoiseEstimatorMedian< OpenMS::OpenMS::MSSpectrum< PeakT > ></a></td><td class="desc"></td></tr>
<tr id="row_122_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Deisotoper.html" target="_self">Deisotoper</a></td><td class="desc"></td></tr>
<tr id="row_123_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1SvmTheoreticalSpectrumGenerator_1_1DescriptorSet.html" target="_self">SvmTheoreticalSpectrumGenerator::DescriptorSet</a></td><td class="desc">A set of descriptors for a single training row </td></tr>
<tr id="row_124_" class="even"><td class="entry"><img id="arr_124_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('124_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1DIntervalBase.html" target="_self">DIntervalBase< D ></a></td><td class="desc">A base class for D-dimensional interval </td></tr>
<tr id="row_124_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DBoundingBox.html" target="_self">DBoundingBox< 1 ></a></td><td class="desc"></td></tr>
<tr id="row_124_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DRange.html" target="_self">DRange< 1 ></a></td><td class="desc"></td></tr>
<tr id="row_124_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DRange.html" target="_self">DRange< 2 ></a></td><td class="desc"></td></tr>
<tr id="row_124_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DRange.html" target="_self">DRange< 3 ></a></td><td class="desc"></td></tr>
<tr id="row_124_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DBoundingBox.html" target="_self">DBoundingBox< D ></a></td><td class="desc">A D-dimensional bounding box </td></tr>
<tr id="row_124_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DRange.html" target="_self">DRange< D ></a></td><td class="desc">A D-dimensional half-open interval </td></tr>
<tr id="row_125_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DistanceMatrix.html" target="_self">DistanceMatrix< Value ></a></td><td class="desc">A two-dimensional distance matrix, similar to <a class="el" href="classOpenMS_1_1Matrix.html" title="A two-dimensional matrix. Similar to std::vector, but uses a binary operator(,) for element access...">OpenMS::Matrix</a> </td></tr>
<tr id="row_126_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FeatureDistance_1_1DistanceParams__.html" target="_self">FeatureDistance::DistanceParams_</a></td><td class="desc">Structure for storing distance parameters </td></tr>
<tr id="row_127_"><td class="entry"><img id="arr_127_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('127_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DocumentIdentifier.html" target="_self">DocumentIdentifier</a></td><td class="desc">Manage source document information </td></tr>
<tr id="row_127_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap< OpenMS::Feature ></a></td><td class="desc"></td></tr>
<tr id="row_127_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap<></a></td><td class="desc"></td></tr>
<tr id="row_127_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusMap.html" target="_self">ConsensusMap</a></td><td class="desc">A container for consensus elements </td></tr>
<tr id="row_127_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_127_3_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('127_3_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ExperimentalSettings.html" target="_self">ExperimentalSettings</a></td><td class="desc">Description of the experimental settings </td></tr>
<tr id="row_127_3_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< OpenMS::Peak1D ></a></td><td class="desc"></td></tr>
<tr id="row_127_3_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< Peak1D ></a></td><td class="desc"></td></tr>
<tr id="row_127_3_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< SimPointType ></a></td><td class="desc"></td></tr>
<tr id="row_127_3_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< PeakT, ChromatogramPeakT ></a></td><td class="desc">Representation of a mass spectrometry experiment </td></tr>
<tr id="row_127_3_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSQuantifications.html" target="_self">MSQuantifications</a></td><td class="desc"></td></tr>
<tr id="row_127_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap< FeatureT ></a></td><td class="desc">A container for features </td></tr>
<tr id="row_128_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DocumentIDTagger.html" target="_self">DocumentIDTagger</a></td><td class="desc">Tags <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> file containers with a DocumentID </td></tr>
<tr id="row_129_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1DPeak.html" target="_self">DPeak< dimensions ></a></td><td class="desc">Metafunction to choose among <a class="el" href="classOpenMS_1_1Peak1D.html" title="A 1-dimensional raw data point or peak. ">Peak1D</a> respectively <a class="el" href="classOpenMS_1_1Peak2D.html" title="A 2-dimensional raw data point or peak. ">Peak2D</a> through a template argument </td></tr>
<tr id="row_130_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DPosition.html" target="_self">DPosition< D, TCoordinateType ></a></td><td class="desc">Representation of a coordinate in D-dimensional space </td></tr>
<tr id="row_131_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DPosition.html" target="_self">DPosition< 1 ></a></td><td class="desc"></td></tr>
<tr id="row_132_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DPosition.html" target="_self">DPosition< 2 ></a></td><td class="desc"></td></tr>
<tr id="row_133_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DPosition.html" target="_self">DPosition< 2, Int64 ></a></td><td class="desc"></td></tr>
<tr id="row_134_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DPosition.html" target="_self">DPosition< D ></a></td><td class="desc"></td></tr>
<tr id="row_135_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DPosition.html" target="_self">DPosition< DIMENSION ></a></td><td class="desc"></td></tr>
<tr id="row_136_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1DRichPeak.html" target="_self">DRichPeak< dimensions ></a></td><td class="desc">Metafunction to choose among <a class="el" href="classOpenMS_1_1RichPeak1D.html" title="A 1-dimensional raw data point or peak mith meta information. ">RichPeak1D</a> respectively <a class="el" href="classOpenMS_1_1RichPeak2D.html" title="A 2-dimensional raw data point or peak with meta information. ">RichPeak2D</a> through a template argument </td></tr>
<tr id="row_137_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DTAFile.html" target="_self">DTAFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for DTA files </td></tr>
<tr id="row_138_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EDTAFile.html" target="_self">EDTAFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for Enhanced DTA files </td></tr>
<tr id="row_139_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Element.html" target="_self">Element</a></td><td class="desc">Representation of an element </td></tr>
<tr id="row_140_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ElementDB.html" target="_self">ElementDB</a></td><td class="desc">Stores elements </td></tr>
<tr id="row_141_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EmgScoring.html" target="_self">EmgScoring</a></td><td class="desc">Scoring of an elution peak using an exponentially modified gaussian distribution model </td></tr>
<tr id="row_142_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EmpiricalFormula.html" target="_self">EmpiricalFormula</a></td><td class="desc">Representation of an empirical formula </td></tr>
<tr id="row_143_"><td class="entry"><img id="arr_143_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('143_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EnhancedTabBarWidgetInterface.html" target="_self">EnhancedTabBarWidgetInterface</a></td><td class="desc">Widgets that are placed into an <a class="el" href="classOpenMS_1_1EnhancedTabBar.html" title="Convenience tab bar implementation. ">EnhancedTabBar</a> must implement this interface </td></tr>
<tr id="row_143_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_143_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('143_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumWidget.html" target="_self">SpectrumWidget</a></td><td class="desc">Base class for spectrum widgets </td></tr>
<tr id="row_143_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum1DWidget.html" target="_self">Spectrum1DWidget</a></td><td class="desc">Widget for visualization of several spectra </td></tr>
<tr id="row_143_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum2DWidget.html" target="_self">Spectrum2DWidget</a></td><td class="desc">Widget for 2D-visualization of peak map and feature map data </td></tr>
<tr id="row_143_0_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum3DWidget.html" target="_self">Spectrum3DWidget</a></td><td class="desc">Widget for 3D-visualization of map data </td></tr>
<tr id="row_143_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASWidget.html" target="_self">TOPPASWidget</a></td><td class="desc">Widget visualizing and allowing to edit TOPP pipelines </td></tr>
<tr id="row_144_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EnzymaticDigestion.html" target="_self">EnzymaticDigestion</a></td><td class="desc">Class for the enzymatic digestion of proteins </td></tr>
<tr id="row_145_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structseqan_1_1EquivalenceClassAA__.html" target="_self">EquivalenceClassAA_< T ></a></td><td class="desc"></td></tr>
<tr id="row_146_" class="even"><td class="entry"><img id="arr_146_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('146_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>ErrorHandler</b></td><td class="desc"></td></tr>
<tr id="row_146_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1XMLValidator.html" target="_self">XMLValidator</a></td><td class="desc">Validator for XML files </td></tr>
<tr id="row_147_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EuclideanSimilarity.html" target="_self">EuclideanSimilarity</a></td><td class="desc">CompareFunctor for 2Dpoints </td></tr>
<tr id="row_148_" class="even"><td class="entry"><img id="arr_148_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('148_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>exception</b></td><td class="desc">STL class </td></tr>
<tr id="row_148_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_148_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('148_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1BaseException.html" target="_self">BaseException</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> base class </td></tr>
<tr id="row_148_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BinnedSpectrum_1_1NoSpectrumIntegrated.html" target="_self">BinnedSpectrum::NoSpectrumIntegrated</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> which is thrown if <a class="el" href="classOpenMS_1_1BinnedSpectrum.html" title="This is a binned representation of a PeakSpectrum. ">BinnedSpectrum</a> bins are accessed and no PeakSpektrum has been integrated yet i.e. bins_ is empty </td></tr>
<tr id="row_148_0_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BinnedSpectrumCompareFunctor_1_1IncompatibleBinning.html" target="_self">BinnedSpectrumCompareFunctor::IncompatibleBinning</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> thrown if compared spectra are incompatible </td></tr>
<tr id="row_148_0_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ClusterFunctor_1_1InsufficientInput.html" target="_self">ClusterFunctor::InsufficientInput</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> thrown if not enough data (<2) is used </td></tr>
<tr id="row_148_0_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DBConnection_1_1InvalidQuery.html" target="_self">DBConnection::InvalidQuery</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> in case of an invalid Query </td></tr>
<tr id="row_148_0_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DBConnection_1_1NotConnected.html" target="_self">DBConnection::NotConnected</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> in case of trying to execute a query without having established a database connection </td></tr>
<tr id="row_148_0_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1BufferOverflow.html" target="_self">BufferOverflow</a></td><td class="desc">Buffer overflow exception </td></tr>
<tr id="row_148_0_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1ConversionError.html" target="_self">ConversionError</a></td><td class="desc">Invalid conversion exception </td></tr>
<tr id="row_148_0_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1DepletedIDPool.html" target="_self">DepletedIDPool</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> used if no more unique document ID's can be drawn from ID pool </td></tr>
<tr id="row_148_0_8_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1DivisionByZero.html" target="_self">DivisionByZero</a></td><td class="desc">Division by zero error exception </td></tr>
<tr id="row_148_0_9_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1ElementNotFound.html" target="_self">ElementNotFound</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Element.html" title="Representation of an element. ">Element</a> could not be found exception </td></tr>
<tr id="row_148_0_10_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1FailedAPICall.html" target="_self">FailedAPICall</a></td><td class="desc">A call to an external library (other than <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a>) went wrong </td></tr>
<tr id="row_148_0_11_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1FileEmpty.html" target="_self">FileEmpty</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> is empty </td></tr>
<tr id="row_148_0_12_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1FileNotFound.html" target="_self">FileNotFound</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> not found exception </td></tr>
<tr id="row_148_0_13_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1FileNotReadable.html" target="_self">FileNotReadable</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> not readable exception </td></tr>
<tr id="row_148_0_14_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1FileNotWritable.html" target="_self">FileNotWritable</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> not writable exception </td></tr>
<tr id="row_148_0_15_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1IllegalArgument.html" target="_self">IllegalArgument</a></td><td class="desc">A method or algorithm argument contains illegal values </td></tr>
<tr id="row_148_0_16_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1IllegalPosition.html" target="_self">IllegalPosition</a></td><td class="desc">Invalid 3-dimensional position exception </td></tr>
<tr id="row_148_0_17_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1IllegalSelfOperation.html" target="_self">IllegalSelfOperation</a></td><td class="desc">Illegal self operation exception </td></tr>
<tr id="row_148_0_18_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1IllegalTreeOperation.html" target="_self">IllegalTreeOperation</a></td><td class="desc">Illegal tree operation exception </td></tr>
<tr id="row_148_0_19_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1IncompatibleIterators.html" target="_self">IncompatibleIterators</a></td><td class="desc">Incompatible iterator exception </td></tr>
<tr id="row_148_0_20_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1IndexOverflow.html" target="_self">IndexOverflow</a></td><td class="desc">Int overflow exception </td></tr>
<tr id="row_148_0_21_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1IndexUnderflow.html" target="_self">IndexUnderflow</a></td><td class="desc">Int underflow exception </td></tr>
<tr id="row_148_0_22_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1InvalidIterator.html" target="_self">InvalidIterator</a></td><td class="desc">Invalid iterator exception </td></tr>
<tr id="row_148_0_23_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1InvalidParameter.html" target="_self">InvalidParameter</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> indicating that an invalid parameter was handed over to an algorithm </td></tr>
<tr id="row_148_0_24_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1InvalidRange.html" target="_self">InvalidRange</a></td><td class="desc">Invalid range exception </td></tr>
<tr id="row_148_0_25_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1InvalidSize.html" target="_self">InvalidSize</a></td><td class="desc">Invalid UInt exception </td></tr>
<tr id="row_148_0_26_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1InvalidValue.html" target="_self">InvalidValue</a></td><td class="desc">Invalid value exception </td></tr>
<tr id="row_148_0_27_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1IOException.html" target="_self">IOException</a></td><td class="desc">General <a class="el" href="classOpenMS_1_1Exception_1_1IOException.html" title="General IOException. ">IOException</a> </td></tr>
<tr id="row_148_0_28_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1MissingInformation.html" target="_self">MissingInformation</a></td><td class="desc">Not all required information provided </td></tr>
<tr id="row_148_0_29_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1NotImplemented.html" target="_self">NotImplemented</a></td><td class="desc">Not implemented exception </td></tr>
<tr id="row_148_0_30_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1NullPointer.html" target="_self">NullPointer</a></td><td class="desc">Null pointer argument is invalid exception </td></tr>
<tr id="row_148_0_31_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1OutOfGrid.html" target="_self">OutOfGrid</a></td><td class="desc">Out of grid exception </td></tr>
<tr id="row_148_0_32_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1OutOfMemory.html" target="_self">OutOfMemory</a></td><td class="desc">Out of memory exception </td></tr>
<tr id="row_148_0_33_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1OutOfRange.html" target="_self">OutOfRange</a></td><td class="desc">Out of range exception </td></tr>
<tr id="row_148_0_34_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1ParseError.html" target="_self">ParseError</a></td><td class="desc">Parse Error exception </td></tr>
<tr id="row_148_0_35_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1Postcondition.html" target="_self">Postcondition</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Exception_1_1Postcondition.html" title="Postcondition failed exception. ">Postcondition</a> failed exception </td></tr>
<tr id="row_148_0_36_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1Precondition.html" target="_self">Precondition</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Exception_1_1Precondition.html" title="Precondition failed exception. ">Precondition</a> failed exception </td></tr>
<tr id="row_148_0_37_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1RequiredParameterNotGiven.html" target="_self">RequiredParameterNotGiven</a></td><td class="desc">A required parameter was not given </td></tr>
<tr id="row_148_0_38_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1SizeUnderflow.html" target="_self">SizeUnderflow</a></td><td class="desc">UInt underflow exception </td></tr>
<tr id="row_148_0_39_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1UnableToCalibrate.html" target="_self">UnableToCalibrate</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> used if an error occurred while calibrating a dataset </td></tr>
<tr id="row_148_0_40_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1UnableToCreateFile.html" target="_self">UnableToCreateFile</a></td><td class="desc">Unable to create file exception </td></tr>
<tr id="row_148_0_41_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1UnableToFit.html" target="_self">UnableToFit</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> used if an error occurred while fitting a model to a given dataset </td></tr>
<tr id="row_148_0_42_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1UnregisteredParameter.html" target="_self">UnregisteredParameter</a></td><td class="desc">An unregistered parameter was accessed </td></tr>
<tr id="row_148_0_43_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1WrongParameterType.html" target="_self">WrongParameterType</a></td><td class="desc">A parameter was accessed with the wrong type </td></tr>
<tr id="row_148_0_44_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderDefs_1_1NoSuccessor.html" target="_self">FeatureFinderDefs::NoSuccessor</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> that is thrown if a method an invalid IndexPair is given </td></tr>
<tr id="row_148_0_45_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1XMLHandler_1_1EndParsingSoftly.html" target="_self">XMLHandler::EndParsingSoftly</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> that is thrown if the parsing is ended by some event (e.g. if only a prefix of the XML file is needed) </td></tr>
<tr id="row_148_0_46_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map_1_1IllegalKey.html" target="_self">Map< Key, T >::IllegalKey</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Map.html" title="Map class based on the STL map (containing serveral convenience functions) ">Map</a> illegal key exception </td></tr>
<tr id="row_148_0_47_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1UnnormalizedComparator.html" target="_self">UnnormalizedComparator</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Exception.html" title="Exception namespace ">Exception</a> thrown if clustering is attempted without a normalized compare functor </td></tr>
<tr id="row_148_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_148_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('148_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>bad_alloc</b></td><td class="desc">STL class </td></tr>
<tr id="row_148_1_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1OutOfMemory.html" target="_self">OutOfMemory</a></td><td class="desc">Out of memory exception </td></tr>
<tr id="row_149_"><td class="entry"><img id="arr_149_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FactoryBase.html" target="_self">FactoryBase</a></td><td class="desc">Base class for Factory<T> </td></tr>
<tr id="row_149_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Factory.html" target="_self">Factory< FactoryProduct ></a></td><td class="desc">Returns FactoryProduct* based on the name of the desired concrete FactoryProduct </td></tr>
<tr id="row_150_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FASTAFile_1_1FASTAEntry.html" target="_self">FASTAFile::FASTAEntry</a></td><td class="desc">FASTA entry type (identifier, description and sequence) </td></tr>
<tr id="row_151_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FASTAFile.html" target="_self">FASTAFile</a></td><td class="desc">This class serves for reading in FASTA files </td></tr>
<tr id="row_152_" class="even"><td class="entry"><img id="arr_152_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('152_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>FeatureEditDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_152_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureEditDialog.html" target="_self">FeatureEditDialog</a></td><td class="desc">Dialog for editing a feature </td></tr>
<tr id="row_153_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFileOptions.html" target="_self">FeatureFileOptions</a></td><td class="desc">Options for loading files containing features </td></tr>
<tr id="row_154_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FeatureFinderAlgorithmPickedHelperStructs.html" target="_self">FeatureFinderAlgorithmPickedHelperStructs</a></td><td class="desc">Wrapper struct for all the classes needed by the <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html" title="FeatureFinderAlgorithm for picked peaks. ">FeatureFinderAlgorithmPicked</a> and the associated classes </td></tr>
<tr id="row_155_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmSHCtrl.html" target="_self">FeatureFinderAlgorithmSHCtrl</a></td><td class="desc"></td></tr>
<tr id="row_156_" class="even"><td class="entry"><img id="arr_156_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('156_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FeatureFinderDefs.html" target="_self">FeatureFinderDefs</a></td><td class="desc">The purpose of this struct is to provide definitions of classes and typedefs which are used throughout all <a class="el" href="classOpenMS_1_1FeatureFinder.html" title="The main feature finder class. ">FeatureFinder</a> classes </td></tr>
<tr id="row_156_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinder.html" target="_self">FeatureFinder</a></td><td class="desc">The main feature finder class </td></tr>
<tr id="row_156_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmMRM.html" target="_self">FeatureFinderAlgorithmMRM< PeakType, FeatureType ></a></td><td class="desc"><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" title="Abstract base class for FeatureFinder algorithms. ">FeatureFinderAlgorithm</a> for MRM experiments </td></tr>
<tr id="row_156_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html" target="_self">FeatureFinderAlgorithmPicked< PeakType, FeatureType ></a></td><td class="desc"><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" title="Abstract base class for FeatureFinder algorithms. ">FeatureFinderAlgorithm</a> for picked peaks </td></tr>
<tr id="row_156_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmSH.html" target="_self">FeatureFinderAlgorithmSH< PeakType, FeatureType ></a></td><td class="desc">The Superhirn <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" title="Abstract base class for FeatureFinder algorithms. ">FeatureFinderAlgorithm</a> </td></tr>
<tr id="row_156_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmSimple.html" target="_self">FeatureFinderAlgorithmSimple< PeakType, FeatureType ></a></td><td class="desc"><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" title="Abstract base class for FeatureFinder algorithms. ">FeatureFinderAlgorithm</a> implementation using the Simple* modules </td></tr>
<tr id="row_156_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmSimplest.html" target="_self">FeatureFinderAlgorithmSimplest< PeakType, FeatureType ></a></td><td class="desc"><a class="el" href="classOpenMS_1_1FeatureFinderAlgorithm.html" title="Abstract base class for FeatureFinder algorithms. ">FeatureFinderAlgorithm</a> implementation using the Simple* modules </td></tr>
<tr id="row_156_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Fitter1D.html" target="_self">Fitter1D</a></td><td class="desc">Abstract base class for all 1D-dimensional model fitter </td></tr>
<tr id="row_156_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ModelFitter.html" target="_self">ModelFitter< PeakType, FeatureType ></a></td><td class="desc">Tests a group of data points in an LC-MS map for goodness-of-fit with a 2D averagine model </td></tr>
<tr id="row_156_8_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SimpleExtender.html" target="_self">SimpleExtender< PeakType, FeatureType ></a></td><td class="desc">Simple feature extension algorithm </td></tr>
<tr id="row_156_9_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SimpleSeeder.html" target="_self">SimpleSeeder< PeakType, FeatureType ></a></td><td class="desc">Simple seeding class that uses the strongest peak as next seed </td></tr>
<tr id="row_157_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureHypothesis.html" target="_self">FeatureHypothesis</a></td><td class="desc"></td></tr>
<tr id="row_158_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureLCProfile.html" target="_self">FeatureLCProfile</a></td><td class="desc"></td></tr>
<tr id="row_159_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="unionOpenMS_1_1IsotopeWavelet_1_1fi__.html" target="_self">IsotopeWavelet::fi_</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Internal.html" title="Namespace used to hide implementation details from users. ">Internal</a> union for fast computation of the power function </td></tr>
<tr id="row_160_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1File.html" target="_self">File</a></td><td class="desc">Basic file handling operations </td></tr>
<tr id="row_161_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FileHandler.html" target="_self">FileHandler</a></td><td class="desc">Facilitates file handling by file type recognition </td></tr>
<tr id="row_162_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1FileMapping.html" target="_self">FileMapping</a></td><td class="desc">Maps input/output files to filenames for the external program </td></tr>
<tr id="row_163_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FileTypes.html" target="_self">FileTypes</a></td><td class="desc">Centralizes the file types recognized by <a class="el" href="classOpenMS_1_1FileHandler.html" title="Facilitates file handling by file type recognition. ">FileHandler</a> </td></tr>
<tr id="row_164_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structseqan_1_1FoundProteinFunctor.html" target="_self">FoundProteinFunctor</a></td><td class="desc"></td></tr>
<tr id="row_165_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FTPeakDetectController.html" target="_self">FTPeakDetectController</a></td><td class="desc"></td></tr>
<tr id="row_166_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FuzzyStringComparator.html" target="_self">FuzzyStringComparator</a></td><td class="desc">Fuzzy comparison of strings, tolerates numeric differences </td></tr>
<tr id="row_167_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Math_1_1GammaDistributionFitter_1_1GammaDistributionFitResult.html" target="_self">GammaDistributionFitter::GammaDistributionFitResult</a></td><td class="desc">Struct to represent the parameters of a gamma distribution </td></tr>
<tr id="row_168_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1GammaDistributionFitter.html" target="_self">GammaDistributionFitter</a></td><td class="desc">Implements a fitter for the Gamma distribution </td></tr>
<tr id="row_169_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GaussFilterAlgorithm.html" target="_self">GaussFilterAlgorithm</a></td><td class="desc">This class represents a Gaussian lowpass-filter which works on uniform as well as on non-uniform profile data </td></tr>
<tr id="row_170_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Math_1_1GaussFitter_1_1GaussFitResult.html" target="_self">GaussFitter::GaussFitResult</a></td><td class="desc">Struct of parameters of a gaussian distribution </td></tr>
<tr id="row_171_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1GaussFitter.html" target="_self">GaussFitter</a></td><td class="desc">Implements a fitter for gaussian functions </td></tr>
<tr id="row_172_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1SignalToNoiseEstimator_1_1GaussianEstimate.html" target="_self">SignalToNoiseEstimator< Container >::GaussianEstimate</a></td><td class="desc">Protected struct to store parameters my, sigma for a Gaussian distribution </td></tr>
<tr id="row_173_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Exception_1_1GlobalExceptionHandler.html" target="_self">GlobalExceptionHandler</a></td><td class="desc"><a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> global exception handler </td></tr>
<tr id="row_174_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structglp__prob.html" target="_self">glp_prob</a></td><td class="desc"></td></tr>
<tr id="row_175_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Gradient.html" target="_self">Gradient</a></td><td class="desc">Representation of a <a class="el" href="classOpenMS_1_1HPLC.html" title="Representation of a HPLC experiment. ">HPLC</a> gradient </td></tr>
<tr id="row_176_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GridFeature.html" target="_self">GridFeature</a></td><td class="desc">Representation of a feature in a hash grid </td></tr>
<tr id="row_177_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Math_1_1GumbelDistributionFitter_1_1GumbelDistributionFitResult.html" target="_self">GumbelDistributionFitter::GumbelDistributionFitResult</a></td><td class="desc">Struct to represent the parameters of a gumbel distribution </td></tr>
<tr id="row_178_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1GumbelDistributionFitter.html" target="_self">GumbelDistributionFitter</a></td><td class="desc">Implements a fitter for the Gumbel distribution </td></tr>
<tr id="row_179_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GzipIfstream.html" target="_self">GzipIfstream</a></td><td class="desc">Decompresses files which are compressed in the gzip format (*.gzip) </td></tr>
<tr id="row_180_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HashGrid.html" target="_self">HashGrid< Cluster ></a></td><td class="desc">Container for (2-dimensional coordinate, value) pairs </td></tr>
<tr id="row_181_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HiddenMarkovModel.html" target="_self">HiddenMarkovModel</a></td><td class="desc">Hidden Markov Model implementation of PILIS </td></tr>
<tr id="row_182_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HierarchicalClustering.html" target="_self">HierarchicalClustering< PointRef ></a></td><td class="desc">Generic 2-dimensional hierarchical clustering with geometric hashing </td></tr>
<tr id="row_183_"><td class="entry"><img id="arr_183_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('183_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HierarchicalClustering.html" target="_self">HierarchicalClustering< SILACPattern * ></a></td><td class="desc"></td></tr>
<tr id="row_183_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SILACClustering.html" target="_self">SILACClustering</a></td><td class="desc">Clustering implementation for SILAC stuff </td></tr>
<tr id="row_184_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1Histogram.html" target="_self">Histogram< ValueType, BinSizeType ></a></td><td class="desc">Representation of a histogram </td></tr>
<tr id="row_185_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HMMState.html" target="_self">HMMState</a></td><td class="desc">Hidden Markov Model State class for the Hidden Markov Model </td></tr>
<tr id="row_186_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HPLC.html" target="_self">HPLC</a></td><td class="desc">Representation of a <a class="el" href="classOpenMS_1_1HPLC.html" title="Representation of a HPLC experiment. ">HPLC</a> experiment </td></tr>
<tr id="row_187_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Interfaces_1_1IChromatogramsReader.html" target="_self">IChromatogramsReader</a></td><td class="desc">The interface of read-access to a list of chromatograms </td></tr>
<tr id="row_188_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Interfaces_1_1IChromatogramsWriter.html" target="_self">IChromatogramsWriter</a></td><td class="desc"></td></tr>
<tr id="row_189_"><td class="entry"><img id="arr_189_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('189_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1IDataFrameWriter.html" target="_self">IDataFrameWriter</a></td><td class="desc"></td></tr>
<tr id="row_189_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1CSVWriter.html" target="_self">CSVWriter</a></td><td class="desc"></td></tr>
<tr id="row_189_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1DataMatrix.html" target="_self">DataMatrix</a></td><td class="desc"></td></tr>
<tr id="row_190_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IDFilter.html" target="_self">IDFilter</a></td><td class="desc">Used to filter identifications by different criteria </td></tr>
<tr id="row_191_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1InclusionExclusionList_1_1IEWindow.html" target="_self">InclusionExclusionList::IEWindow</a></td><td class="desc"></td></tr>
<tr id="row_192_" class="even"><td class="entry"><img id="arr_192_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('192_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenSwath_1_1IFeature.html" target="_self">IFeature</a></td><td class="desc"></td></tr>
<tr id="row_192_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureOpenMS.html" target="_self">FeatureOpenMS</a></td><td class="desc">An implementation of the OpenSWATH <a class="el" href="classOpenMS_1_1Feature.html" title="An LC-MS feature. ">Feature</a> Access interface using <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> </td></tr>
<tr id="row_192_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenSwath_1_1MockFeature.html" target="_self">MockFeature</a></td><td class="desc">Mock object implementing <a class="el" href="classOpenSwath_1_1IFeature.html">IFeature</a> </td></tr>
<tr id="row_193_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ILPDCWrapper.html" target="_self">ILPDCWrapper</a></td><td class="desc"></td></tr>
<tr id="row_194_" class="even"><td class="entry"><img id="arr_194_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('194_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenSwath_1_1IMRMFeature.html" target="_self">IMRMFeature</a></td><td class="desc"></td></tr>
<tr id="row_194_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MRMFeatureOpenMS.html" target="_self">MRMFeatureOpenMS</a></td><td class="desc">An implementation of the OpenSWATH MRM <a class="el" href="classOpenMS_1_1Feature.html" title="An LC-MS feature. ">Feature</a> Access interface using <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> </td></tr>
<tr id="row_194_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenSwath_1_1MockMRMFeature.html" target="_self">MockMRMFeature</a></td><td class="desc">Mock object implementing <a class="el" href="classOpenSwath_1_1IMRMFeature.html">IMRMFeature</a> </td></tr>
<tr id="row_195_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1IMSAlphabet.html" target="_self">IMSAlphabet</a></td><td class="desc">Holds an indexed list of bio-chemical elements </td></tr>
<tr id="row_196_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1IMSAlphabetParser.html" target="_self">IMSAlphabetParser< AlphabetElementType, Container, InputSource ></a></td><td class="desc">An abstract templatized parser to load the data that is used to initialize <code>Alphabet</code> objects </td></tr>
<tr id="row_197_"><td class="entry"><img id="arr_197_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('197_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1IMSAlphabetParser.html" target="_self">IMSAlphabetParser<></a></td><td class="desc"></td></tr>
<tr id="row_197_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1IMSAlphabetTextParser.html" target="_self">IMSAlphabetTextParser</a></td><td class="desc">Implements abstract <code>AlphabetParser</code> to read data from the plain text format </td></tr>
<tr id="row_198_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1IMSElement.html" target="_self">IMSElement</a></td><td class="desc">Represents a chemical atom with name and isotope distribution </td></tr>
<tr id="row_199_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1IMSIsotopeDistribution.html" target="_self">IMSIsotopeDistribution</a></td><td class="desc">Represents a distribution of isotopes restricted to the first K elements </td></tr>
<tr id="row_200_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PSLPFormulation_1_1IndexTriple.html" target="_self">PSLPFormulation::IndexTriple</a></td><td class="desc">Struct that holds the indices of the precursors in the feature map and the ilp formulation </td></tr>
<tr id="row_201_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1SimpleExtender_1_1IndexWithPriority.html" target="_self">SimpleExtender< PeakType, FeatureType >::IndexWithPriority</a></td><td class="desc">A helper structure to sort indizes by their priority </td></tr>
<tr id="row_202_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1INIUpdater.html" target="_self">INIUpdater</a></td><td class="desc"></td></tr>
<tr id="row_203_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FuzzyStringComparator_1_1InputLine.html" target="_self">FuzzyStringComparator::InputLine</a></td><td class="desc">Stores information about the current input line (i.e., stream for the line and the current position in the stream) </td></tr>
<tr id="row_204_" class="even"><td class="entry"><img id="arr_204_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('204_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>InputSource</b></td><td class="desc"></td></tr>
<tr id="row_204_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompressedInputSource.html" target="_self">CompressedInputSource</a></td><td class="desc">This class is based on xercesc::LocalFileInputSource </td></tr>
<tr id="row_205_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InspectInfile.html" target="_self">InspectInfile</a></td><td class="desc">Inspect input file adapter </td></tr>
<tr id="row_206_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InspectOutfile.html" target="_self">InspectOutfile</a></td><td class="desc">Representation of an Inspect outfile </td></tr>
<tr id="row_207_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TOPPASToolVertex_1_1IOInfo.html" target="_self">TOPPASToolVertex::IOInfo</a></td><td class="desc">Stores the information for input/output files/lists </td></tr>
<tr id="row_208_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1CompNovoIonScoringBase_1_1IonScore.html" target="_self">CompNovoIonScoringBase::IonScore</a></td><td class="desc"></td></tr>
<tr id="row_209_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DeNovoIonScoring_1_1IonScore.html" target="_self">DeNovoIonScoring::IonScore</a></td><td class="desc"><a class="el" href="classOpenMS_1_1DeNovoIonScoring_1_1IonScore.html" title="IonScore. ">IonScore</a> </td></tr>
<tr id="row_210_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1SvmTheoreticalSpectrumGenerator_1_1IonType.html" target="_self">SvmTheoreticalSpectrumGenerator::IonType</a></td><td class="desc">Nested class </td></tr>
<tr id="row_211_"><td class="entry"><img id="arr_211_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('211_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>ios_base</b></td><td class="desc">STL class </td></tr>
<tr id="row_211_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_211_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('211_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>basic_ios< Char ></b></td><td class="desc">STL class </td></tr>
<tr id="row_211_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_211_0_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('211_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>basic_istream< Char ></b></td><td class="desc">STL class </td></tr>
<tr id="row_211_0_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_211_0_0_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('211_0_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>basic_ifstream< Char ></b></td><td class="desc">STL class </td></tr>
<tr id="row_211_0_0_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_211_0_0_0_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('211_0_0_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>ifstream</b></td><td class="desc">STL class </td></tr>
<tr id="row_211_0_0_0_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1FidHandler.html" target="_self">FidHandler</a></td><td class="desc">Read-only fid <a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> handler for XMass Analysis </td></tr>
<tr id="row_211_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_211_0_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('211_0_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>basic_ostream< Char ></b></td><td class="desc">STL class </td></tr>
<tr id="row_211_0_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_211_0_1_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('211_0_1_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>ostream</b></td><td class="desc">STL class </td></tr>
<tr id="row_211_0_1_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Logger_1_1LogStream.html" target="_self">LogStream</a></td><td class="desc">Log Stream Class </td></tr>
<tr id="row_211_0_1_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SVOutStream.html" target="_self">SVOutStream</a></td><td class="desc">Stream class for writing to comma/tab/...-separated values files </td></tr>
<tr id="row_212_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ProteinResolver_1_1ISDGroup.html" target="_self">ProteinResolver::ISDGroup</a></td><td class="desc"></td></tr>
<tr id="row_213_"><td class="entry"><img id="arr_213_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1ISignalToNoise.html" target="_self">ISignalToNoise</a></td><td class="desc"></td></tr>
<tr id="row_213_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SignalToNoiseOpenMS.html" target="_self">SignalToNoiseOpenMS< PeakT ></a></td><td class="desc">An implementation of the OpenSWATH SignalToNoise Access interface using <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> </td></tr>
<tr id="row_213_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenSwath_1_1MockSignalToNoise.html" target="_self">MockSignalToNoise</a></td><td class="desc">Mock object implementing <a class="el" href="structOpenSwath_1_1ISignalToNoise.html">ISignalToNoise</a> </td></tr>
<tr id="row_214_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1IsobaricQuantitationMethod_1_1IsobaricChannelInformation.html" target="_self">IsobaricQuantitationMethod::IsobaricChannelInformation</a></td><td class="desc"><a class="el" href="structOpenMS_1_1Summary.html" title="Summary of fitting results. ">Summary</a> of an isobaric quantitation channel </td></tr>
<tr id="row_215_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsobaricIsotopeCorrector.html" target="_self">IsobaricIsotopeCorrector</a></td><td class="desc">Performs isotope impurity correction on the intensities extracted from an isobaric labeling experiment </td></tr>
<tr id="row_216_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsobaricNormalizer.html" target="_self">IsobaricNormalizer</a></td><td class="desc">Performs median normalization on the extracted ratios of isobaric labeling experiment </td></tr>
<tr id="row_217_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1IsobaricQuantifierStatistics.html" target="_self">IsobaricQuantifierStatistics</a></td><td class="desc">Statistics for quantitation performance and comparison of <a class="el" href="namespaceOpenMS_1_1NNLS.html">NNLS</a> vs. naive method (aka matrix inversion) </td></tr>
<tr id="row_218_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1IsotopeCluster.html" target="_self">IsotopeCluster</a></td><td class="desc">Stores information about an isotopic cluster (i.e. potential peptide charge variants) </td></tr>
<tr id="row_219_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeDistribution.html" target="_self">IsotopeDistribution</a></td><td class="desc">Isotope distribution class </td></tr>
<tr id="row_220_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeDistributionCache.html" target="_self">IsotopeDistributionCache</a></td><td class="desc">Prealculate isotope distributions for interesting mass ranges </td></tr>
<tr id="row_221_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FeatureFinderAlgorithmPickedHelperStructs_1_1IsotopePattern.html" target="_self">FeatureFinderAlgorithmPickedHelperStructs::IsotopePattern</a></td><td class="desc">Helper structure for a found isotope pattern used in <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html" title="FeatureFinderAlgorithm for picked peaks. ">FeatureFinderAlgorithmPicked</a> </td></tr>
<tr id="row_222_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeWavelet.html" target="_self">IsotopeWavelet</a></td><td class="desc">Implements the isotope wavelet function </td></tr>
<tr id="row_223_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeWaveletParallelFor.html" target="_self">IsotopeWaveletParallelFor< PeakType, FeatureType ></a></td><td class="desc">A class for distributing the data over several GPUs using Intel Threading Building Blocks </td></tr>
<tr id="row_224_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeWaveletTransform.html" target="_self">IsotopeWaveletTransform< PeakType ></a></td><td class="desc">A class implementing the isotope wavelet transform. If you just want to find features using the isotope wavelet, take a look at the <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmIsotopeWavelet.html" title="Implements the isotope wavelet feature finder. ">FeatureFinderAlgorithmIsotopeWavelet</a> class. Usually, you only have to consider the class at hand if you plan to change the basic implementation of the transform </td></tr>
<tr id="row_225_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeWaveletTransform.html" target="_self">IsotopeWaveletTransform< OpenMS::Peak2D ></a></td><td class="desc"></td></tr>
<tr id="row_226_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopicDist.html" target="_self">IsotopicDist</a></td><td class="desc"></td></tr>
<tr id="row_227_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Interfaces_1_1ISpectraReader.html" target="_self">ISpectraReader</a></td><td class="desc">The interface of read-access to a list of spectra </td></tr>
<tr id="row_228_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Interfaces_1_1ISpectraWriter.html" target="_self">ISpectraWriter</a></td><td class="desc"></td></tr>
<tr id="row_229_"><td class="entry"><img id="arr_229_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('229_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenSwath_1_1ISpectrumAccess.html" target="_self">ISpectrumAccess</a></td><td class="desc">The interface of a mass spectrometry experiment </td></tr>
<tr id="row_229_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumAccessOpenMS.html" target="_self">SpectrumAccessOpenMS</a></td><td class="desc">An implementation of the OpenSWATH Spectrum Access interface using <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> </td></tr>
<tr id="row_229_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumAccessOpenMSCached.html" target="_self">SpectrumAccessOpenMSCached</a></td><td class="desc">An implementation of the OpenSWATH Spectrum Access interface using Disk caching </td></tr>
<tr id="row_230_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AASequence_1_1Iterator.html" target="_self">AASequence::Iterator</a></td><td class="desc"><a class="el" href="classOpenMS_1_1AASequence_1_1Iterator.html" title="Iterator class for AASequence. ">Iterator</a> class for <a class="el" href="classOpenMS_1_1AASequence.html" title="Representation of a peptide/protein sequence. ">AASequence</a> </td></tr>
<tr id="row_231_"><td class="entry"><img id="arr_231_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('231_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>iterator</b></td><td class="desc"></td></tr>
<tr id="row_231_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HashGrid_1_1ConstIterator.html" target="_self">HashGrid< Cluster >::ConstIterator</a></td><td class="desc">Constant element iterator for the hash grid </td></tr>
<tr id="row_231_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HashGrid_1_1Iterator.html" target="_self">HashGrid< Cluster >::Iterator</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Element.html" title="Representation of an element. ">Element</a> iterator for the hash grid </td></tr>
<tr id="row_231_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1AreaIterator.html" target="_self">AreaIterator< ValueT, ReferenceT, PointerT, SpectrumIteratorT, PeakIteratorT ></a></td><td class="desc">Forward iterator for an area of peaks in an experiment </td></tr>
<tr id="row_231_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1IntensityIteratorWrapper.html" target="_self">IntensityIteratorWrapper< IteratorT ></a></td><td class="desc">An iterator wrapper to access peak intensities instead of the peak itself </td></tr>
<tr id="row_232_" class="even"><td class="entry"><img id="arr_232_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('232_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1ITransitionGroup.html" target="_self">ITransitionGroup</a></td><td class="desc"></td></tr>
<tr id="row_232_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TransitionGroupOpenMS.html" target="_self">TransitionGroupOpenMS< SpectrumT, TransitionT ></a></td><td class="desc">An implementation of the OpenSWATH Transition Group Access interface using <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> </td></tr>
<tr id="row_232_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenSwath_1_1MockTransitionGroup.html" target="_self">MockTransitionGroup</a></td><td class="desc">Mock object implementing <a class="el" href="structOpenSwath_1_1ITransitionGroup.html">ITransitionGroup</a> </td></tr>
<tr id="row_233_"><td class="entry"><img id="arr_233_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('233_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ItraqConstants.html" target="_self">ItraqConstants</a></td><td class="desc">Some constants used throughout iTRAQ classes </td></tr>
<tr id="row_233_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ItraqChannelExtractor.html" target="_self">ItraqChannelExtractor</a></td><td class="desc">[experimental class] extracts the iTRAQ channels from tandem MS data and stores intensity values in a consensus map </td></tr>
<tr id="row_233_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ItraqQuantifier.html" target="_self">ItraqQuantifier</a></td><td class="desc">Does post-processing on raw iTRAQ channel quantitation </td></tr>
<tr id="row_234_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ItraqQuantifier_1_1ItraqQuantifierStats.html" target="_self">ItraqQuantifier::ItraqQuantifierStats</a></td><td class="desc">Statistics for quantitation performance and comparison of <a class="el" href="namespaceOpenMS_1_1NNLS.html">NNLS</a> vs. naive method (aka matrix inversion) </td></tr>
<tr id="row_235_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1KroenikFile.html" target="_self">KroenikFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for Kroenik (HardKloer sibling) files </td></tr>
<tr id="row_236_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LayerData.html" target="_self">LayerData</a></td><td class="desc">Class that stores the data for one layer </td></tr>
<tr id="row_237_"><td class="entry"><img id="arr_237_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('237_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>LayerStatisticsDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_237_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LayerStatisticsDialog.html" target="_self">LayerStatisticsDialog</a></td><td class="desc">Dialog showing statistics about the data of the current layer </td></tr>
<tr id="row_238_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LCElutionPeak.html" target="_self">LCElutionPeak</a></td><td class="desc"></td></tr>
<tr id="row_239_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LCMS.html" target="_self">LCMS</a></td><td class="desc"></td></tr>
<tr id="row_240_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LCMSCData.html" target="_self">LCMSCData</a></td><td class="desc"></td></tr>
<tr id="row_241_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LibSVMEncoder.html" target="_self">LibSVMEncoder</a></td><td class="desc">Serves for encoding sequences into feature vectors </td></tr>
<tr id="row_242_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1LightModification.html" target="_self">LightModification</a></td><td class="desc"></td></tr>
<tr id="row_243_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1LightPeptide.html" target="_self">LightPeptide</a></td><td class="desc"></td></tr>
<tr id="row_244_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1LightProtein.html" target="_self">LightProtein</a></td><td class="desc"></td></tr>
<tr id="row_245_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1LightTargetedExperiment.html" target="_self">LightTargetedExperiment</a></td><td class="desc"></td></tr>
<tr id="row_246_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1LightTransition.html" target="_self">LightTransition</a></td><td class="desc"></td></tr>
<tr id="row_247_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1LinearInterpolation.html" target="_self">LinearInterpolation< Key, Value ></a></td><td class="desc">Provides access to linearly interpolated values (and derivatives) from discrete data points. Values beyond the given range of data points are implicitly taken as zero </td></tr>
<tr id="row_248_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1LinearInterpolation.html" target="_self">LinearInterpolation< DoubleReal ></a></td><td class="desc"></td></tr>
<tr id="row_249_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1LinearRegression.html" target="_self">LinearRegression</a></td><td class="desc">This class offers functions to perform least-squares fits to a straight line model, <img class="formulaInl" alt="$ Y(c,x) = c_0 + c_1 x $" src="form_84.png"/> </td></tr>
<tr id="row_250_" class="even"><td class="entry"><img id="arr_250_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('250_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>list< T ></b></td><td class="desc">STL class </td></tr>
<tr id="row_250_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Annotations1DContainer.html" target="_self">Annotations1DContainer</a></td><td class="desc">Container for annotations to content of <a class="el" href="classOpenMS_1_1Spectrum1DCanvas.html" title="Canvas for visualization of one or several spectra. ">Spectrum1DCanvas</a> </td></tr>
<tr id="row_251_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1LocalLinearMap_1_1LLMParam.html" target="_self">LocalLinearMap::LLMParam</a></td><td class="desc">Define parameters needed by the Local Linear Map (LLM) model </td></tr>
<tr id="row_252_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LocalLinearMap.html" target="_self">LocalLinearMap</a></td><td class="desc">Trained Local Linear Map (LLM) model for peak intensity prediction </td></tr>
<tr id="row_253_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Logger_1_1LogStreamBuf_1_1LogCacheStruct.html" target="_self">LogStreamBuf::LogCacheStruct</a></td><td class="desc">Holds a counter of occurences and an index for the occurence sequence of the corresponding log message </td></tr>
<tr id="row_254_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LogConfigHandler.html" target="_self">LogConfigHandler</a></td><td class="desc">The <a class="el" href="classOpenMS_1_1LogConfigHandler.html" title="The LogConfigHandler provides the functionality to configure the internal logging of OpenMS algorithm...">LogConfigHandler</a> provides the functionality to configure the internal logging of <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> algorithms that use the global instances of LogStream </td></tr>
<tr id="row_255_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Logger_1_1LogStreamNotifier.html" target="_self">LogStreamNotifier</a></td><td class="desc"></td></tr>
<tr id="row_256_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LPWrapper.html" target="_self">LPWrapper</a></td><td class="desc"></td></tr>
<tr id="row_257_"><td class="entry"><img id="arr_257_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('257_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>map< K, T ></b></td><td class="desc">STL class </td></tr>
<tr id="row_257_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< char, const OpenMS::Residue * ></a></td><td class="desc"></td></tr>
<tr id="row_257_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< char, double ></a></td><td class="desc"></td></tr>
<tr id="row_257_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< char, Size ></a></td><td class="desc"></td></tr>
<tr id="row_257_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< const OpenMS::Element *, SignedSize ></a></td><td class="desc"></td></tr>
<tr id="row_257_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< const OpenMS::Residue *, char ></a></td><td class="desc"></td></tr>
<tr id="row_257_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< double, std::vector< OpenMS::MassDecomposition > ></a></td><td class="desc"></td></tr>
<tr id="row_257_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< double, std::vector< OpenMS::RichPeak1D > ></a></td><td class="desc"></td></tr>
<tr id="row_257_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::EnzymaticDigestion::BindingSite, OpenMS::EnzymaticDigestion::CleavageModel ></a></td><td class="desc"></td></tr>
<tr id="row_257_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::HMMState *, double ></a></td><td class="desc"></td></tr>
<tr id="row_257_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::HMMState *, OpenMS::Map< OpenMS::HMMState *, double > ></a></td><td class="desc"></td></tr>
<tr id="row_257_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::HMMState *, OpenMS::Map< OpenMS::HMMState *, Size > ></a></td><td class="desc"></td></tr>
<tr id="row_257_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::HMMState *, OpenMS::Map< OpenMS::HMMState *, std::pair< OpenMS::HMMState *, OpenMS::HMMState * > > ></a></td><td class="desc"></td></tr>
<tr id="row_257_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::HMMState *, OpenMS::Map< OpenMS::HMMState *, std::vector< double > > ></a></td><td class="desc"></td></tr>
<tr id="row_257_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::HMMState *, Size ></a></td><td class="desc"></td></tr>
<tr id="row_257_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::HMMState *, std::pair< OpenMS::HMMState *, OpenMS::HMMState * > ></a></td><td class="desc"></td></tr>
<tr id="row_257_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::HMMState *, std::set< OpenMS::HMMState * > ></a></td><td class="desc"></td></tr>
<tr id="row_257_16_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::HMMState *, std::vector< double > ></a></td><td class="desc"></td></tr>
<tr id="row_257_17_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::Size, std::set< OpenMS::Size > ></a></td><td class="desc"></td></tr>
<tr id="row_257_18_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, const OpenMS::Element * ></a></td><td class="desc"></td></tr>
<tr id="row_257_19_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::AASequence ></a></td><td class="desc"></td></tr>
<tr id="row_257_20_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::ControlledVocabulary::CVTerm ></a></td><td class="desc"></td></tr>
<tr id="row_257_21_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::CVReference ></a></td><td class="desc"></td></tr>
<tr id="row_257_22_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::HMMState * ></a></td><td class="desc"></td></tr>
<tr id="row_257_23_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::Instrument ></a></td><td class="desc"></td></tr>
<tr id="row_257_24_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::IntList ></a></td><td class="desc"></td></tr>
<tr id="row_257_25_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::Map< OpenMS::String, OpenMS::Map< OpenMS::String, unsigned int > > ></a></td><td class="desc"></td></tr>
<tr id="row_257_26_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::Map< OpenMS::String, OpenMS::Residue * > ></a></td><td class="desc"></td></tr>
<tr id="row_257_27_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::Map< OpenMS::String, std::pair< OpenMS::String, OpenMS::String > > ></a></td><td class="desc"></td></tr>
<tr id="row_257_28_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::Map< OpenMS::String, unsigned int > ></a></td><td class="desc"></td></tr>
<tr id="row_257_29_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::PILISCrossValidation::Option ></a></td><td class="desc"></td></tr>
<tr id="row_257_30_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::ProteinHit ></a></td><td class="desc"></td></tr>
<tr id="row_257_31_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::Residue * ></a></td><td class="desc"></td></tr>
<tr id="row_257_32_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::Sample ></a></td><td class="desc"></td></tr>
<tr id="row_257_33_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::Software ></a></td><td class="desc"></td></tr>
<tr id="row_257_34_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::SourceFile ></a></td><td class="desc"></td></tr>
<tr id="row_257_35_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, OpenMS::String ></a></td><td class="desc"></td></tr>
<tr id="row_257_36_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, Size ></a></td><td class="desc"></td></tr>
<tr id="row_257_37_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, std::pair< OpenMS::String, OpenMS::String > ></a></td><td class="desc"></td></tr>
<tr id="row_257_38_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, std::set< const OpenMS::Residue * > ></a></td><td class="desc"></td></tr>
<tr id="row_257_39_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, std::set< const OpenMS::ResidueModification * > ></a></td><td class="desc"></td></tr>
<tr id="row_257_40_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, std::set< OpenMS::String > ></a></td><td class="desc"></td></tr>
<tr id="row_257_41_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, std::vector< OpenMS::CVMappingRule > ></a></td><td class="desc"></td></tr>
<tr id="row_257_42_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, std::vector< OpenMS::CVTerm > ></a></td><td class="desc"></td></tr>
<tr id="row_257_43_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, std::vector< OpenMS::DataProcessing > ></a></td><td class="desc"></td></tr>
<tr id="row_257_44_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, std::vector< OpenMS::Internal::SemanticValidator::OpenMS::CVTerm > ></a></td><td class="desc"></td></tr>
<tr id="row_257_45_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, std::vector< OpenMS::String > ></a></td><td class="desc"></td></tr>
<tr id="row_257_46_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< OpenMS::String, unsigned int ></a></td><td class="desc"></td></tr>
<tr id="row_257_47_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< PointType::CoordinateType, DBoundingBox< 1 > ></a></td><td class="desc"></td></tr>
<tr id="row_257_48_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< QString, QList< OpenMS::TOPPASResource > ></a></td><td class="desc"></td></tr>
<tr id="row_257_49_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< QString, QString ></a></td><td class="desc"></td></tr>
<tr id="row_257_50_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< Size, OpenMS::Map< Size, std::set< OpenMS::String > > ></a></td><td class="desc"></td></tr>
<tr id="row_257_51_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< Size, OpenMS::String ></a></td><td class="desc"></td></tr>
<tr id="row_257_52_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< Size, Size ></a></td><td class="desc"></td></tr>
<tr id="row_257_53_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< Size, std::set< OpenMS::String > ></a></td><td class="desc"></td></tr>
<tr id="row_257_54_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< Size, std::vector< double > ></a></td><td class="desc"></td></tr>
<tr id="row_257_55_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< Size, String ></a></td><td class="desc"></td></tr>
<tr id="row_257_56_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< String, DoubleReal ></a></td><td class="desc"></td></tr>
<tr id="row_257_57_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< String, set< String > ></a></td><td class="desc"></td></tr>
<tr id="row_257_58_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< String, vector< pair< DoubleReal, DoubleReal > > ></a></td><td class="desc"></td></tr>
<tr id="row_257_59_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< UInt64, FileDescription ></a></td><td class="desc"></td></tr>
<tr id="row_257_60_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< unsigned int, const OpenMS::Element * ></a></td><td class="desc"></td></tr>
<tr id="row_257_61_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< unsigned int, std::vector< OpenMS::PeptideHit > ></a></td><td class="desc"></td></tr>
<tr id="row_257_62_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< unsigned int, std::vector< OpenMS::ResidueModification > ></a></td><td class="desc"></td></tr>
<tr id="row_257_63_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< unsigned int, unsigned int ></a></td><td class="desc"></td></tr>
<tr id="row_257_64_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Map.html" target="_self">Map< Key, T ></a></td><td class="desc"><a class="el" href="classOpenMS_1_1Map.html" title="Map class based on the STL map (containing serveral convenience functions) ">Map</a> class based on the STL map (containing serveral convenience functions) </td></tr>
<tr id="row_258_" class="even"><td class="entry"><img id="arr_258_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('258_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MapAlignmentEvaluationAlgorithm.html" target="_self">MapAlignmentEvaluationAlgorithm</a></td><td class="desc">Base class for all Caap evaluation algorithms </td></tr>
<tr id="row_258_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MapAlignmentEvaluationAlgorithmPrecision.html" target="_self">MapAlignmentEvaluationAlgorithmPrecision</a></td><td class="desc">Caap evaluation algorithm to obtain a precision value </td></tr>
<tr id="row_258_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MapAlignmentEvaluationAlgorithmRecall.html" target="_self">MapAlignmentEvaluationAlgorithmRecall</a></td><td class="desc">Caap evaluation algorithm to obtain a recall value </td></tr>
<tr id="row_259_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MapAlignmentTransformer.html" target="_self">MapAlignmentTransformer</a></td><td class="desc">The <a class="el" href="classOpenMS_1_1MapAlignmentTransformer.html" title="The MapAlignmentTransformer class. ">MapAlignmentTransformer</a> class </td></tr>
<tr id="row_260_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1MappingParam.html" target="_self">MappingParam</a></td><td class="desc">Filename mappings for all input/output files </td></tr>
<tr id="row_261_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structMarkerIonExtractor.html" target="_self">MarkerIonExtractor</a></td><td class="desc"></td></tr>
<tr id="row_262_" class="even"><td class="entry"><img id="arr_262_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('262_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1MassDecomposer.html" target="_self">MassDecomposer< ValueType, DecompositionValueType ></a></td><td class="desc">An inteface to handle decomposing of integer values/masses over a set of integer weights (alphabet) </td></tr>
<tr id="row_262_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1IntegerMassDecomposer.html" target="_self">IntegerMassDecomposer< ValueType, DecompositionValueType ></a></td><td class="desc">Implements <code><a class="el" href="classOpenMS_1_1ims_1_1MassDecomposer.html" title="An inteface to handle decomposing of integer values/masses over a set of integer weights (alphabet)...">MassDecomposer</a></code> interface using algorithm and data structures described in paper "Efficient Mass Decomposition" S. Bcker, Zs. Liptk, ACM SAC-BIO, 2004 </td></tr>
<tr id="row_263_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MassDecomposition.html" target="_self">MassDecomposition</a></td><td class="desc">Class represents a decomposition of a mass into amino acids </td></tr>
<tr id="row_264_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MassExplainer.html" target="_self">MassExplainer</a></td><td class="desc">Computes empirical formulas for given mass differences using a set of allowed elements </td></tr>
<tr id="row_265_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1IMSAlphabet_1_1MassSortingCriteria__.html" target="_self">IMSAlphabet::MassSortingCriteria_</a></td><td class="desc">Private class-functor to sort out elements in mass ascending order </td></tr>
<tr id="row_266_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MassTrace.html" target="_self">MassTrace</a></td><td class="desc">A container type that gathers peaks similar in m/z and moving along retention time </td></tr>
<tr id="row_267_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FeatureFinderAlgorithmPickedHelperStructs_1_1MassTrace.html" target="_self">FeatureFinderAlgorithmPickedHelperStructs::MassTrace< PeakType ></a></td><td class="desc">Helper struct for mass traces used in <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html" title="FeatureFinderAlgorithm for picked peaks. ">FeatureFinderAlgorithmPicked</a> </td></tr>
<tr id="row_268_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenSwath_1_1mean__and__stddev.html" target="_self">mean_and_stddev</a></td><td class="desc">Functor to compute the mean and stddev of sequence using the std::foreach algorithm </td></tr>
<tr id="row_269_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MetaInfo.html" target="_self">MetaInfo</a></td><td class="desc">A Type-Name-Value tuple class </td></tr>
<tr id="row_270_" class="even"><td class="entry"><img id="arr_270_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('270_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MetaInfoInterface.html" target="_self">MetaInfoInterface</a></td><td class="desc">Interface for classes that can store arbitrary meta information (Type-Name-Value tuples) </td></tr>
<tr id="row_270_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Acquisition.html" target="_self">Acquisition</a></td><td class="desc">Information about one raw data spectrum that was combined with several other raw data spectra </td></tr>
<tr id="row_270_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AcquisitionInfo.html" target="_self">AcquisitionInfo</a></td><td class="desc">Description of the combination of raw data to a single spectrum </td></tr>
<tr id="row_270_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_270_2_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('270_2_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ChromatogramSettings.html" target="_self">ChromatogramSettings</a></td><td class="desc">Representation of chromatogram settings, e.g. SRM/MRM chromatograms </td></tr>
<tr id="row_270_2_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram.html" target="_self">MSChromatogram< ChromatogramPeakType ></a></td><td class="desc"></td></tr>
<tr id="row_270_2_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram.html" target="_self">MSChromatogram< PeakT ></a></td><td class="desc">The representation of a chromatogram </td></tr>
<tr id="row_270_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusMap.html" target="_self">ConsensusMap</a></td><td class="desc">A container for consensus elements </td></tr>
<tr id="row_270_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ConsensusMap_1_1FileDescription.html" target="_self">ConsensusMap::FileDescription</a></td><td class="desc">Source file description for input files </td></tr>
<tr id="row_270_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ContactPerson.html" target="_self">ContactPerson</a></td><td class="desc">Contact person information </td></tr>
<tr id="row_270_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_270_6_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('270_6_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CVTermList.html" target="_self">CVTermList</a></td><td class="desc">Representation of controlled vocabulary term list </td></tr>
<tr id="row_270_6_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IncludeExcludeTarget.html" target="_self">IncludeExcludeTarget</a></td><td class="desc">This class stores a SRM/MRM transition </td></tr>
<tr id="row_270_6_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Precursor.html" target="_self">Precursor</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Precursor.html" title="Precursor meta information. ">Precursor</a> meta information </td></tr>
<tr id="row_270_6_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Product.html" target="_self">Product</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Product.html" title="Product meta information. ">Product</a> meta information </td></tr>
<tr id="row_270_6_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ReactionMonitoringTransition.html" target="_self">ReactionMonitoringTransition</a></td><td class="desc">This class stores a SRM/MRM transition </td></tr>
<tr id="row_270_6_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Software.html" target="_self">Software</a></td><td class="desc">Description of the software used for processing </td></tr>
<tr id="row_270_6_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SourceFile.html" target="_self">SourceFile</a></td><td class="desc">Description of a file location, used to store the origin of (meta) data </td></tr>
<tr id="row_270_6_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TargetedExperimentHelper_1_1Compound.html" target="_self">Compound</a></td><td class="desc"></td></tr>
<tr id="row_270_6_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TargetedExperimentHelper_1_1Configuration.html" target="_self">Configuration</a></td><td class="desc"></td></tr>
<tr id="row_270_6_8_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TargetedExperimentHelper_1_1Contact.html" target="_self">Contact</a></td><td class="desc"></td></tr>
<tr id="row_270_6_9_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TargetedExperimentHelper_1_1Instrument.html" target="_self">Instrument</a></td><td class="desc"></td></tr>
<tr id="row_270_6_10_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TargetedExperimentHelper_1_1Peptide.html" target="_self">Peptide</a></td><td class="desc"></td></tr>
<tr id="row_270_6_11_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TargetedExperimentHelper_1_1Peptide_1_1Modification.html" target="_self">Peptide::Modification</a></td><td class="desc"></td></tr>
<tr id="row_270_6_12_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TargetedExperimentHelper_1_1Prediction.html" target="_self">Prediction</a></td><td class="desc"></td></tr>
<tr id="row_270_6_13_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TargetedExperimentHelper_1_1Protein.html" target="_self">Protein</a></td><td class="desc"></td></tr>
<tr id="row_270_6_14_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TargetedExperimentHelper_1_1Publication.html" target="_self">Publication</a></td><td class="desc"></td></tr>
<tr id="row_270_6_15_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TargetedExperimentHelper_1_1RetentionTime.html" target="_self">RetentionTime</a></td><td class="desc"></td></tr>
<tr id="row_270_6_16_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TargetedExperimentHelper_1_1TraMLProduct.html" target="_self">TraMLProduct</a></td><td class="desc"></td></tr>
<tr id="row_270_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DataProcessing.html" target="_self">DataProcessing</a></td><td class="desc">Descripton of the applied preprocessing steps </td></tr>
<tr id="row_270_8_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ExperimentalSettings.html" target="_self">ExperimentalSettings</a></td><td class="desc">Description of the experimental settings </td></tr>
<tr id="row_270_9_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Identification.html" target="_self">Identification</a></td><td class="desc">Represents a object which can store the information of an analysisXML instance </td></tr>
<tr id="row_270_10_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IdentificationHit.html" target="_self">IdentificationHit</a></td><td class="desc">Represents a object which can store the information of an analysisXML instance </td></tr>
<tr id="row_270_11_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Instrument.html" target="_self">Instrument</a></td><td class="desc">Description of a MS instrument </td></tr>
<tr id="row_270_12_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InstrumentSettings.html" target="_self">InstrumentSettings</a></td><td class="desc">Description of the settings a MS <a class="el" href="classOpenMS_1_1Instrument.html" title="Description of a MS instrument. ">Instrument</a> was run with </td></tr>
<tr id="row_270_13_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IonDetector.html" target="_self">IonDetector</a></td><td class="desc">Description of a ion detector (part of a MS <a class="el" href="classOpenMS_1_1Instrument.html" title="Description of a MS instrument. ">Instrument</a>) </td></tr>
<tr id="row_270_14_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IonSource.html" target="_self">IonSource</a></td><td class="desc">Description of a ion source (part of a MS <a class="el" href="classOpenMS_1_1Instrument.html" title="Description of a MS instrument. ">Instrument</a>) </td></tr>
<tr id="row_270_15_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MassAnalyzer.html" target="_self">MassAnalyzer</a></td><td class="desc">Descripton of a mass analyzer (part of a MS <a class="el" href="classOpenMS_1_1Instrument.html" title="Description of a MS instrument. ">Instrument</a>) </td></tr>
<tr id="row_270_16_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_270_16_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('270_16_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MetaInfoDescription.html" target="_self">MetaInfoDescription</a></td><td class="desc">Description of the meta data arrays of <a class="el" href="classOpenMS_1_1MSSpectrum.html" title="The representation of a 1D spectrum. ">MSSpectrum</a> </td></tr>
<tr id="row_270_16_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram_1_1FloatDataArray.html" target="_self">MSChromatogram< PeakT >::FloatDataArray</a></td><td class="desc">Float data array class </td></tr>
<tr id="row_270_16_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram_1_1IntegerDataArray.html" target="_self">MSChromatogram< PeakT >::IntegerDataArray</a></td><td class="desc">Float data array class </td></tr>
<tr id="row_270_16_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram_1_1StringDataArray.html" target="_self">MSChromatogram< PeakT >::StringDataArray</a></td><td class="desc"><a class="el" href="classOpenMS_1_1String.html" title="A more convenient string class. ">String</a> data array class </td></tr>
<tr id="row_270_16_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum_1_1FloatDataArray.html" target="_self">MSSpectrum< PeakT >::FloatDataArray</a></td><td class="desc">Float data array class </td></tr>
<tr id="row_270_16_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum_1_1IntegerDataArray.html" target="_self">MSSpectrum< PeakT >::IntegerDataArray</a></td><td class="desc">Integer data array class </td></tr>
<tr id="row_270_16_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum_1_1StringDataArray.html" target="_self">MSSpectrum< PeakT >::StringDataArray</a></td><td class="desc"><a class="el" href="classOpenMS_1_1String.html" title="A more convenient string class. ">String</a> data array class </td></tr>
<tr id="row_270_17_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeptideEvidence.html" target="_self">PeptideEvidence</a></td><td class="desc">Representation of a MzIdentML <a class="el" href="classOpenMS_1_1PeptideEvidence.html" title="Representation of a MzIdentML PeptideEvidence. ">PeptideEvidence</a> </td></tr>
<tr id="row_270_18_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeptideHit.html" target="_self">PeptideHit</a></td><td class="desc">Representation of a peptide hit </td></tr>
<tr id="row_270_19_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeptideIdentification.html" target="_self">PeptideIdentification</a></td><td class="desc">Represents the peptide hits for a spectrum </td></tr>
<tr id="row_270_20_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProteinHit.html" target="_self">ProteinHit</a></td><td class="desc">Representation of a protein hit </td></tr>
<tr id="row_270_21_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProteinIdentification.html" target="_self">ProteinIdentification</a></td><td class="desc">Representation of a protein identification run </td></tr>
<tr id="row_270_22_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ProteinIdentification_1_1SearchParameters.html" target="_self">ProteinIdentification::SearchParameters</a></td><td class="desc">Search parameters of the DB search </td></tr>
<tr id="row_270_23_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RichPeak1D.html" target="_self">RichPeak1D</a></td><td class="desc">A 1-dimensional raw data point or peak mith meta information </td></tr>
<tr id="row_270_24_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_270_24_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('270_24_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RichPeak2D.html" target="_self">RichPeak2D</a></td><td class="desc">A 2-dimensional raw data point or peak with meta information </td></tr>
<tr id="row_270_24_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_270_24_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('270_24_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseFeature.html" target="_self">BaseFeature</a></td><td class="desc">A basic LC-MS feature </td></tr>
<tr id="row_270_24_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusFeature.html" target="_self">ConsensusFeature</a></td><td class="desc">A 2-dimensional consensus feature </td></tr>
<tr id="row_270_24_0_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_270_24_0_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('270_24_0_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Feature.html" target="_self">Feature</a></td><td class="desc">An LC-MS feature </td></tr>
<tr id="row_270_24_0_1_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MRMFeature.html" target="_self">MRMFeature</a></td><td class="desc">A multi-chromatogram MRM feature </td></tr>
<tr id="row_270_25_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Sample.html" target="_self">Sample</a></td><td class="desc">Meta information about the sample </td></tr>
<tr id="row_270_26_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_270_26_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('270_26_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SampleTreatment.html" target="_self">SampleTreatment</a></td><td class="desc">Base class for sample treatments (<a class="el" href="classOpenMS_1_1Digestion.html" title="Meta information about digestion of a sample. ">Digestion</a>, <a class="el" href="classOpenMS_1_1Modification.html" title="Meta information about chemical modification of a sample. ">Modification</a>, <a class="el" href="classOpenMS_1_1Tagging.html" title="Meta information about tagging of a sample e.g. ICAT labeling. ">Tagging</a>, ...) </td></tr>
<tr id="row_270_26_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Digestion.html" target="_self">Digestion</a></td><td class="desc">Meta information about digestion of a sample </td></tr>
<tr id="row_270_26_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_270_26_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('270_26_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Modification.html" target="_self">Modification</a></td><td class="desc">Meta information about chemical modification of a sample </td></tr>
<tr id="row_270_26_1_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Tagging.html" target="_self">Tagging</a></td><td class="desc">Meta information about tagging of a sample e.g. ICAT labeling </td></tr>
<tr id="row_270_27_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ScanWindow.html" target="_self">ScanWindow</a></td><td class="desc">Scan window description </td></tr>
<tr id="row_270_28_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumIdentification.html" target="_self">SpectrumIdentification</a></td><td class="desc">Represents a object which can store the information of an analysisXML instance </td></tr>
<tr id="row_270_29_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_270_29_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('270_29_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumSettings.html" target="_self">SpectrumSettings</a></td><td class="desc">Representation of 1D spectrum settings </td></tr>
<tr id="row_270_29_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< OpenMS::Peak2D ></a></td><td class="desc"></td></tr>
<tr id="row_270_29_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< Peak1D ></a></td><td class="desc"></td></tr>
<tr id="row_270_29_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< PeakType ></a></td><td class="desc"></td></tr>
<tr id="row_270_29_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< RichPeak1D ></a></td><td class="desc"></td></tr>
<tr id="row_270_29_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_270_29_4_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('270_29_4_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum<></a></td><td class="desc"></td></tr>
<tr id="row_270_29_4_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BinnedSpectrum.html" target="_self">BinnedSpectrum</a></td><td class="desc">This is a binned representation of a PeakSpectrum </td></tr>
<tr id="row_270_29_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< PeakT ></a></td><td class="desc">The representation of a 1D spectrum </td></tr>
<tr id="row_271_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MetaInfoRegistry.html" target="_self">MetaInfoRegistry</a></td><td class="desc">Registry which assigns unique integer indices to strings </td></tr>
<tr id="row_272_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1LayerStatisticsDialog_1_1MetaStatsValue__.html" target="_self">LayerStatisticsDialog::MetaStatsValue_</a></td><td class="desc">Struct representing the statistics about one meta information </td></tr>
<tr id="row_273_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ModelDescription.html" target="_self">ModelDescription< D ></a></td><td class="desc">Stores the name and parameters of a model </td></tr>
<tr id="row_274_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ModelDescription.html" target="_self">ModelDescription< 2 ></a></td><td class="desc"></td></tr>
<tr id="row_275_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ModificationDefinition.html" target="_self">ModificationDefinition</a></td><td class="desc">Representation of modification definition </td></tr>
<tr id="row_276_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ModificationDefinitionsSet.html" target="_self">ModificationDefinitionsSet</a></td><td class="desc">Representation of a set of modification definitions </td></tr>
<tr id="row_277_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structModificationMassesResult.html" target="_self">ModificationMassesResult</a></td><td class="desc"></td></tr>
<tr id="row_278_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ModificationsDB.html" target="_self">ModificationsDB</a></td><td class="desc">Database which holds all residue modifications from UniMod </td></tr>
<tr id="row_279_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ModifierRep.html" target="_self">ModifierRep</a></td><td class="desc">Implements modification for suffix arrays </td></tr>
<tr id="row_280_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MRMRTNormalizer.html" target="_self">MRMRTNormalizer</a></td><td class="desc">The <a class="el" href="classOpenMS_1_1MRMRTNormalizer.html" title="The MRMRTNormalizer will find retention time peptides in data. ">MRMRTNormalizer</a> will find retention time peptides in data </td></tr>
<tr id="row_281_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenSwath_1_1MRMScoring.html" target="_self">MRMScoring</a></td><td class="desc">This class implements different scores for peaks found in SRM/MRM </td></tr>
<tr id="row_282_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MRMTransitionGroup.html" target="_self">MRMTransitionGroup< SpectrumType, TransitionType ></a></td><td class="desc">The representation of a transition group that has information about the individual chromatograms as well as the transitions it refers to </td></tr>
<tr id="row_283_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MRMTransitionGroup.html" target="_self">MRMTransitionGroup< SpectrumT, TransitionT ></a></td><td class="desc"></td></tr>
<tr id="row_284_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MS1FeatureMerger.html" target="_self">MS1FeatureMerger</a></td><td class="desc"></td></tr>
<tr id="row_285_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MS1Signal.html" target="_self">MS1Signal</a></td><td class="desc"></td></tr>
<tr id="row_286_" class="even"><td class="entry"><img id="arr_286_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('286_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MS2ConsensusSpectrum.html" target="_self">MS2ConsensusSpectrum</a></td><td class="desc"></td></tr>
<tr id="row_286_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_286_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('286_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ClusteredMS2ConsensusSpectrum.html" target="_self">ClusteredMS2ConsensusSpectrum</a></td><td class="desc"></td></tr>
<tr id="row_286_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MS2Feature.html" target="_self">MS2Feature</a></td><td class="desc"></td></tr>
<tr id="row_287_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MS2Fragment.html" target="_self">MS2Fragment</a></td><td class="desc"></td></tr>
<tr id="row_288_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MS2Info.html" target="_self">MS2Info</a></td><td class="desc"></td></tr>
<tr id="row_289_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ProteinResolver_1_1MSDGroup.html" target="_self">ProteinResolver::MSDGroup</a></td><td class="desc"></td></tr>
<tr id="row_290_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MsInspectFile.html" target="_self">MsInspectFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MsInspect files </td></tr>
<tr id="row_291_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSPeak.html" target="_self">MSPeak</a></td><td class="desc"></td></tr>
<tr id="row_292_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MultiGradient.html" target="_self">MultiGradient</a></td><td class="desc">A gradient of multiple colors and arbitrary distances between colors </td></tr>
<tr id="row_293_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTab.html" target="_self">MzTab</a></td><td class="desc">Data model of <a class="el" href="classOpenMS_1_1MzTab.html" title="Data model of MzTab files. Please see the official MzTab specification at https://code.google.com/p/mztab/. ">MzTab</a> files. Please see the official <a class="el" href="classOpenMS_1_1MzTab.html" title="Data model of MzTab files. Please see the official MzTab specification at https://code.google.com/p/mztab/. ">MzTab</a> specification at <a href="https://code.google.com/p/mztab/">https://code.google.com/p/mztab/</a> </td></tr>
<tr id="row_294_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabFile.html" target="_self">MzTabFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for <a class="el" href="classOpenMS_1_1MzTab.html" title="Data model of MzTab files. Please see the official MzTab specification at https://code.google.com/p/mztab/. ">MzTab</a> files </td></tr>
<tr id="row_295_"><td class="entry"><img id="arr_295_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('295_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabNullAbleInterface.html" target="_self">MzTabNullAbleInterface</a></td><td class="desc"></td></tr>
<tr id="row_295_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MzTabModification.html" target="_self">MzTabModification</a></td><td class="desc"></td></tr>
<tr id="row_295_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_295_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('295_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabNullAbleBase.html" target="_self">MzTabNullAbleBase</a></td><td class="desc"></td></tr>
<tr id="row_295_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabBoolean.html" target="_self">MzTabBoolean</a></td><td class="desc"></td></tr>
<tr id="row_295_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabDoubleList.html" target="_self">MzTabDoubleList</a></td><td class="desc"></td></tr>
<tr id="row_295_1_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabModificationList.html" target="_self">MzTabModificationList</a></td><td class="desc"></td></tr>
<tr id="row_295_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_295_2_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('295_2_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabNullNaNAndInfAbleInterface.html" target="_self">MzTabNullNaNAndInfAbleInterface</a></td><td class="desc"></td></tr>
<tr id="row_295_2_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_295_2_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('295_2_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabNullNaNAndInfAbleBase.html" target="_self">MzTabNullNaNAndInfAbleBase</a></td><td class="desc"></td></tr>
<tr id="row_295_2_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabDouble.html" target="_self">MzTabDouble</a></td><td class="desc"></td></tr>
<tr id="row_295_2_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabInteger.html" target="_self">MzTabInteger</a></td><td class="desc"></td></tr>
<tr id="row_295_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabParameter.html" target="_self">MzTabParameter</a></td><td class="desc"></td></tr>
<tr id="row_295_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabParameterList.html" target="_self">MzTabParameterList</a></td><td class="desc"></td></tr>
<tr id="row_295_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabSpectraRef.html" target="_self">MzTabSpectraRef</a></td><td class="desc"></td></tr>
<tr id="row_295_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabString.html" target="_self">MzTabString</a></td><td class="desc"></td></tr>
<tr id="row_295_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzTabStringList.html" target="_self">MzTabStringList</a></td><td class="desc"></td></tr>
<tr id="row_296_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MzTabPeptideSectionRow.html" target="_self">MzTabPeptideSectionRow</a></td><td class="desc"></td></tr>
<tr id="row_297_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MzTabProteinSectionRow.html" target="_self">MzTabProteinSectionRow</a></td><td class="desc"></td></tr>
<tr id="row_298_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MzTabSmallMoleculeSectionRow.html" target="_self">MzTabSmallMoleculeSectionRow</a></td><td class="desc"></td></tr>
<tr id="row_299_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MzTabSubIdMetaData.html" target="_self">MzTabSubIdMetaData</a></td><td class="desc"></td></tr>
<tr id="row_300_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MzTabUnitIdMetaData.html" target="_self">MzTabUnitIdMetaData</a></td><td class="desc"></td></tr>
<tr id="row_301_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1NonNegativeLeastSquaresSolver.html" target="_self">NonNegativeLeastSquaresSolver</a></td><td class="desc">Wrapper for a non-negative least squares (<a class="el" href="namespaceOpenMS_1_1NNLS.html">NNLS</a>) solver </td></tr>
<tr id="row_302_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1OMSSACSVFile.html" target="_self">OMSSACSVFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for OMSSACSV files </td></tr>
<tr id="row_303_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1OpenMSOSInfo.html" target="_self">OpenMSOSInfo</a></td><td class="desc"></td></tr>
<tr id="row_304_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1OpenSwath__Scores.html" target="_self">OpenSwath_Scores</a></td><td class="desc">A structure to hold the different scores computed by the <a class="el" href="classOpenMS_1_1FeatureFinder.html" title="The main feature finder class. ">FeatureFinder</a> </td></tr>
<tr id="row_305_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1OpenSwathDataAccessHelper.html" target="_self">OpenSwathDataAccessHelper</a></td><td class="desc">Several helpers to convert <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> datastructures to structures that implement the OpenSWATH interfaces </td></tr>
<tr id="row_306_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1OpenSwathHelper.html" target="_self">OpenSwathHelper</a></td><td class="desc">A helper class that is used by several OpenSWATH tools </td></tr>
<tr id="row_307_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1MS1FeatureMerger_1_1OPERATOR__FEATURE__TR.html" target="_self">MS1FeatureMerger::OPERATOR_FEATURE_TR</a></td><td class="desc"></td></tr>
<tr id="row_308_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1LCMS_1_1OPERATOR__FeatureCompare.html" target="_self">LCMS::OPERATOR_FeatureCompare</a></td><td class="desc"></td></tr>
<tr id="row_309_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1LCMS_1_1OPERATOR__MZ.html" target="_self">LCMS::OPERATOR_MZ</a></td><td class="desc"></td></tr>
<tr id="row_310_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1OptimizePick.html" target="_self">OptimizePick</a></td><td class="desc">This class provides the non-linear optimization of the peak parameters </td></tr>
<tr id="row_311_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PILISCrossValidation_1_1Option.html" target="_self">PILISCrossValidation::Option</a></td><td class="desc">This struct represents a cross validation option </td></tr>
<tr id="row_312_" class="even"><td class="entry"><img id="arr_312_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('312_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>pair</b></td><td class="desc"></td></tr>
<tr id="row_312_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HierarchicalClustering_1_1BoundingBox.html" target="_self">HierarchicalClustering< PointRef >::BoundingBox</a></td><td class="desc">Bounding box of cluster </td></tr>
<tr id="row_313_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Param.html" target="_self">Param</a></td><td class="desc">Management and storage of parameters / INI files </td></tr>
<tr id="row_314_" class="even"><td class="entry"><img id="arr_314_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('314_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>ParamEditorTemplate</b></td><td class="desc"></td></tr>
<tr id="row_314_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ParamEditor.html" target="_self">ParamEditor</a></td><td class="desc">A GUI for editing or viewing a <a class="el" href="classOpenMS_1_1Param.html" title="Management and storage of parameters / INI files. ">Param</a> object </td></tr>
<tr id="row_315_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Param_1_1ParamEntry.html" target="_self">Param::ParamEntry</a></td><td class="desc">Parameter entry used to store the actual information inside of a <a class="el" href="classOpenMS_1_1Param.html" title="Management and storage of parameters / INI files. ">Param</a> entry </td></tr>
<tr id="row_316_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ParameterInformation.html" target="_self">ParameterInformation</a></td><td class="desc">Struct that captures all information of a command line parameter </td></tr>
<tr id="row_317_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Param_1_1ParamIterator.html" target="_self">Param::ParamIterator</a></td><td class="desc">Forward const iterator for the <a class="el" href="classOpenMS_1_1Param.html" title="Management and storage of parameters / INI files. ">Param</a> class </td></tr>
<tr id="row_318_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Param_1_1ParamNode.html" target="_self">Param::ParamNode</a></td><td class="desc">Node inside a <a class="el" href="classOpenMS_1_1Param.html" title="Management and storage of parameters / INI files. ">Param</a> object which is used to build the internal tree </td></tr>
<tr id="row_319_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ims_1_1IMSIsotopeDistribution_1_1Peak.html" target="_self">IMSIsotopeDistribution::Peak</a></td><td class="desc">Structure that represents an isotope peak - pair of mass and abundance </td></tr>
<tr id="row_320_" class="even"><td class="entry"><img id="arr_320_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('320_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Peak1D.html" target="_self">Peak1D</a></td><td class="desc">A 1-dimensional raw data point or peak </td></tr>
<tr id="row_320_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Precursor.html" target="_self">Precursor</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Precursor.html" title="Precursor meta information. ">Precursor</a> meta information </td></tr>
<tr id="row_320_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RichPeak1D.html" target="_self">RichPeak1D</a></td><td class="desc">A 1-dimensional raw data point or peak mith meta information </td></tr>
<tr id="row_321_"><td class="entry"><img id="arr_321_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('321_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Peak2D.html" target="_self">Peak2D</a></td><td class="desc">A 2-dimensional raw data point or peak </td></tr>
<tr id="row_321_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_321_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('321_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureHandle.html" target="_self">FeatureHandle</a></td><td class="desc">Representation of a <a class="el" href="classOpenMS_1_1Peak2D.html" title="A 2-dimensional raw data point or peak. ">Peak2D</a>, <a class="el" href="classOpenMS_1_1RichPeak2D.html" title="A 2-dimensional raw data point or peak with meta information. ">RichPeak2D</a> or <a class="el" href="classOpenMS_1_1Feature.html" title="An LC-MS feature. ">Feature</a> </td></tr>
<tr id="row_321_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureHandle_1_1FeatureHandleMutable__.html" target="_self">FeatureHandle::FeatureHandleMutable_</a></td><td class="desc">Helper class returned by <a class="el" href="classOpenMS_1_1FeatureHandle.html#acc3a640affdad237684c69d735ec186f" title="Override (most of all) constness. ">FeatureHandle::asMutable()</a>, which see </td></tr>
<tr id="row_321_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RichPeak2D.html" target="_self">RichPeak2D</a></td><td class="desc">A 2-dimensional raw data point or peak with meta information </td></tr>
<tr id="row_322_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PeakPickerCWT_1_1PeakArea__.html" target="_self">PeakPickerCWT::PeakArea_</a></td><td class="desc">Class for the internal peak representation </td></tr>
<tr id="row_323_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakFileOptions.html" target="_self">PeakFileOptions</a></td><td class="desc">Options for loading files containing peak data </td></tr>
<tr id="row_324_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PeakIndex.html" target="_self">PeakIndex</a></td><td class="desc">Index of a peak or feature </td></tr>
<tr id="row_325_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakIntensityPredictor.html" target="_self">PeakIntensityPredictor</a></td><td class="desc">Predict peak heights of peptides based on Local Linear Map model </td></tr>
<tr id="row_326_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PeakShape.html" target="_self">PeakShape</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Internal.html" title="Namespace used to hide implementation details from users. ">Internal</a> representation of a peak shape (used by the <a class="el" href="classOpenMS_1_1PeakPickerCWT.html" title="This class implements a peak picking algorithm using wavelet techniques. ">PeakPickerCWT</a>) </td></tr>
<tr id="row_327_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakTypeEstimator.html" target="_self">PeakTypeEstimator</a></td><td class="desc">Estimates if the data of a spectrum is raw data or peak data </td></tr>
<tr id="row_328_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakWidthEstimator.html" target="_self">PeakWidthEstimator</a></td><td class="desc">This class implements a peak width estimation algorithm best suited for high resolution MS data (FT-ICR-MS, Orbitrap). Peaks are detected and a spline is fitted to the raw data in a window around the peak. Then a search for to the half-maximum is performed on the spline to the left and right of the peak maximum. The Full Width at the Half Maximum is collected. Finally a linear regression is performed to determine FWHM(m/z) </td></tr>
<tr id="row_329_"><td class="entry"><img id="arr_329_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('329_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1OptimizationFunctions_1_1PenaltyFactors.html" target="_self">PenaltyFactors</a></td><td class="desc">Class for the penalty factors used during the optimization </td></tr>
<tr id="row_329_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1OptimizationFunctions_1_1PenaltyFactorsIntensity.html" target="_self">PenaltyFactorsIntensity</a></td><td class="desc">Class for the penalty factors used during the optimization </td></tr>
<tr id="row_330_" class="even"><td class="entry"><img id="arr_330_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('330_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PepIterator.html" target="_self">PepIterator</a></td><td class="desc">Abstract base class for different peptide iterators </td></tr>
<tr id="row_330_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_330_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('330_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EdwardsLippertIterator.html" target="_self">EdwardsLippertIterator</a></td><td class="desc">Finds all Peptide Candidates with given masses and given fasta file </td></tr>
<tr id="row_330_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EdwardsLippertIteratorTryptic.html" target="_self">EdwardsLippertIteratorTryptic</a></td><td class="desc"><a class="el" href="classOpenMS_1_1EdwardsLippertIterator.html" title="finds all Peptide Candidates with given masses and given fasta file ">EdwardsLippertIterator</a> that only retrieves tryptic seqences </td></tr>
<tr id="row_330_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FastaIterator.html" target="_self">FastaIterator</a></td><td class="desc">Iterator over FASTA file </td></tr>
<tr id="row_330_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FastaIteratorIntern.html" target="_self">FastaIteratorIntern</a></td><td class="desc">Iterator for a FASTA file </td></tr>
<tr id="row_330_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TrypticIterator.html" target="_self">TrypticIterator</a></td><td class="desc">Finds all tryptic Peptides with every missed cleavage </td></tr>
<tr id="row_331_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PepNovoInfile.html" target="_self">PepNovoInfile</a></td><td class="desc">PepNovo input file adapter </td></tr>
<tr id="row_332_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PepNovoOutfile.html" target="_self">PepNovoOutfile</a></td><td class="desc">Representation of a PepNovo output file </td></tr>
<tr id="row_333_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PILISCrossValidation_1_1Peptide.html" target="_self">PILISCrossValidation::Peptide</a></td><td class="desc">This struct represents a peptide spectrum pair </td></tr>
<tr id="row_334_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1Peptide.html" target="_self">Peptide</a></td><td class="desc"></td></tr>
<tr id="row_335_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PeptideAndProteinQuant_1_1PeptideData.html" target="_self">PeptideAndProteinQuant::PeptideData</a></td><td class="desc">Quantitative and associated data for a peptide </td></tr>
<tr id="row_336_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ProteinResolver_1_1PeptideEntry.html" target="_self">ProteinResolver::PeptideEntry</a></td><td class="desc"></td></tr>
<tr id="row_337_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompNovoIdentificationBase_1_1Permut.html" target="_self">CompNovoIdentificationBase::Permut</a></td><td class="desc">Simple class to store permutations and a score </td></tr>
<tr id="row_338_" class="even"><td class="entry"><img id="arr_338_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('338_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PersistentObject.html" target="_self">PersistentObject</a></td><td class="desc">Base class for all persistent objects </td></tr>
<tr id="row_338_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram.html" target="_self">MSChromatogram< ChromatogramPeakType ></a></td><td class="desc"></td></tr>
<tr id="row_338_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< OpenMS::Peak1D ></a></td><td class="desc"></td></tr>
<tr id="row_338_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< Peak1D ></a></td><td class="desc"></td></tr>
<tr id="row_338_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< SimPointType ></a></td><td class="desc"></td></tr>
<tr id="row_338_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< OpenMS::Peak2D ></a></td><td class="desc"></td></tr>
<tr id="row_338_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< Peak1D ></a></td><td class="desc"></td></tr>
<tr id="row_338_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< PeakType ></a></td><td class="desc"></td></tr>
<tr id="row_338_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< RichPeak1D ></a></td><td class="desc"></td></tr>
<tr id="row_338_8_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum<></a></td><td class="desc"></td></tr>
<tr id="row_338_9_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram.html" target="_self">MSChromatogram< PeakT ></a></td><td class="desc">The representation of a chromatogram </td></tr>
<tr id="row_338_10_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< PeakT, ChromatogramPeakT ></a></td><td class="desc">Representation of a mass spectrometry experiment </td></tr>
<tr id="row_338_11_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< PeakT ></a></td><td class="desc">The representation of a 1D spectrum </td></tr>
<tr id="row_339_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakShape_1_1PositionLess.html" target="_self">PeakShape::PositionLess</a></td><td class="desc">Comparison of mz_positions </td></tr>
<tr id="row_340_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PrecisionWrapper.html" target="_self">PrecisionWrapper< FloatingPointType ></a></td><td class="desc">Wrapper class to implement output with appropriate precision. See <a class="el" href="namespaceOpenMS.html#af27ce8637a6a7cc24cc6fcbd3358791d" title="Wrapper function that sets the appropriate precision for output temporarily. The original precision i...">precisionWrapper()</a> </td></tr>
<tr id="row_341_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FuzzyStringComparator_1_1PrefixInfo__.html" target="_self">FuzzyStringComparator::PrefixInfo_</a></td><td class="desc">Wrapper for the prefix information computed for the failure report </td></tr>
<tr id="row_342_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1SimpleExtender_1_1IndexWithPriority_1_1PriorityLess.html" target="_self">SimpleExtender< PeakType, FeatureType >::IndexWithPriority::PriorityLess</a></td><td class="desc">Compares two indizes by priority </td></tr>
<tr id="row_343_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ProbablePhosphoSites.html" target="_self">ProbablePhosphoSites</a></td><td class="desc"></td></tr>
<tr id="row_344_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProcessData.html" target="_self">ProcessData</a></td><td class="desc"></td></tr>
<tr id="row_345_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProductModel.html" target="_self">ProductModel< D ></a></td><td class="desc">Class for product models i.e. models with D independent dimensions </td></tr>
<tr id="row_346_" class="even"><td class="entry"><img id="arr_346_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('346_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProgressLogger.html" target="_self">ProgressLogger</a></td><td class="desc">Base class for all classes that want to report their progess </td></tr>
<tr id="row_346_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AccurateMassSearchEngine.html" target="_self">AccurateMassSearchEngine</a></td><td class="desc"></td></tr>
<tr id="row_346_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AverageLinkage.html" target="_self">AverageLinkage</a></td><td class="desc"><a class="el" href="classOpenMS_1_1AverageLinkage.html" title="AverageLinkage ClusterMethod. ">AverageLinkage</a> ClusterMethod </td></tr>
<tr id="row_346_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseGroupFinder.html" target="_self">BaseGroupFinder</a></td><td class="desc">The base class of all element group finding algorithms </td></tr>
<tr id="row_346_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseSuperimposer.html" target="_self">BaseSuperimposer</a></td><td class="desc">The base class of all superimposer algorithms </td></tr>
<tr id="row_346_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CachedmzML.html" target="_self">CachedmzML</a></td><td class="desc">An class that uses on-disk caching to read and write spectra and chromatograms </td></tr>
<tr id="row_346_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ChromatogramExtractor.html" target="_self">ChromatogramExtractor</a></td><td class="desc">The <a class="el" href="classOpenMS_1_1ChromatogramExtractor.html" title="The ChromatogramExtractor extracts chromatograms from a mzML file. ">ChromatogramExtractor</a> extracts chromatograms from a mzML file </td></tr>
<tr id="row_346_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CompleteLinkage.html" target="_self">CompleteLinkage</a></td><td class="desc"><a class="el" href="classOpenMS_1_1CompleteLinkage.html" title="CompleteLinkage ClusterMethod. ">CompleteLinkage</a> ClusterMethod </td></tr>
<tr id="row_346_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConfidenceScoring.html" target="_self">ConfidenceScoring</a></td><td class="desc"></td></tr>
<tr id="row_346_8_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusXMLFile.html" target="_self">ConsensusXMLFile</a></td><td class="desc">This class provides Input functionality for ConsensusMaps and Output functionality for alignments and quantitation </td></tr>
<tr id="row_346_9_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DTA2DFile.html" target="_self">DTA2DFile</a></td><td class="desc">DTA2D <a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter </td></tr>
<tr id="row_346_10_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ElutionPeakDetection.html" target="_self">ElutionPeakDetection</a></td><td class="desc">Extracts chromatographic peaks from a mass trace </td></tr>
<tr id="row_346_11_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFinder.html" target="_self">FeatureFinder</a></td><td class="desc">The main feature finder class </td></tr>
<tr id="row_346_12_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureFindingMetabo.html" target="_self">FeatureFindingMetabo</a></td><td class="desc"></td></tr>
<tr id="row_346_13_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureXMLFile.html" target="_self">FeatureXMLFile</a></td><td class="desc">This class provides Input/Output functionality for feature maps </td></tr>
<tr id="row_346_14_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GaussFilter.html" target="_self">GaussFilter</a></td><td class="desc">This class represents a Gaussian lowpass-filter which works on uniform as well as on non-uniform profile data </td></tr>
<tr id="row_346_15_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InternalCalibration.html" target="_self">InternalCalibration</a></td><td class="desc">A simple calibration method using linear interpolation of given reference masses </td></tr>
<tr id="row_346_16_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IonizationSimulation.html" target="_self">IonizationSimulation</a></td><td class="desc">Simulates Protein ionization </td></tr>
<tr id="row_346_17_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LinearResampler.html" target="_self">LinearResampler</a></td><td class="desc">Linear Resampling of raw data </td></tr>
<tr id="row_346_18_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MapAlignmentAlgorithm.html" target="_self">MapAlignmentAlgorithm</a></td><td class="desc">Base class for all map-alignment algorithms </td></tr>
<tr id="row_346_19_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MascotGenericFile.html" target="_self">MascotGenericFile</a></td><td class="desc">Mascot input file adapter </td></tr>
<tr id="row_346_20_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MascotInfile.html" target="_self">MascotInfile</a></td><td class="desc">Mascot input file adapter </td></tr>
<tr id="row_346_21_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MassTraceDetection.html" target="_self">MassTraceDetection</a></td><td class="desc">A mass trace extraction method that gathers peaks similar in m/z and moving along retention time </td></tr>
<tr id="row_346_22_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MorphologicalFilter.html" target="_self">MorphologicalFilter</a></td><td class="desc">This class implements baseline filtering operations using methods from mathematical morphology </td></tr>
<tr id="row_346_23_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MRMDecoy.html" target="_self">MRMDecoy</a></td><td class="desc">This class generates a <a class="el" href="classOpenMS_1_1TargetedExperiment.html" title="This class stores an prediction of an SRM/MRM transition. ">TargetedExperiment</a> object with decoys based on a <a class="el" href="classOpenMS_1_1TargetedExperiment.html" title="This class stores an prediction of an SRM/MRM transition. ">TargetedExperiment</a> object </td></tr>
<tr id="row_346_24_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MRMFeatureFinderScoring.html" target="_self">MRMFeatureFinderScoring</a></td><td class="desc">The MRMFeatureFinder finds and scores peaks of transitions that coelute </td></tr>
<tr id="row_346_25_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MS2File.html" target="_self">MS2File</a></td><td class="desc">MS2 input file adapter </td></tr>
<tr id="row_346_26_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSim.html" target="_self">MSSim</a></td><td class="desc">Central class for simulation of mass spectrometry experiments </td></tr>
<tr id="row_346_27_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzDataFile.html" target="_self">MzDataFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MzData files </td></tr>
<tr id="row_346_28_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzIdentMLFile.html" target="_self">MzIdentMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MzIdentML files </td></tr>
<tr id="row_346_29_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzMLFile.html" target="_self">MzMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MzML files </td></tr>
<tr id="row_346_30_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzQuantMLFile.html" target="_self">MzQuantMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MzQuantML files </td></tr>
<tr id="row_346_31_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzXMLFile.html" target="_self">MzXMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MzXML 2.1 files </td></tr>
<tr id="row_346_32_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakPickerCWT.html" target="_self">PeakPickerCWT</a></td><td class="desc">This class implements a peak picking algorithm using wavelet techniques </td></tr>
<tr id="row_346_33_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakPickerHiRes.html" target="_self">PeakPickerHiRes</a></td><td class="desc">This class implements a fast peak-picking algorithm best suited for high resolution MS data (FT-ICR-MS, Orbitrap). In high resolution data, the signals of ions with similar mass-to-charge ratios (m/z) exhibit little or no overlapping and therefore allow for a clear separation. Furthermore, ion signals tend to show well-defined peak shapes with narrow peak width </td></tr>
<tr id="row_346_34_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakPickerSH.html" target="_self">PeakPickerSH</a></td><td class="desc"></td></tr>
<tr id="row_346_35_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1QcMLFile.html" target="_self">QcMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for QcML files </td></tr>
<tr id="row_346_36_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RawMSSignalSimulation.html" target="_self">RawMSSignalSimulation</a></td><td class="desc">Simulates MS signals for a given set of peptides </td></tr>
<tr id="row_346_37_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SavitzkyGolayFilter.html" target="_self">SavitzkyGolayFilter</a></td><td class="desc">Computes the Savitzky-Golay filter coefficients using QR decomposition </td></tr>
<tr id="row_346_38_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SignalToNoiseEstimator.html" target="_self">SignalToNoiseEstimator< Container ></a></td><td class="desc">This class represents the abstract base class of a signal to noise estimator </td></tr>
<tr id="row_346_39_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SILACAnalyzer.html" target="_self">SILACAnalyzer</a></td><td class="desc">Algorithm to use for SILACAnalysis </td></tr>
<tr id="row_346_40_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SILACFiltering.html" target="_self">SILACFiltering</a></td><td class="desc">Filtering for SILAC data </td></tr>
<tr id="row_346_41_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SingleLinkage.html" target="_self">SingleLinkage</a></td><td class="desc"><a class="el" href="classOpenMS_1_1SingleLinkage.html" title="SingleLinkage ClusterMethod. ">SingleLinkage</a> ClusterMethod </td></tr>
<tr id="row_346_42_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SVMWrapper.html" target="_self">SVMWrapper</a></td><td class="desc">Serves as a wrapper for the libsvm </td></tr>
<tr id="row_346_43_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOFCalibration.html" target="_self">TOFCalibration</a></td><td class="desc">This class implements an external calibration for TOF data using external calibrant spectra </td></tr>
<tr id="row_346_44_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ToolDescriptionFile.html" target="_self">ToolDescriptionFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for ToolDescriptor files </td></tr>
<tr id="row_346_45_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TraMLFile.html" target="_self">TraMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for HUPO PSI TraML files </td></tr>
<tr id="row_346_46_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TransitionTSVReader.html" target="_self">TransitionTSVReader</a></td><td class="desc">This class can convert TraML and TSV files into each other </td></tr>
<tr id="row_346_47_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1XMassFile.html" target="_self">XMassFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for 'XMass Analysis (fid)' files </td></tr>
<tr id="row_346_48_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SignalToNoiseEstimator.html" target="_self">SignalToNoiseEstimator< OpenMS::OpenMS::MSSpectrum< PeakT > ></a></td><td class="desc"></td></tr>
<tr id="row_347_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1Protein.html" target="_self">Protein</a></td><td class="desc"></td></tr>
<tr id="row_348_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PeptideAndProteinQuant_1_1ProteinData.html" target="_self">PeptideAndProteinQuant::ProteinData</a></td><td class="desc">Quantitative and associated data for a protein </td></tr>
<tr id="row_349_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ProteinResolver_1_1ProteinEntry.html" target="_self">ProteinResolver::ProteinEntry</a></td><td class="desc"></td></tr>
<tr id="row_350_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ProteinIdentification_1_1ProteinGroup.html" target="_self">ProteinIdentification::ProteinGroup</a></td><td class="desc">Bundles multiple (e.g. indistinguishable) proteins in a group </td></tr>
<tr id="row_351_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProteinInference.html" target="_self">ProteinInference</a></td><td class="desc">[experimental class] given a peptide quantitation, infer corresponding protein quantities </td></tr>
<tr id="row_352_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PSProteinInference.html" target="_self">PSProteinInference</a></td><td class="desc">This class implements protein inference for the precursor ion selection strategies </td></tr>
<tr id="row_353_"><td class="entry"><img id="arr_353_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('353_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQApplication.html" target="_self">QApplication</a></td><td class="desc"></td></tr>
<tr id="row_353_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1QApplicationTOPP.html" target="_self">QApplicationTOPP</a></td><td class="desc">Extension to the <a class="el" href="classQApplication.html">QApplication</a> for running TOPPs GUI tools </td></tr>
<tr id="row_354_" class="even"><td class="entry"><img id="arr_354_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('354_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQDate.html" target="_self">QDate</a></td><td class="desc"></td></tr>
<tr id="row_354_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Date.html" target="_self">Date</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Date.html" title="Date Class. ">Date</a> Class </td></tr>
<tr id="row_355_"><td class="entry"><img id="arr_355_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('355_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQDateTime.html" target="_self">QDateTime</a></td><td class="desc"></td></tr>
<tr id="row_355_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DateTime.html" target="_self">DateTime</a></td><td class="desc"><a class="el" href="classOpenMS_1_1DateTime.html" title="DateTime Class. ">DateTime</a> Class </td></tr>
<tr id="row_356_" class="even"><td class="entry"><img id="arr_356_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('356_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQDialog.html" target="_self">QDialog</a></td><td class="desc"></td></tr>
<tr id="row_356_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DataFilterDialog.html" target="_self">DataFilterDialog</a></td><td class="desc">Dialog for creating and changing a DataFilter </td></tr>
<tr id="row_356_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DBOpenDialog.html" target="_self">DBOpenDialog</a></td><td class="desc">Dialog that allow selecting a spectrum from a DB </td></tr>
<tr id="row_356_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureEditDialog.html" target="_self">FeatureEditDialog</a></td><td class="desc">Dialog for editing a feature </td></tr>
<tr id="row_356_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HistogramDialog.html" target="_self">HistogramDialog</a></td><td class="desc">Dialog that show a <a class="el" href="classOpenMS_1_1HistogramWidget.html" title="Widget which can visualize a histogram. ">HistogramWidget</a> </td></tr>
<tr id="row_356_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1Spectrum1DPrefDialog.html" target="_self">Spectrum1DPrefDialog</a></td><td class="desc">Preferences dialog for <a class="el" href="classOpenMS_1_1Spectrum1DWidget.html" title="Widget for visualization of several spectra. ">Spectrum1DWidget</a> </td></tr>
<tr id="row_356_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1Spectrum2DPrefDialog.html" target="_self">Spectrum2DPrefDialog</a></td><td class="desc">Preferences dialog for <a class="el" href="classOpenMS_1_1Spectrum2DWidget.html" title="Widget for 2D-visualization of peak map and feature map data. ">Spectrum2DWidget</a> </td></tr>
<tr id="row_356_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1Spectrum3DPrefDialog.html" target="_self">Spectrum3DPrefDialog</a></td><td class="desc">Preferences dialog for <a class="el" href="classOpenMS_1_1Spectrum3DWidget.html" title="Widget for 3D-visualization of map data. ">Spectrum3DWidget</a> </td></tr>
<tr id="row_356_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1TOPPViewPrefDialog.html" target="_self">TOPPViewPrefDialog</a></td><td class="desc">Preferences dialog for TOPPView </td></tr>
<tr id="row_356_8_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1LayerStatisticsDialog.html" target="_self">LayerStatisticsDialog</a></td><td class="desc">Dialog showing statistics about the data of the current layer </td></tr>
<tr id="row_356_9_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ListEditor.html" target="_self">ListEditor</a></td><td class="desc">Editor for editing int, double and string lists (including output and input file lists) </td></tr>
<tr id="row_356_10_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MetaDataBrowser.html" target="_self">MetaDataBrowser</a></td><td class="desc">A meta data visualization widget </td></tr>
<tr id="row_356_11_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SaveImageDialog.html" target="_self">SaveImageDialog</a></td><td class="desc">Dialog for saving an image </td></tr>
<tr id="row_356_12_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum1DGoToDialog.html" target="_self">Spectrum1DGoToDialog</a></td><td class="desc">Simple goto/set visible area dialog for exact placement of the viewing window </td></tr>
<tr id="row_356_13_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum2DGoToDialog.html" target="_self">Spectrum2DGoToDialog</a></td><td class="desc">GoTo dialog used to zoom to a m/z and retention time range or to a feature </td></tr>
<tr id="row_356_14_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumAlignmentDialog.html" target="_self">SpectrumAlignmentDialog</a></td><td class="desc">Lets the user select two spectra and set the parameters for the spectrum alignment </td></tr>
<tr id="row_356_15_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TheoreticalSpectrumGenerationDialog.html" target="_self">TheoreticalSpectrumGenerationDialog</a></td><td class="desc">Dialog which allows to enter an AA sequence and generates a theoretical spectrum for it </td></tr>
<tr id="row_356_16_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ToolsDialog.html" target="_self">ToolsDialog</a></td><td class="desc">TOPP tool selection dialog </td></tr>
<tr id="row_356_17_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASInputFileDialog.html" target="_self">TOPPASInputFileDialog</a></td><td class="desc">Dialog which allows to specify an input file </td></tr>
<tr id="row_356_18_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASInputFilesDialog.html" target="_self">TOPPASInputFilesDialog</a></td><td class="desc">Dialog which allows to specify a list of input files </td></tr>
<tr id="row_356_19_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASIOMappingDialog.html" target="_self">TOPPASIOMappingDialog</a></td><td class="desc">Dialog which allows to configure the input/output parameter mapping of an edge </td></tr>
<tr id="row_356_20_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASOutputFilesDialog.html" target="_self">TOPPASOutputFilesDialog</a></td><td class="desc">Dialog which allows to specify the directory for the output files </td></tr>
<tr id="row_356_21_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASToolConfigDialog.html" target="_self">TOPPASToolConfigDialog</a></td><td class="desc">TOPP tool configuration dialog </td></tr>
<tr id="row_356_22_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASVertexNameDialog.html" target="_self">TOPPASVertexNameDialog</a></td><td class="desc">Dialog which allows to change the name of an input vertex </td></tr>
<tr id="row_356_23_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPViewOpenDialog.html" target="_self">TOPPViewOpenDialog</a></td><td class="desc">Dataset opening options for TOPPView </td></tr>
<tr id="row_357_"><td class="entry"><img id="arr_357_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('357_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQFileSystemWatcher.html" target="_self">QFileSystemWatcher</a></td><td class="desc"></td></tr>
<tr id="row_357_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FileWatcher.html" target="_self">FileWatcher</a></td><td class="desc">Watcher that monitors file changes </td></tr>
<tr id="row_358_" class="even"><td class="entry"><img id="arr_358_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('358_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQGLWidget.html" target="_self">QGLWidget</a></td><td class="desc"></td></tr>
<tr id="row_358_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum3DOpenGLCanvas.html" target="_self">Spectrum3DOpenGLCanvas</a></td><td class="desc">OpenGL Canvas for 3D-visualization of map data </td></tr>
<tr id="row_359_"><td class="entry"><img id="arr_359_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('359_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQGraphicsItem.html" target="_self">QGraphicsItem</a></td><td class="desc"></td></tr>
<tr id="row_359_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASEdge.html" target="_self">TOPPASEdge</a></td><td class="desc">An edge representing a data flow in TOPPAS </td></tr>
<tr id="row_359_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_359_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('359_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASVertex.html" target="_self">TOPPASVertex</a></td><td class="desc">The base class of the different vertex classes </td></tr>
<tr id="row_359_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASInputFileListVertex.html" target="_self">TOPPASInputFileListVertex</a></td><td class="desc">A vertex representing an input file list </td></tr>
<tr id="row_359_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASMergerVertex.html" target="_self">TOPPASMergerVertex</a></td><td class="desc">A special vertex that allows to merge several inputs </td></tr>
<tr id="row_359_1_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASOutputFileListVertex.html" target="_self">TOPPASOutputFileListVertex</a></td><td class="desc">A vertex representing an output file list </td></tr>
<tr id="row_359_1_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASToolVertex.html" target="_self">TOPPASToolVertex</a></td><td class="desc">A vertex representing a TOPP tool </td></tr>
<tr id="row_360_" class="even"><td class="entry"><img id="arr_360_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('360_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQGraphicsScene.html" target="_self">QGraphicsScene</a></td><td class="desc"></td></tr>
<tr id="row_360_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASScene.html" target="_self">TOPPASScene</a></td><td class="desc">A container for all visual items of a TOPPAS workflow </td></tr>
<tr id="row_361_"><td class="entry"><img id="arr_361_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('361_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQGraphicsView.html" target="_self">QGraphicsView</a></td><td class="desc"></td></tr>
<tr id="row_361_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASWidget.html" target="_self">TOPPASWidget</a></td><td class="desc">Widget visualizing and allowing to edit TOPP pipelines </td></tr>
<tr id="row_362_" class="even"><td class="entry"><img id="arr_362_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('362_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQItemDelegate.html" target="_self">QItemDelegate</a></td><td class="desc"></td></tr>
<tr id="row_362_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1ListEditorDelegate.html" target="_self">ListEditorDelegate</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Internal.html" title="Namespace used to hide implementation details from users. ">Internal</a> delegate class </td></tr>
<tr id="row_362_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1ParamEditorDelegate.html" target="_self">ParamEditorDelegate</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Internal.html" title="Namespace used to hide implementation details from users. ">Internal</a> delegate class for <a class="el" href="classQTreeWidget.html">QTreeWidget</a> </td></tr>
<tr id="row_363_"><td class="entry"><img id="arr_363_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('363_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQLineEdit.html" target="_self">QLineEdit</a></td><td class="desc"></td></tr>
<tr id="row_363_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1OpenMSLineEdit.html" target="_self">OpenMSLineEdit</a></td><td class="desc">Custom <a class="el" href="classQLineEdit.html">QLineEdit</a> which emits a signal when losing focus (such that we can commit its data) </td></tr>
<tr id="row_364_" class="even"><td class="entry"><img id="arr_364_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('364_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQListWidget.html" target="_self">QListWidget</a></td><td class="desc"></td></tr>
<tr id="row_364_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1ListTable.html" target="_self">ListTable</a></td><td class="desc"></td></tr>
<tr id="row_365_"><td class="entry"><img id="arr_365_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('365_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQMainWindow.html" target="_self">QMainWindow</a></td><td class="desc"></td></tr>
<tr id="row_365_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IDEvaluationBase.html" target="_self">IDEvaluationBase</a></td><td class="desc">Main window of the IDEvaluation tool </td></tr>
<tr id="row_365_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1INIFileEditorWindow.html" target="_self">INIFileEditorWindow</a></td><td class="desc">Shows the <a class="el" href="classOpenMS_1_1ParamEditor.html" title="A GUI for editing or viewing a Param object. ">ParamEditor</a> widget in a <a class="el" href="classQMainWindow.html">QMainWindow</a> with a toolbar </td></tr>
<tr id="row_365_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASBase.html" target="_self">TOPPASBase</a></td><td class="desc">Main window of the TOPPAS tool </td></tr>
<tr id="row_365_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPViewBase.html" target="_self">TOPPViewBase</a></td><td class="desc">Main window of TOPPView tool </td></tr>
<tr id="row_366_" class="even"><td class="entry"><img id="arr_366_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('366_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQObject.html" target="_self">QObject</a></td><td class="desc"></td></tr>
<tr id="row_366_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MascotRemoteQuery.html" target="_self">MascotRemoteQuery</a></td><td class="desc">Class which handles the communication between <a class="el" href="namespaceOpenMS.html" title="Main OpenMS namespace. ">OpenMS</a> and the Mascot server </td></tr>
<tr id="row_366_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASEdge.html" target="_self">TOPPASEdge</a></td><td class="desc">An edge representing a data flow in TOPPAS </td></tr>
<tr id="row_366_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASResource.html" target="_self">TOPPASResource</a></td><td class="desc">Represents a data resource for TOPPAS workflows </td></tr>
<tr id="row_366_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASResources.html" target="_self">TOPPASResources</a></td><td class="desc">A dictionary mapping string keys to lists of <a class="el" href="classOpenMS_1_1TOPPASResource.html" title="Represents a data resource for TOPPAS workflows. ">TOPPASResource</a> objects </td></tr>
<tr id="row_366_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASVertex.html" target="_self">TOPPASVertex</a></td><td class="desc">The base class of the different vertex classes </td></tr>
<tr id="row_366_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_366_5_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('366_5_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPViewBehaviorInterface.html" target="_self">TOPPViewBehaviorInterface</a></td><td class="desc">Interface class to model different behaviors of TOPPView </td></tr>
<tr id="row_366_5_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPViewIdentificationViewBehavior.html" target="_self">TOPPViewIdentificationViewBehavior</a></td><td class="desc">Behavior of TOPPView in identification mode </td></tr>
<tr id="row_366_5_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPViewSpectraViewBehavior.html" target="_self">TOPPViewSpectraViewBehavior</a></td><td class="desc">Behavior of TOPPView in spectra view mode </td></tr>
<tr id="row_367_"><td class="entry"><img id="arr_367_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('367_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQProcess.html" target="_self">QProcess</a></td><td class="desc"></td></tr>
<tr id="row_367_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FakeProcess.html" target="_self">FakeProcess</a></td><td class="desc">A <a class="el" href="classOpenMS_1_1FakeProcess.html" title="A FakeProcess class. ">FakeProcess</a> class </td></tr>
<tr id="row_368_" class="even"><td class="entry"><img id="arr_368_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('368_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQTabBar.html" target="_self">QTabBar</a></td><td class="desc"></td></tr>
<tr id="row_368_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EnhancedTabBar.html" target="_self">EnhancedTabBar</a></td><td class="desc">Convenience tab bar implementation </td></tr>
<tr id="row_368_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASTabBar.html" target="_self">TOPPASTabBar</a></td><td class="desc">Convenience tab bar implementation </td></tr>
<tr id="row_369_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1QTCluster.html" target="_self">QTCluster</a></td><td class="desc">A representation of a QT cluster used for feature grouping </td></tr>
<tr id="row_370_" class="even"><td class="entry"><img id="arr_370_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('370_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQTextEdit.html" target="_self">QTextEdit</a></td><td class="desc"></td></tr>
<tr id="row_370_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASLogWindow.html" target="_self">TOPPASLogWindow</a></td><td class="desc"><a class="el" href="classQTextEdit.html">QTextEdit</a> implementation with a "clear" button in the context menu </td></tr>
<tr id="row_371_"><td class="entry"><img id="arr_371_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('371_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQTreeWidget.html" target="_self">QTreeWidget</a></td><td class="desc"></td></tr>
<tr id="row_371_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1ParamTree.html" target="_self">ParamTree</a></td><td class="desc"><a class="el" href="classQTreeWidget.html">QTreeWidget</a> that emits a signal whenever a new row is selected </td></tr>
<tr id="row_371_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASTreeView.html" target="_self">TOPPASTreeView</a></td><td class="desc">Tree view implementation for the list of TOPP tools </td></tr>
<tr id="row_372_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1QcMLFile_1_1QualityParameter.html" target="_self">QcMLFile::QualityParameter</a></td><td class="desc">Representation of a quality parameter </td></tr>
<tr id="row_373_"><td class="entry"><img id="arr_373_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('373_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQWidget.html" target="_self">QWidget</a></td><td class="desc"></td></tr>
<tr id="row_373_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AxisWidget.html" target="_self">AxisWidget</a></td><td class="desc">Widget that represents an axis of a graph </td></tr>
<tr id="row_373_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_373_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('373_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1BaseVisualizerGUI.html" target="_self">BaseVisualizerGUI</a></td><td class="desc">A base class for all visualizer classes </td></tr>
<tr id="row_373_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AcquisitionInfoVisualizer.html" target="_self">AcquisitionInfoVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1AcquisitionInfo.html" title="Description of the combination of raw data to a single spectrum. ">AcquisitionInfo</a> objects </td></tr>
<tr id="row_373_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AcquisitionVisualizer.html" target="_self">AcquisitionVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1Acquisition.html" title="Information about one raw data spectrum that was combined with several other raw data spectra...">Acquisition</a> objects </td></tr>
<tr id="row_373_1_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ContactPersonVisualizer.html" target="_self">ContactPersonVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1ContactPerson.html" title="Contact person information. ">ContactPerson</a> objects </td></tr>
<tr id="row_373_1_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DataProcessingVisualizer.html" target="_self">DataProcessingVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1DataProcessing.html" title="Descripton of the applied preprocessing steps. ">DataProcessing</a> objects </td></tr>
<tr id="row_373_1_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DigestionVisualizer.html" target="_self">DigestionVisualizer</a></td><td class="desc">Class that displays all meta information of digestion objects </td></tr>
<tr id="row_373_1_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DocumentIdentifierVisualizer.html" target="_self">DocumentIdentifierVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1DocumentIdentifier.html" title="Manage source document information. ">DocumentIdentifier</a> objects </td></tr>
<tr id="row_373_1_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ExperimentalSettingsVisualizer.html" target="_self">ExperimentalSettingsVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1ExperimentalSettings.html" title="Description of the experimental settings. ">ExperimentalSettings</a> objects </td></tr>
<tr id="row_373_1_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1GradientVisualizer.html" target="_self">GradientVisualizer</a></td><td class="desc"><a class="el" href="classOpenMS_1_1GradientVisualizer.html" title="GradientVisualizer is a visualizer class for objects of type gradient. ">GradientVisualizer</a> is a visualizer class for objects of type gradient </td></tr>
<tr id="row_373_1_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HPLCVisualizer.html" target="_self">HPLCVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1HPLC.html" title="Representation of a HPLC experiment. ">HPLC</a> objects </td></tr>
<tr id="row_373_1_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InstrumentSettingsVisualizer.html" target="_self">InstrumentSettingsVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1InstrumentSettings.html" title="Description of the settings a MS Instrument was run with. ">InstrumentSettings</a> objects </td></tr>
<tr id="row_373_1_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InstrumentVisualizer.html" target="_self">InstrumentVisualizer</a></td><td class="desc">Class that displays all meta information for an MS instrument </td></tr>
<tr id="row_373_1_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IonDetectorVisualizer.html" target="_self">IonDetectorVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1IonDetector.html" title="Description of a ion detector (part of a MS Instrument) ">IonDetector</a> objects </td></tr>
<tr id="row_373_1_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IonSourceVisualizer.html" target="_self">IonSourceVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1IonSource.html" title="Description of a ion source (part of a MS Instrument) ">IonSource</a> objects </td></tr>
<tr id="row_373_1_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MassAnalyzerVisualizer.html" target="_self">MassAnalyzerVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1MassAnalyzer.html" title="Descripton of a mass analyzer (part of a MS Instrument) ">MassAnalyzer</a> objects </td></tr>
<tr id="row_373_1_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MetaInfoDescriptionVisualizer.html" target="_self">MetaInfoDescriptionVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1MetaInfoDescription.html" title="Description of the meta data arrays of MSSpectrum. ">MetaInfoDescription</a> objects </td></tr>
<tr id="row_373_1_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MetaInfoVisualizer.html" target="_self">MetaInfoVisualizer</a></td><td class="desc"><a class="el" href="classOpenMS_1_1MetaInfoVisualizer.html" title="MetaInfoVisualizer is a visualizer class for all classes that use one MetaInfo object as member...">MetaInfoVisualizer</a> is a visualizer class for all classes that use one <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> object as member </td></tr>
<tr id="row_373_1_16_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ModificationVisualizer.html" target="_self">ModificationVisualizer</a></td><td class="desc">Class that displays all meta information of modification objects </td></tr>
<tr id="row_373_1_17_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeptideHitVisualizer.html" target="_self">PeptideHitVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1PeptideHit.html" title="Representation of a peptide hit. ">PeptideHit</a> objects </td></tr>
<tr id="row_373_1_18_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeptideIdentificationVisualizer.html" target="_self">PeptideIdentificationVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1PeptideIdentification.html" title="Represents the peptide hits for a spectrum. ">PeptideIdentification</a> objects </td></tr>
<tr id="row_373_1_19_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PrecursorVisualizer.html" target="_self">PrecursorVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1Precursor.html" title="Precursor meta information. ">Precursor</a> objects </td></tr>
<tr id="row_373_1_20_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProductVisualizer.html" target="_self">ProductVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1Product.html" title="Product meta information. ">Product</a> objects </td></tr>
<tr id="row_373_1_21_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProteinHitVisualizer.html" target="_self">ProteinHitVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1ProteinHit.html" title="Representation of a protein hit. ">ProteinHit</a> objects </td></tr>
<tr id="row_373_1_22_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProteinIdentificationVisualizer.html" target="_self">ProteinIdentificationVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1ProteinIdentification.html" title="Representation of a protein identification run. ">ProteinIdentification</a> objects </td></tr>
<tr id="row_373_1_23_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SampleVisualizer.html" target="_self">SampleVisualizer</a></td><td class="desc">Class that displays all meta information of sample objects </td></tr>
<tr id="row_373_1_24_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ScanWindowVisualizer.html" target="_self">ScanWindowVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="structOpenMS_1_1ScanWindow.html" title="Scan window description. ">ScanWindow</a> objects </td></tr>
<tr id="row_373_1_25_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SoftwareVisualizer.html" target="_self">SoftwareVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1Software.html" title="Description of the software used for processing. ">Software</a> objects </td></tr>
<tr id="row_373_1_26_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SourceFileVisualizer.html" target="_self">SourceFileVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1SourceFile.html" title="Description of a file location, used to store the origin of (meta) data. ">SourceFile</a> objects </td></tr>
<tr id="row_373_1_27_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumSettingsVisualizer.html" target="_self">SpectrumSettingsVisualizer</a></td><td class="desc">Class that displays all meta information for <a class="el" href="classOpenMS_1_1SpectrumSettings.html" title="Representation of 1D spectrum settings. ">SpectrumSettings</a> objects </td></tr>
<tr id="row_373_1_28_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TaggingVisualizer.html" target="_self">TaggingVisualizer</a></td><td class="desc">Class that displays all meta information of tagging objects </td></tr>
<tr id="row_373_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ColorSelector.html" target="_self">ColorSelector</a></td><td class="desc">A widget for selecting a color </td></tr>
<tr id="row_373_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HistogramWidget.html" target="_self">HistogramWidget</a></td><td class="desc">Widget which can visualize a histogram </td></tr>
<tr id="row_373_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MultiGradientSelector.html" target="_self">MultiGradientSelector</a></td><td class="desc">A widget witch allows constructing gradients of multiple colors </td></tr>
<tr id="row_373_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ParamEditor.html" target="_self">ParamEditor</a></td><td class="desc">A GUI for editing or viewing a <a class="el" href="classOpenMS_1_1Param.html" title="Management and storage of parameters / INI files. ">Param</a> object </td></tr>
<tr id="row_373_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectraIdentificationViewWidget.html" target="_self">SpectraIdentificationViewWidget</a></td><td class="desc">Tabular visualization / selection of identified specra </td></tr>
<tr id="row_373_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectraViewWidget.html" target="_self">SpectraViewWidget</a></td><td class="desc">Hierarchical visualization and selection of spectra </td></tr>
<tr id="row_373_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumCanvas.html" target="_self">SpectrumCanvas</a></td><td class="desc">Base class for visualization canvas classes </td></tr>
<tr id="row_373_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumWidget.html" target="_self">SpectrumWidget</a></td><td class="desc">Base class for spectrum widgets </td></tr>
<tr id="row_374_" class="even"><td class="entry"><img id="arr_374_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('374_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classQWorkspace.html" target="_self">QWorkspace</a></td><td class="desc"></td></tr>
<tr id="row_374_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1EnhancedWorkspace.html" target="_self">EnhancedWorkspace</a></td><td class="desc"></td></tr>
<tr id="row_375_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RangeManager.html" target="_self">RangeManager< D ></a></td><td class="desc">Handles the managment of a position and intensity range </td></tr>
<tr id="row_376_" class="even"><td class="entry"><img id="arr_376_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('376_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RangeManager.html" target="_self">RangeManager< 1 ></a></td><td class="desc"></td></tr>
<tr id="row_376_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram.html" target="_self">MSChromatogram< ChromatogramPeakType ></a></td><td class="desc"></td></tr>
<tr id="row_376_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< OpenMS::Peak2D ></a></td><td class="desc"></td></tr>
<tr id="row_376_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< Peak1D ></a></td><td class="desc"></td></tr>
<tr id="row_376_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< PeakType ></a></td><td class="desc"></td></tr>
<tr id="row_376_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< RichPeak1D ></a></td><td class="desc"></td></tr>
<tr id="row_376_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum<></a></td><td class="desc"></td></tr>
<tr id="row_376_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram.html" target="_self">MSChromatogram< PeakT ></a></td><td class="desc">The representation of a chromatogram </td></tr>
<tr id="row_376_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< PeakT ></a></td><td class="desc">The representation of a 1D spectrum </td></tr>
<tr id="row_377_"><td class="entry"><img id="arr_377_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('377_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RangeManager.html" target="_self">RangeManager< 2 ></a></td><td class="desc"></td></tr>
<tr id="row_377_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap< OpenMS::Feature ></a></td><td class="desc"></td></tr>
<tr id="row_377_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap<></a></td><td class="desc"></td></tr>
<tr id="row_377_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< OpenMS::Peak1D ></a></td><td class="desc"></td></tr>
<tr id="row_377_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< Peak1D ></a></td><td class="desc"></td></tr>
<tr id="row_377_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< SimPointType ></a></td><td class="desc"></td></tr>
<tr id="row_377_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusMap.html" target="_self">ConsensusMap</a></td><td class="desc">A container for consensus elements </td></tr>
<tr id="row_377_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap< FeatureT ></a></td><td class="desc">A container for features </td></tr>
<tr id="row_377_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSExperiment.html" target="_self">MSExperiment< PeakT, ChromatogramPeakT ></a></td><td class="desc">Representation of a mass spectrometry experiment </td></tr>
<tr id="row_378_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ConsensusFeature_1_1Ratio.html" target="_self">ConsensusFeature::Ratio</a></td><td class="desc">Slim struct to feed the need for systematically storing of ratios ( </td></tr>
<tr id="row_379_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RawData.html" target="_self">RawData</a></td><td class="desc"></td></tr>
<tr id="row_380_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1RealMassDecomposer.html" target="_self">RealMassDecomposer</a></td><td class="desc">Handles decomposing of non-integer values/masses over a set of non-integer weights with an error allowed </td></tr>
<tr id="row_381_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="unionOpenMS_1_1Base64_1_1Reinterpreter32__.html" target="_self">Base64::Reinterpreter32_</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Internal.html" title="Namespace used to hide implementation details from users. ">Internal</a> class needed for type-punning </td></tr>
<tr id="row_382_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="unionOpenMS_1_1Base64_1_1Reinterpreter64__.html" target="_self">Base64::Reinterpreter64_</a></td><td class="desc"><a class="el" href="namespaceOpenMS_1_1Internal.html" title="Namespace used to hide implementation details from users. ">Internal</a> class needed for type-punning </td></tr>
<tr id="row_383_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Residue.html" target="_self">Residue</a></td><td class="desc">Representation of a residue </td></tr>
<tr id="row_384_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ResidueDB.html" target="_self">ResidueDB</a></td><td class="desc"><a class="el" href="classOpenMS_1_1Residue.html" title="Representation of a residue. ">Residue</a> data base which holds residues </td></tr>
<tr id="row_385_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ResidueModification.html" target="_self">ResidueModification</a></td><td class="desc">Representation of a modification </td></tr>
<tr id="row_386_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1ProteinResolver_1_1ResolverResult.html" target="_self">ProteinResolver::ResolverResult</a></td><td class="desc"></td></tr>
<tr id="row_387_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeakWidthEstimator_1_1Result.html" target="_self">PeakWidthEstimator::Result</a></td><td class="desc"></td></tr>
<tr id="row_388_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structRNPxlReportRow.html" target="_self">RNPxlReportRow</a></td><td class="desc"></td></tr>
<tr id="row_389_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structRNPxlReportRowHeader.html" target="_self">RNPxlReportRowHeader</a></td><td class="desc"></td></tr>
<tr id="row_390_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1ROCCurve.html" target="_self">ROCCurve</a></td><td class="desc">ROCCurves show the tradeoff in sensitivity and specitivity for binary classifiers using different cutoff values </td></tr>
<tr id="row_391_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structseqan_1_1SAValue_3_01Index_3_01StringSet_3_01Peptide_01_4_00_01IndexWotd_3_4_01_4_01_4.html" target="_self">SAValue< Index< StringSet< Peptide >, IndexWotd<> > ></a></td><td class="desc"></td></tr>
<tr id="row_392_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeptideHit_1_1ScoreLess.html" target="_self">PeptideHit::ScoreLess</a></td><td class="desc">Lesser predicate for scores of hits </td></tr>
<tr id="row_393_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProteinHit_1_1ScoreLess.html" target="_self">ProteinHit::ScoreLess</a></td><td class="desc">Lesser predicate for scores of hits </td></tr>
<tr id="row_394_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProteinHit_1_1ScoreMore.html" target="_self">ProteinHit::ScoreMore</a></td><td class="desc">Greater predicate for scores of hits </td></tr>
<tr id="row_395_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PeptideHit_1_1ScoreMore.html" target="_self">PeptideHit::ScoreMore</a></td><td class="desc">Greater predicate for scores of hits </td></tr>
<tr id="row_396_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FeatureFinderAlgorithmPickedHelperStructs_1_1Seed.html" target="_self">FeatureFinderAlgorithmPickedHelperStructs::Seed</a></td><td class="desc">Helper structure for seeds used in <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html" title="FeatureFinderAlgorithm for picked peaks. ">FeatureFinderAlgorithmPicked</a> </td></tr>
<tr id="row_397_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SeedListGenerator.html" target="_self">SeedListGenerator</a></td><td class="desc">Generate seed lists for feature detection </td></tr>
<tr id="row_398_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SequestInfile.html" target="_self">SequestInfile</a></td><td class="desc">Sequest input file adapter </td></tr>
<tr id="row_399_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SequestOutfile.html" target="_self">SequestOutfile</a></td><td class="desc">Representation of a Sequest output file </td></tr>
<tr id="row_400_" class="even"><td class="entry"><img id="arr_400_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('400_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>set< K ></b></td><td class="desc">STL class </td></tr>
<tr id="row_400_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1IsotopeCluster_1_1ChargedIndexSet.html" target="_self">IsotopeCluster::ChargedIndexSet</a></td><td class="desc">Index set with associated charge estimate </td></tr>
<tr id="row_401_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SHFeature.html" target="_self">SHFeature</a></td><td class="desc"></td></tr>
<tr id="row_402_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SILACFilter.html" target="_self">SILACFilter</a></td><td class="desc">Filter to use for <a class="el" href="classOpenMS_1_1SILACFiltering.html" title="Filtering for SILAC data. ">SILACFiltering</a> </td></tr>
<tr id="row_403_"><td class="entry"><img id="arr_403_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('403_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SILACPoint.html" target="_self">SILACPoint</a></td><td class="desc">A single SILAC point </td></tr>
<tr id="row_403_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SILACPattern.html" target="_self">SILACPattern</a></td><td class="desc">A single SILAC pattern containing multiple found points </td></tr>
<tr id="row_404_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SimpleOpenMSSpectraFactory.html" target="_self">SimpleOpenMSSpectraFactory</a></td><td class="desc">A factory method that returns two ISpectrumAccess implementations </td></tr>
<tr id="row_405_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1SimRandomNumberGenerator.html" target="_self">SimRandomNumberGenerator</a></td><td class="desc">Wrapper class for random number generators used by the simulation classes </td></tr>
<tr id="row_406_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Math_1_1ROCCurve_1_1simsortdec.html" target="_self">ROCCurve::simsortdec</a></td><td class="desc">Predicate for sort() </td></tr>
<tr id="row_407_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SingletonRegistry.html" target="_self">SingletonRegistry</a></td><td class="desc">Holds pointers to unique instance of a singleton factory </td></tr>
<tr id="row_408_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1LPWrapper_1_1SolverParam.html" target="_self">LPWrapper::SolverParam</a></td><td class="desc">Struct that holds the parameters of the LP solver </td></tr>
<tr id="row_409_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SparseVector.html" target="_self">SparseVector< Value ></a></td><td class="desc"><a class="el" href="classOpenMS_1_1SparseVector.html" title="SparseVector implementation. The container will not actually store a specified type of element - the ...">SparseVector</a> implementation. The container will not actually store a specified type of element - the sparse element, e.g. zero (by default) </td></tr>
<tr id="row_410_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SparseVector.html" target="_self">SparseVector< Real ></a></td><td class="desc"></td></tr>
<tr id="row_411_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SparseVector_1_1SparseVectorConstIterator.html" target="_self">SparseVector< Value >::SparseVectorConstIterator</a></td><td class="desc">Const_iterator for <a class="el" href="classOpenMS_1_1SparseVector.html" title="SparseVector implementation. The container will not actually store a specified type of element - the ...">SparseVector</a> </td></tr>
<tr id="row_412_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SparseVector_1_1SparseVectorConstReverseIterator.html" target="_self">SparseVector< Value >::SparseVectorConstReverseIterator</a></td><td class="desc">Const_reverse_iterator for <a class="el" href="classOpenMS_1_1SparseVector.html" title="SparseVector implementation. The container will not actually store a specified type of element - the ...">SparseVector</a> </td></tr>
<tr id="row_413_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SparseVector_1_1SparseVectorIterator.html" target="_self">SparseVector< Value >::SparseVectorIterator</a></td><td class="desc">Random access iterator for <a class="el" href="classOpenMS_1_1SparseVector.html" title="SparseVector implementation. The container will not actually store a specified type of element - the ...">SparseVector</a> including the <a class="el" href="classOpenMS_1_1SparseVector_1_1SparseVectorIterator.html#a5c4f3a5e468f3658c08b284143a5dbfe" title="go to the next nonempty position ">hop()</a> function to jump to the next non-sparse element </td></tr>
<tr id="row_414_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SparseVector_1_1SparseVectorReverseIterator.html" target="_self">SparseVector< Value >::SparseVectorReverseIterator</a></td><td class="desc">Random access reverse iterator for <a class="el" href="classOpenMS_1_1SparseVector.html" title="SparseVector implementation. The container will not actually store a specified type of element - the ...">SparseVector</a> including the hop() function to jump to the next non-sparse element </td></tr>
<tr id="row_415_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpecArrayFile.html" target="_self">SpecArrayFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for SpecArray (.pepList) files </td></tr>
<tr id="row_416_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Interfaces_1_1Spectrum.html" target="_self">Spectrum</a></td><td class="desc">The structure that captures the generation of a peak list (including the underlying acquisitions) </td></tr>
<tr id="row_417_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1Spectrum.html" target="_self">Spectrum</a></td><td class="desc">The structure that captures the generation of a peak list (including the underlying acquisitions) </td></tr>
<tr id="row_418_" class="even"><td class="entry"><img id="arr_418_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('418_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>Spectrum1DGoToDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_418_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum1DGoToDialog.html" target="_self">Spectrum1DGoToDialog</a></td><td class="desc">Simple goto/set visible area dialog for exact placement of the viewing window </td></tr>
<tr id="row_419_"><td class="entry"><img id="arr_419_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('419_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>Spectrum1DPrefDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_419_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1Spectrum1DPrefDialog.html" target="_self">Spectrum1DPrefDialog</a></td><td class="desc">Preferences dialog for <a class="el" href="classOpenMS_1_1Spectrum1DWidget.html" title="Widget for visualization of several spectra. ">Spectrum1DWidget</a> </td></tr>
<tr id="row_420_" class="even"><td class="entry"><img id="arr_420_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('420_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>Spectrum2DGoToDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_420_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Spectrum2DGoToDialog.html" target="_self">Spectrum2DGoToDialog</a></td><td class="desc">GoTo dialog used to zoom to a m/z and retention time range or to a feature </td></tr>
<tr id="row_421_"><td class="entry"><img id="arr_421_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('421_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>Spectrum2DPrefDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_421_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1Spectrum2DPrefDialog.html" target="_self">Spectrum2DPrefDialog</a></td><td class="desc">Preferences dialog for <a class="el" href="classOpenMS_1_1Spectrum2DWidget.html" title="Widget for 2D-visualization of peak map and feature map data. ">Spectrum2DWidget</a> </td></tr>
<tr id="row_422_" class="even"><td class="entry"><img id="arr_422_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('422_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>Spectrum3DPrefDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_422_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1Spectrum3DPrefDialog.html" target="_self">Spectrum3DPrefDialog</a></td><td class="desc">Preferences dialog for <a class="el" href="classOpenMS_1_1Spectrum3DWidget.html" title="Widget for 3D-visualization of map data. ">Spectrum3DWidget</a> </td></tr>
<tr id="row_423_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumAddition.html" target="_self">SpectrumAddition</a></td><td class="desc">The <a class="el" href="classOpenMS_1_1SpectrumAddition.html" title="The SpectrumAddition adds together a list of spectra. ">SpectrumAddition</a> adds together a list of spectra </td></tr>
<tr id="row_424_" class="even"><td class="entry"><img id="arr_424_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('424_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>SpectrumAlignmentDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_424_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SpectrumAlignmentDialog.html" target="_self">SpectrumAlignmentDialog</a></td><td class="desc">Lets the user select two spectra and set the parameters for the spectrum alignment </td></tr>
<tr id="row_425_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SILACFiltering_1_1SpectrumInterpolation.html" target="_self">SILACFiltering::SpectrumInterpolation</a></td><td class="desc">Wrapper class for spectrum interpolation </td></tr>
<tr id="row_426_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Interfaces_1_1SpectrumMeta.html" target="_self">SpectrumMeta</a></td><td class="desc">Identifying information for a spectrum </td></tr>
<tr id="row_427_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1SpectrumMeta.html" target="_self">SpectrumMeta</a></td><td class="desc">Identifying information for a spectrum </td></tr>
<tr id="row_428_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1PeptideAndProteinQuant_1_1Statistics.html" target="_self">PeptideAndProteinQuant::Statistics</a></td><td class="desc"><a class="el" href="structOpenMS_1_1PeptideAndProteinQuant_1_1Statistics.html" title="Statistics for processing summary. ">Statistics</a> for processing summary </td></tr>
<tr id="row_429_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1StopWatch.html" target="_self">StopWatch</a></td><td class="desc"><a class="el" href="classOpenMS_1_1StopWatch.html" title="StopWatch Class. ">StopWatch</a> Class </td></tr>
<tr id="row_430_" class="even"><td class="entry"><img id="arr_430_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('430_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>streambuf</b></td><td class="desc"></td></tr>
<tr id="row_430_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Logger_1_1LogStreamBuf.html" target="_self">LogStreamBuf</a></td><td class="desc">Stream buffer used by <a class="el" href="classOpenMS_1_1Logger_1_1LogStream.html" title="Log Stream Class. ">LogStream</a> </td></tr>
<tr id="row_431_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FuzzyStringComparator_1_1StreamElement__.html" target="_self">FuzzyStringComparator::StreamElement_</a></td><td class="desc">Stores information about characters, numbers, and whitesspaces loaded from the InputStream </td></tr>
<tr id="row_432_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1StreamHandler.html" target="_self">StreamHandler</a></td><td class="desc">Provides a central class to register globally used output streams. Currently supported streams are </td></tr>
<tr id="row_433_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Logger_1_1LogStreamBuf_1_1StreamStruct.html" target="_self">LogStreamBuf::StreamStruct</a></td><td class="desc">Holds a stream that is connected to the <a class="el" href="classOpenMS_1_1Logger_1_1LogStream.html" title="Log Stream Class. ">LogStream</a>. It also includes the minimum and maximum level at which the <a class="el" href="classOpenMS_1_1Logger_1_1LogStream.html" title="Log Stream Class. ">LogStream</a> redirects messages to this stream </td></tr>
<tr id="row_434_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1StringManager.html" target="_self">StringManager</a></td><td class="desc">Helper class for XML parsing that handles the memory management for conversions of Xerces strings </td></tr>
<tr id="row_435_"><td class="entry"><img id="arr_435_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('435_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SuffixArray.html" target="_self">SuffixArray</a></td><td class="desc">Abstract class for suffix array </td></tr>
<tr id="row_435_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_435_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('435_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SuffixArraySeqan.html" target="_self">SuffixArraySeqan</a></td><td class="desc">Class that uses SEQAN library for a suffix array. It can be used to find peptide Candidates for a MS spectrum </td></tr>
<tr id="row_435_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SuffixArrayTrypticSeqan.html" target="_self">SuffixArrayTrypticSeqan</a></td><td class="desc">Class that uses SEQAN library for a suffix array. It can be used to find peptide Candidates for a MS spectrum </td></tr>
<tr id="row_435_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SuffixArrayTrypticCompressed.html" target="_self">SuffixArrayTrypticCompressed</a></td><td class="desc">Class that implements a suffix array for a <a class="el" href="classOpenMS_1_1String.html" title="A more convenient string class. ">String</a>. It can be used to find peptide Candidates for a MS spectrum </td></tr>
<tr id="row_436_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Summary.html" target="_self">Summary</a></td><td class="desc"><a class="el" href="structOpenMS_1_1Summary.html" title="Summary of fitting results. ">Summary</a> of fitting results </td></tr>
<tr id="row_437_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SuperHirnParameters.html" target="_self">SuperHirnParameters</a></td><td class="desc">SuperHirn parameters singleton class containing all static configuration variables </td></tr>
<tr id="row_438_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SuperHirnUtil.html" target="_self">SuperHirnUtil</a></td><td class="desc"></td></tr>
<tr id="row_439_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1SVMData.html" target="_self">SVMData</a></td><td class="desc">Data structure used in <a class="el" href="classOpenMS_1_1SVMWrapper.html" title="Serves as a wrapper for the libsvm. ">SVMWrapper</a> </td></tr>
<tr id="row_440_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1SvmTheoreticalSpectrumGenerator_1_1SvmModelParameterSet.html" target="_self">SvmTheoreticalSpectrumGenerator::SvmModelParameterSet</a></td><td class="desc">Simple container storing the model parameters required for simulation </td></tr>
<tr id="row_441_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SvmTheoreticalSpectrumGeneratorSet.html" target="_self">SvmTheoreticalSpectrumGeneratorSet</a></td><td class="desc">Loads <a class="el" href="classOpenMS_1_1SvmTheoreticalSpectrumGenerator.html" title="Simulates ms2 spectra with support vector machines. ">SvmTheoreticalSpectrumGenerator</a> instances for different charges </td></tr>
<tr id="row_442_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1TargetedExperiment.html" target="_self">TargetedExperiment</a></td><td class="desc"></td></tr>
<tr id="row_443_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TargetedExperiment.html" target="_self">TargetedExperiment</a></td><td class="desc">This class stores an prediction of an SRM/MRM transition </td></tr>
<tr id="row_444_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FeatureFinderAlgorithmPickedHelperStructs_1_1TheoreticalIsotopePattern.html" target="_self">FeatureFinderAlgorithmPickedHelperStructs::TheoreticalIsotopePattern</a></td><td class="desc">Helper structure for a theoretical isotope pattern used in <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html" title="FeatureFinderAlgorithm for picked peaks. ">FeatureFinderAlgorithmPicked</a> </td></tr>
<tr id="row_445_"><td class="entry"><img id="arr_445_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('445_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>TheoreticalSpectrumGenerationDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_445_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TheoreticalSpectrumGenerationDialog.html" target="_self">TheoreticalSpectrumGenerationDialog</a></td><td class="desc">Dialog which allows to enter an AA sequence and generates a theoretical spectrum for it </td></tr>
<tr id="row_446_" class="even"><td class="entry"><img id="arr_446_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('446_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1ToolDescriptionInternal.html" target="_self">ToolDescriptionInternal</a></td><td class="desc"><a class="el" href="structOpenMS_1_1Internal_1_1ToolDescription.html">ToolDescription</a> Class </td></tr>
<tr id="row_446_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1ToolDescription.html" target="_self">ToolDescription</a></td><td class="desc"></td></tr>
<tr id="row_447_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1ToolExternalDetails.html" target="_self">ToolExternalDetails</a></td><td class="desc"></td></tr>
<tr id="row_448_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ToolHandler.html" target="_self">ToolHandler</a></td><td class="desc"></td></tr>
<tr id="row_449_"><td class="entry"><img id="arr_449_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('449_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>TOPPASInputFileDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_449_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASInputFileDialog.html" target="_self">TOPPASInputFileDialog</a></td><td class="desc">Dialog which allows to specify an input file </td></tr>
<tr id="row_450_" class="even"><td class="entry"><img id="arr_450_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('450_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>TOPPASInputFilesDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_450_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASInputFilesDialog.html" target="_self">TOPPASInputFilesDialog</a></td><td class="desc">Dialog which allows to specify a list of input files </td></tr>
<tr id="row_451_"><td class="entry"><img id="arr_451_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('451_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>TOPPASIOMappingDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_451_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASIOMappingDialog.html" target="_self">TOPPASIOMappingDialog</a></td><td class="desc">Dialog which allows to configure the input/output parameter mapping of an edge </td></tr>
<tr id="row_452_" class="even"><td class="entry"><img id="arr_452_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('452_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>TOPPASOutputFilesDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_452_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASOutputFilesDialog.html" target="_self">TOPPASOutputFilesDialog</a></td><td class="desc">Dialog which allows to specify the directory for the output files </td></tr>
<tr id="row_453_"><td class="entry"><img id="arr_453_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('453_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>TOPPASVertexNameDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_453_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPASVertexNameDialog.html" target="_self">TOPPASVertexNameDialog</a></td><td class="desc">Dialog which allows to change the name of an input vertex </td></tr>
<tr id="row_454_" class="even"><td class="entry"><img id="arr_454_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('454_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPBase.html" target="_self">TOPPBase</a></td><td class="desc">Base class for TOPP applications </td></tr>
<tr id="row_454_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classTOPPRNPxl.html" target="_self">TOPPRNPxl</a></td><td class="desc"></td></tr>
<tr id="row_455_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TOPPASScene_1_1TOPPProcess.html" target="_self">TOPPASScene::TOPPProcess</a></td><td class="desc">Stores the information for a TOPP process </td></tr>
<tr id="row_456_" class="even"><td class="entry"><img id="arr_456_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('456_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>TOPPViewOpenDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_456_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TOPPViewOpenDialog.html" target="_self">TOPPViewOpenDialog</a></td><td class="desc">Dataset opening options for TOPPView </td></tr>
<tr id="row_457_"><td class="entry"><img id="arr_457_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('457_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>TOPPViewPrefDialogTemplate</b></td><td class="desc"></td></tr>
<tr id="row_457_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1TOPPViewPrefDialog.html" target="_self">TOPPViewPrefDialog</a></td><td class="desc">Preferences dialog for TOPPView </td></tr>
<tr id="row_458_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Param_1_1ParamIterator_1_1TraceInfo.html" target="_self">Param::ParamIterator::TraceInfo</a></td><td class="desc">Struct that captures information on entered / left nodes for <a class="el" href="classOpenMS_1_1Param_1_1ParamIterator.html" title="Forward const iterator for the Param class. ">ParamIterator</a> </td></tr>
<tr id="row_459_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1IDDecoyProbability_1_1Transformation__.html" target="_self">IDDecoyProbability::Transformation_</a></td><td class="desc">Struct to be used to store a transformation (used for fitting) </td></tr>
<tr id="row_460_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TransformationDescription.html" target="_self">TransformationDescription</a></td><td class="desc">Generic description of a coordinate transformation </td></tr>
<tr id="row_461_"><td class="entry"><img id="arr_461_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('461_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TransformationModel.html" target="_self">TransformationModel</a></td><td class="desc">Base class for transformation models </td></tr>
<tr id="row_461_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TransformationModelBSpline.html" target="_self">TransformationModelBSpline</a></td><td class="desc">B-spline model for transformations </td></tr>
<tr id="row_461_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TransformationModelInterpolated.html" target="_self">TransformationModelInterpolated</a></td><td class="desc">Interpolation model for transformations </td></tr>
<tr id="row_461_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TransformationModelLinear.html" target="_self">TransformationModelLinear</a></td><td class="desc">Linear model for transformations </td></tr>
<tr id="row_462_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1TransitionHelper.html" target="_self">TransitionHelper</a></td><td class="desc"></td></tr>
<tr id="row_463_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsotopeWaveletTransform_1_1TransSpectrum.html" target="_self">IsotopeWaveletTransform< PeakType >::TransSpectrum</a></td><td class="desc">Internally (only by GPUs) used data structure . It allows efficient data exchange between CPU and GPU and avoids unnecessary memory moves. The class is tailored on the isotope wavelet transform and is in general not applicable on similar - but different - situations </td></tr>
<tr id="row_464_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HierarchicalClustering_1_1TreeDistance.html" target="_self">HierarchicalClustering< PointRef >::TreeDistance</a></td><td class="desc">Wrapper class for two trees and the corresponding distance </td></tr>
<tr id="row_465_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HierarchicalClustering_1_1TreeNode.html" target="_self">HierarchicalClustering< PointRef >::TreeNode</a></td><td class="desc">Tree node used for clustering </td></tr>
<tr id="row_466_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TransitionTSVReader_1_1TSVTransition.html" target="_self">TransitionTSVReader::TSVTransition</a></td><td class="desc"></td></tr>
<tr id="row_467_"><td class="entry"><img id="arr_467_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('467_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>unary_function</b></td><td class="desc"></td></tr>
<tr id="row_467_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HasActivationMethod.html" target="_self">HasActivationMethod< SpectrumType ></a></td><td class="desc">Predicate that determines if a spectrum was generated using any activation method given in the constructor list </td></tr>
<tr id="row_467_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HasMetaValue.html" target="_self">HasMetaValue< MetaContainer ></a></td><td class="desc">Predicate that determines if a class has a certain metavalue </td></tr>
<tr id="row_467_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HasPrecursorCharge.html" target="_self">HasPrecursorCharge< SpectrumType ></a></td><td class="desc">Predicate that determines if a spectrum has a certain precursor charge as given in the constructor list </td></tr>
<tr id="row_467_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HasScanMode.html" target="_self">HasScanMode< SpectrumType ></a></td><td class="desc">Predicate that determines if a spectrum has a certain scan mode </td></tr>
<tr id="row_467_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InIntensityRange.html" target="_self">InIntensityRange< PeakType ></a></td><td class="desc">Predicate that determines if a peak lies inside/outside a specific intensity range </td></tr>
<tr id="row_467_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InMSLevelRange.html" target="_self">InMSLevelRange< SpectrumType ></a></td><td class="desc">Predicate that determines if a spectrum lies inside/outside a specific MS level set </td></tr>
<tr id="row_467_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InMzRange.html" target="_self">InMzRange< PeakType ></a></td><td class="desc">Predicate that determines if a peak lies inside/outside a specific m/z range </td></tr>
<tr id="row_467_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InPrecursorMZRange.html" target="_self">InPrecursorMZRange< SpectrumType ></a></td><td class="desc">Predicate that determines if a spectrum's precursor is within a certain m/z range </td></tr>
<tr id="row_467_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InRTRange.html" target="_self">InRTRange< SpectrumType ></a></td><td class="desc">Predicate that determines if a spectrum lies inside/outside a specific retention time range </td></tr>
<tr id="row_467_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsEmptySpectrum.html" target="_self">IsEmptySpectrum< SpectrumType ></a></td><td class="desc">Predicate that determines if a spectrum is empty </td></tr>
<tr id="row_467_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsInCollisionEnergyRange.html" target="_self">IsInCollisionEnergyRange< SpectrumType ></a></td><td class="desc">Predicate that determines if an MSn spectrum was generated with a collision energy in the given range </td></tr>
<tr id="row_467_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsInIsolationWindowSizeRange.html" target="_self">IsInIsolationWindowSizeRange< SpectrumType ></a></td><td class="desc">Predicate that determines if the width of the isolation window of an MSn spectrum is in the given range </td></tr>
<tr id="row_467_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IsZoomSpectrum.html" target="_self">IsZoomSpectrum< SpectrumType ></a></td><td class="desc">Predicate that determines if a spectrum is a zoom (enhanced resolution) spectrum </td></tr>
<tr id="row_467_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1UnaryComposeFunctionAdapter.html" target="_self">UnaryComposeFunctionAdapter< OP1, OP2 ></a></td><td class="desc">Represents the function object unary adapter </td></tr>
<tr id="row_467_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenSwath_1_1mySqrt.html" target="_self">mySqrt</a></td><td class="desc"></td></tr>
<tr id="row_468_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1UniqueIdGenerator.html" target="_self">UniqueIdGenerator</a></td><td class="desc">A generator for unique ids </td></tr>
<tr id="row_469_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html" target="_self">UniqueIdIndexer< RandomAccessContainer ></a></td><td class="desc">A base class for random access containers for classes derived from <a class="el" href="classOpenMS_1_1UniqueIdInterface.html" title="A base class defining a common interface for all classes having a unique id. ">UniqueIdInterface</a> that adds functionality to convert a unique id into an index into the container </td></tr>
<tr id="row_470_" class="even"><td class="entry"><img id="arr_470_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('470_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html" target="_self">UniqueIdIndexer< ConsensusMap ></a></td><td class="desc"></td></tr>
<tr id="row_470_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusMap.html" target="_self">ConsensusMap</a></td><td class="desc">A container for consensus elements </td></tr>
<tr id="row_471_"><td class="entry"><img id="arr_471_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('471_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html" target="_self">UniqueIdIndexer< FeatureMap< Feature > ></a></td><td class="desc"></td></tr>
<tr id="row_471_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap<></a></td><td class="desc"></td></tr>
<tr id="row_472_" class="even"><td class="entry"><img id="arr_472_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('472_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html" target="_self">UniqueIdIndexer< FeatureMap< FeatureT > ></a></td><td class="desc"></td></tr>
<tr id="row_472_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap< FeatureT ></a></td><td class="desc">A container for features </td></tr>
<tr id="row_473_"><td class="entry"><img id="arr_473_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('473_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html" target="_self">UniqueIdIndexer< FeatureMap< OpenMS::Feature > ></a></td><td class="desc"></td></tr>
<tr id="row_473_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap< OpenMS::Feature ></a></td><td class="desc"></td></tr>
<tr id="row_474_" class="even"><td class="entry"><img id="arr_474_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('474_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1UniqueIdInterface.html" target="_self">UniqueIdInterface</a></td><td class="desc">A base class defining a common interface for all classes having a unique id </td></tr>
<tr id="row_474_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap< OpenMS::Feature ></a></td><td class="desc"></td></tr>
<tr id="row_474_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap<></a></td><td class="desc"></td></tr>
<tr id="row_474_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusMap.html" target="_self">ConsensusMap</a></td><td class="desc">A container for consensus elements </td></tr>
<tr id="row_474_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureHandle.html" target="_self">FeatureHandle</a></td><td class="desc">Representation of a <a class="el" href="classOpenMS_1_1Peak2D.html" title="A 2-dimensional raw data point or peak. ">Peak2D</a>, <a class="el" href="classOpenMS_1_1RichPeak2D.html" title="A 2-dimensional raw data point or peak with meta information. ">RichPeak2D</a> or <a class="el" href="classOpenMS_1_1Feature.html" title="An LC-MS feature. ">Feature</a> </td></tr>
<tr id="row_474_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap< FeatureT ></a></td><td class="desc">A container for features </td></tr>
<tr id="row_474_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1RichPeak2D.html" target="_self">RichPeak2D</a></td><td class="desc">A 2-dimensional raw data point or peak with meta information </td></tr>
<tr id="row_475_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1CVTerm_1_1Unit.html" target="_self">CVTerm::Unit</a></td><td class="desc"></td></tr>
<tr id="row_476_" class="even"><td class="entry"><img id="arr_476_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('476_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>unordered_multimap</b></td><td class="desc"></td></tr>
<tr id="row_476_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1HierarchicalClustering_1_1Cluster.html" target="_self">HierarchicalClustering< PointRef >::Cluster</a></td><td class="desc">Set of points. Describes a cluster on the grid. A point consists of a PointCoordinate and a PointRef </td></tr>
<tr id="row_477_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SparseVector_1_1ValueProxy.html" target="_self">SparseVector< Value >::ValueProxy</a></td><td class="desc">Class <a class="el" href="classOpenMS_1_1SparseVector_1_1ValueProxy.html" title="class ValueProxy allows the SparseVector to differentiate between writing and reading, so zeros can be ignored See "more effective c++" section 30 ">ValueProxy</a> allows the <a class="el" href="classOpenMS_1_1SparseVector.html" title="SparseVector implementation. The container will not actually store a specified type of element - the ...">SparseVector</a> to differentiate between writing and reading, so zeros can be ignored See "more effective c++" section 30 </td></tr>
<tr id="row_478_" class="even"><td class="entry"><img id="arr_478_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('478_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>vector< T ></b></td><td class="desc">STL class </td></tr>
<tr id="row_478_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap< OpenMS::Feature ></a></td><td class="desc"></td></tr>
<tr id="row_478_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap<></a></td><td class="desc"></td></tr>
<tr id="row_478_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Matrix.html" target="_self">Matrix< double ></a></td><td class="desc"></td></tr>
<tr id="row_478_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Matrix.html" target="_self">Matrix< unsigned int ></a></td><td class="desc"></td></tr>
<tr id="row_478_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram.html" target="_self">MSChromatogram< ChromatogramPeakType ></a></td><td class="desc"></td></tr>
<tr id="row_478_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< OpenMS::Peak2D ></a></td><td class="desc"></td></tr>
<tr id="row_478_6_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< Peak1D ></a></td><td class="desc"></td></tr>
<tr id="row_478_7_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< PeakType ></a></td><td class="desc"></td></tr>
<tr id="row_478_8_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< RichPeak1D ></a></td><td class="desc"></td></tr>
<tr id="row_478_9_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum<></a></td><td class="desc"></td></tr>
<tr id="row_478_10_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1AcquisitionInfo.html" target="_self">AcquisitionInfo</a></td><td class="desc">Description of the combination of raw data to a single spectrum </td></tr>
<tr id="row_478_11_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusMap.html" target="_self">ConsensusMap</a></td><td class="desc">A container for consensus elements </td></tr>
<tr id="row_478_12_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1DoubleList.html" target="_self">DoubleList</a></td><td class="desc">DoubleReal list </td></tr>
<tr id="row_478_13_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1FeatureFinderAlgorithmPickedHelperStructs_1_1MassTraces.html" target="_self">FeatureFinderAlgorithmPickedHelperStructs::MassTraces< PeakType ></a></td><td class="desc">Helper struct for a collection of mass traces used in <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html" title="FeatureFinderAlgorithm for picked peaks. ">FeatureFinderAlgorithmPicked</a> </td></tr>
<tr id="row_478_14_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureMap.html" target="_self">FeatureMap< FeatureT ></a></td><td class="desc">A container for features </td></tr>
<tr id="row_478_15_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IntList.html" target="_self">IntList</a></td><td class="desc">Int list </td></tr>
<tr id="row_478_16_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Matrix.html" target="_self">Matrix< Value ></a></td><td class="desc">A two-dimensional matrix. Similar to std::vector, but uses a binary operator(,) for element access </td></tr>
<tr id="row_478_17_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram.html" target="_self">MSChromatogram< PeakT ></a></td><td class="desc">The representation of a chromatogram </td></tr>
<tr id="row_478_18_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram_1_1FloatDataArray.html" target="_self">MSChromatogram< PeakT >::FloatDataArray</a></td><td class="desc">Float data array class </td></tr>
<tr id="row_478_19_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram_1_1IntegerDataArray.html" target="_self">MSChromatogram< PeakT >::IntegerDataArray</a></td><td class="desc">Float data array class </td></tr>
<tr id="row_478_20_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSChromatogram_1_1StringDataArray.html" target="_self">MSChromatogram< PeakT >::StringDataArray</a></td><td class="desc"><a class="el" href="classOpenMS_1_1String.html" title="A more convenient string class. ">String</a> data array class </td></tr>
<tr id="row_478_21_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum.html" target="_self">MSSpectrum< PeakT ></a></td><td class="desc">The representation of a 1D spectrum </td></tr>
<tr id="row_478_22_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum_1_1FloatDataArray.html" target="_self">MSSpectrum< PeakT >::FloatDataArray</a></td><td class="desc">Float data array class </td></tr>
<tr id="row_478_23_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum_1_1IntegerDataArray.html" target="_self">MSSpectrum< PeakT >::IntegerDataArray</a></td><td class="desc">Integer data array class </td></tr>
<tr id="row_478_24_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MSSpectrum_1_1StringDataArray.html" target="_self">MSSpectrum< PeakT >::StringDataArray</a></td><td class="desc"><a class="el" href="classOpenMS_1_1String.html" title="A more convenient string class. ">String</a> data array class </td></tr>
<tr id="row_478_25_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SampleChannels.html" target="_self">SampleChannels</a></td><td class="desc">Container for multiple channels of <a class="el" href="classOpenMS_1_1SampleProteins.html" title="Container for FASTAEntry & abundance information. ">SampleProteins</a> </td></tr>
<tr id="row_478_26_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SampleProteins.html" target="_self">SampleProteins</a></td><td class="desc">Container for FASTAEntry & abundance information </td></tr>
<tr id="row_478_27_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_478_27_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('478_27_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1StringList.html" target="_self">StringList</a></td><td class="desc"><a class="el" href="classOpenMS_1_1String.html" title="A more convenient string class. ">String</a> list </td></tr>
<tr id="row_478_27_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_478_27_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('478_27_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TextFile.html" target="_self">TextFile</a></td><td class="desc">This class provides some basic file handling methods for text files </td></tr>
<tr id="row_478_27_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CsvFile.html" target="_self">CsvFile</a></td><td class="desc">This class handles csv files. Currently only loading is implemented </td></tr>
<tr id="row_479_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1VersionInfo_1_1VersionDetails.html" target="_self">VersionInfo::VersionDetails</a></td><td class="desc"></td></tr>
<tr id="row_480_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1VersionInfo.html" target="_self">VersionInfo</a></td><td class="desc">Version information class </td></tr>
<tr id="row_481_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1TOPPASVertex_1_1VertexRoundPackage.html" target="_self">TOPPASVertex::VertexRoundPackage</a></td><td class="desc">Info for one edge and round, to be passed to next node </td></tr>
<tr id="row_482_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ims_1_1Weights.html" target="_self">Weights</a></td><td class="desc">Represents a set of weights (double values and scaled with a certain precision their integer counterparts) with a quick access </td></tr>
<tr id="row_483_"><td class="entry"><img id="arr_483_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('483_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1WeightWrapper.html" target="_self">WeightWrapper</a></td><td class="desc">Encapsulated weight queries to simplify mono vs average weight computation </td></tr>
<tr id="row_483_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SuffixArrayPeptideFinder.html" target="_self">SuffixArrayPeptideFinder</a></td><td class="desc">Wrapper for easy use of sufArray </td></tr>
<tr id="row_483_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SuffixArraySeqan.html" target="_self">SuffixArraySeqan</a></td><td class="desc">Class that uses SEQAN library for a suffix array. It can be used to find peptide Candidates for a MS spectrum </td></tr>
<tr id="row_483_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1SuffixArrayTrypticCompressed.html" target="_self">SuffixArrayTrypticCompressed</a></td><td class="desc">Class that implements a suffix array for a <a class="el" href="classOpenMS_1_1String.html" title="A more convenient string class. ">String</a>. It can be used to find peptide Candidates for a MS spectrum </td></tr>
<tr id="row_484_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1InclusionExclusionList_1_1WindowDistance__.html" target="_self">InclusionExclusionList::WindowDistance_</a></td><td class="desc">Determine distance between two spectra </td></tr>
<tr id="row_485_"><td class="entry"><img id="arr_485_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('485_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1XMLFile.html" target="_self">XMLFile</a></td><td class="desc">Base class for loading/storing XML files that have a handler derived from <a class="el" href="classOpenMS_1_1Internal_1_1XMLHandler.html" title="Base class for XML handlers. ">XMLHandler</a> </td></tr>
<tr id="row_485_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ConsensusXMLFile.html" target="_self">ConsensusXMLFile</a></td><td class="desc">This class provides Input functionality for ConsensusMaps and Output functionality for alignments and quantitation </td></tr>
<tr id="row_485_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1CVMappingFile.html" target="_self">CVMappingFile</a></td><td class="desc">Used to load CvMapping files </td></tr>
<tr id="row_485_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1FeatureXMLFile.html" target="_self">FeatureXMLFile</a></td><td class="desc">This class provides Input/Output functionality for feature maps </td></tr>
<tr id="row_485_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1IdXMLFile.html" target="_self">IdXMLFile</a></td><td class="desc">Used to load and store idXML files </td></tr>
<tr id="row_485_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1SemanticValidator.html" target="_self">SemanticValidator</a></td><td class="desc">Semantically validates XML files using <a class="el" href="classOpenMS_1_1CVMappings.html" title="Representation of controlled vocabulary mapping rules (for PSI formats) ">CVMappings</a> and a <a class="el" href="classOpenMS_1_1ControlledVocabulary.html" title="Representation of a controlled vocabulary. ">ControlledVocabulary</a> </td></tr>
<tr id="row_485_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MascotXMLFile.html" target="_self">MascotXMLFile</a></td><td class="desc">Used to load MascotXML files </td></tr>
<tr id="row_485_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzDataFile.html" target="_self">MzDataFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MzData files </td></tr>
<tr id="row_485_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzIdentMLFile.html" target="_self">MzIdentMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MzIdentML files </td></tr>
<tr id="row_485_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzMLFile.html" target="_self">MzMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MzML files </td></tr>
<tr id="row_485_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzQuantMLFile.html" target="_self">MzQuantMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MzQuantML files </td></tr>
<tr id="row_485_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1MzXMLFile.html" target="_self">MzXMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for MzXML 2.1 files </td></tr>
<tr id="row_485_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1OMSSAXMLFile.html" target="_self">OMSSAXMLFile</a></td><td class="desc">Used to load OMSSAXML files </td></tr>
<tr id="row_485_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ParamXMLFile.html" target="_self">ParamXMLFile</a></td><td class="desc">The file pendant of the <a class="el" href="classOpenMS_1_1Param.html" title="Management and storage of parameters / INI files. ">Param</a> class used to load and store the param datastructure as paramXML </td></tr>
<tr id="row_485_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PepXMLFile.html" target="_self">PepXMLFile</a></td><td class="desc">Used to load and store PepXML files </td></tr>
<tr id="row_485_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PepXMLFileMascot.html" target="_self">PepXMLFileMascot</a></td><td class="desc">Used to load Mascot PepXML files </td></tr>
<tr id="row_485_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ProtXMLFile.html" target="_self">ProtXMLFile</a></td><td class="desc">Used to load (storing not supported, yet) ProtXML files </td></tr>
<tr id="row_485_16_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1PTMXMLFile.html" target="_self">PTMXMLFile</a></td><td class="desc">Used to load and store PTMXML files </td></tr>
<tr id="row_485_17_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1QcMLFile.html" target="_self">QcMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for QcML files </td></tr>
<tr id="row_485_18_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1ToolDescriptionFile.html" target="_self">ToolDescriptionFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for ToolDescriptor files </td></tr>
<tr id="row_485_19_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TraMLFile.html" target="_self">TraMLFile</a></td><td class="desc"><a class="el" href="classOpenMS_1_1File.html" title="Basic file handling operations. ">File</a> adapter for HUPO PSI TraML files </td></tr>
<tr id="row_485_20_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1TransformationXMLFile.html" target="_self">TransformationXMLFile</a></td><td class="desc">Used to load and store TransformationXML files </td></tr>
<tr id="row_485_21_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1UnimodXMLFile.html" target="_self">UnimodXMLFile</a></td><td class="desc">Used to load XML files from unimod.org files </td></tr>
<tr id="row_485_22_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1XTandemInfile.html" target="_self">XTandemInfile</a></td><td class="desc">XTandem input file </td></tr>
<tr id="row_485_23_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1XTandemXMLFile.html" target="_self">XTandemXMLFile</a></td><td class="desc">Used to load XTandemXML files </td></tr>
<tr id="row_486_" class="even"><td class="entry"><img id="arr_486_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('486_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>XMLFormatTarget</b></td><td class="desc"></td></tr>
<tr id="row_486_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classOpenMS_1_1Internal_1_1OpenMSXMLFormatTarget.html" target="_self">OpenMSXMLFormatTarget</a></td><td class="desc"></td></tr>
<tr id="row_487_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structOpenMS_1_1Internal_1_1XTandemInfileNote.html" target="_self">XTandemInfileNote</a></td><td class="desc">Note representation of bioml structure used by XTandem </td></tr>
<tr id="row_488_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classdouble.html" target="_self">double</a></td><td class="desc"></td></tr>
<tr id="row_489_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classFeatureT.html" target="_self">FeatureT</a></td><td class="desc"></td></tr>
<tr id="row_490_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classFloatDataArray.html" target="_self">FloatDataArray</a></td><td class="desc"></td></tr>
<tr id="row_491_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classInt.html" target="_self">Int</a></td><td class="desc"></td></tr>
<tr id="row_492_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classIntegerDataArray.html" target="_self">IntegerDataArray</a></td><td class="desc"></td></tr>
<tr id="row_493_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classMassTrace_3_01PeakType_01_4.html" target="_self">MassTrace< PeakType ></a></td><td class="desc"></td></tr>
<tr id="row_494_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classstd_1_1pair_3_01FASTAFile_1_1FASTAEntry_00_01MetaInfoInterface_01_4.html" target="_self">pair< FASTAFile::FASTAEntry, MetaInfoInterface ></a></td><td class="desc"></td></tr>
<tr id="row_495_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classPeakT.html" target="_self">PeakT</a></td><td class="desc"></td></tr>
<tr id="row_496_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classReal.html" target="_self">Real</a></td><td class="desc"></td></tr>
<tr id="row_497_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classStringDataArray.html" target="_self">StringDataArray</a></td><td class="desc"></td></tr>
<tr id="row_498_" class="even"><td class="entry"><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classunsigned_01int.html" target="_self">unsigned int</a></td><td class="desc"></td></tr>
</table>
</div><!-- directory -->
</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:20:58 using doxygen 1.8.5</font></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|