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
|
<HTML>
<HEAD>
<TITLE>FeatureMap< FeatureT > Class Template Reference</TITLE>
<LINK HREF="doxygen.css" REL="stylesheet" TYPE="text/css">
<LINK HREF="style_ini.css" REL="stylesheet" TYPE="text/css">
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<A href="index.html">Home</A> ·
<A href="classes.html">Classes</A> ·
<A href="annotated.html">Annotated Classes</A> ·
<A href="modules.html">Modules</A> ·
<A href="functions_func.html">Members</A> ·
<A href="namespaces.html">Namespaces</A> ·
<A href="pages.html">Related Pages</A>
<HR style="height:1px; border:none; border-top:1px solid #c0c0c0;">
<!-- Generated by Doxygen 1.8.5 -->
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceOpenMS.html">OpenMS</a></li><li class="navelem"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> |
<a href="classOpenMS_1_1FeatureMap-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">FeatureMap< FeatureT > Class Template Reference<div class="ingroups"><a class="el" href="group__Kernel.html">Kernel</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p>A container for features.
<a href="classOpenMS_1_1FeatureMap.html#details">More...</a></p>
<p><code>#include <<a class="el" href="FeatureMap_8h_source.html">OpenMS/KERNEL/FeatureMap.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for FeatureMap< FeatureT >:</div>
<div class="dyncontent">
<div class="center">
<img src="classOpenMS_1_1FeatureMap.png" usemap="#FeatureMap< FeatureT >_map" alt=""/>
<map id="FeatureMap< FeatureT >_map" name="FeatureMap< FeatureT >_map">
<area href="classOpenMS_1_1RangeManager.html" alt="RangeManager< 2 >" shape="rect" coords="280,0,550,24"/>
<area href="classOpenMS_1_1DocumentIdentifier.html" title="Manage source document information. " alt="DocumentIdentifier" shape="rect" coords="560,0,830,24"/>
<area href="classOpenMS_1_1UniqueIdInterface.html" title="A base class defining a common interface for all classes having a unique id. " alt="UniqueIdInterface" shape="rect" coords="840,0,1110,24"/>
<area href="classOpenMS_1_1UniqueIdIndexer.html" alt="UniqueIdIndexer< FeatureMap< FeatureT > >" shape="rect" coords="1120,0,1390,24"/>
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr><td colspan="2"><div class="groupHeader">Type definitions</div></td></tr>
<tr class="memitem:a0aea291cfaf950725ecd637c801a94e7"><td class="memItemLeft" align="right" valign="top">typedef std::vector< <a class="el" href="classFeatureT.html">FeatureT</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a0aea291cfaf950725ecd637c801a94e7">privvec</a></td></tr>
<tr class="separator:a0aea291cfaf950725ecd637c801a94e7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a82111d00f99caf4fe1bbb9d4fc0653a7"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classFeatureT.html">FeatureT</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a82111d00f99caf4fe1bbb9d4fc0653a7">FeatureType</a></td></tr>
<tr class="separator:a82111d00f99caf4fe1bbb9d4fc0653a7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a035217389fa12c02d059ddfb29c459e1"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a>< 2 > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a035217389fa12c02d059ddfb29c459e1">RangeManagerType</a></td></tr>
<tr class="separator:a035217389fa12c02d059ddfb29c459e1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a35aeb240bfe3e56368ea94538ccba743"><td class="memItemLeft" align="right" valign="top">typedef std::vector< <a class="el" href="classOpenMS_1_1FeatureMap.html#a82111d00f99caf4fe1bbb9d4fc0653a7">FeatureType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a35aeb240bfe3e56368ea94538ccba743">Base</a></td></tr>
<tr class="separator:a35aeb240bfe3e56368ea94538ccba743"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad436ba4f307bb17e3a999bf315125b33"><td class="memItemLeft" align="right" valign="top">typedef Base::iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#ad436ba4f307bb17e3a999bf315125b33">Iterator</a></td></tr>
<tr class="separator:ad436ba4f307bb17e3a999bf315125b33"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab0b72f785126c7046aa106fc05a8cda4"><td class="memItemLeft" align="right" valign="top">typedef Base::const_iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#ab0b72f785126c7046aa106fc05a8cda4">ConstIterator</a></td></tr>
<tr class="separator:ab0b72f785126c7046aa106fc05a8cda4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba21528f2ca3da3a55e0265213b889e7"><td class="memItemLeft" align="right" valign="top">typedef Base::reverse_iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#aba21528f2ca3da3a55e0265213b889e7">ReverseIterator</a></td></tr>
<tr class="separator:aba21528f2ca3da3a55e0265213b889e7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8858439b94989776fb9148e9c31366ed"><td class="memItemLeft" align="right" valign="top">typedef <br class="typebreak"/>
Base::const_reverse_iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a8858439b94989776fb9148e9c31366ed">ConstReverseIterator</a></td></tr>
<tr class="separator:a8858439b94989776fb9148e9c31366ed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa658710632c61cf91f5758f42c9ec39e"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1FeatureMap.html#a82111d00f99caf4fe1bbb9d4fc0653a7">FeatureType</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#aa658710632c61cf91f5758f42c9ec39e">Reference</a></td></tr>
<tr class="separator:aa658710632c61cf91f5758f42c9ec39e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a37e5073c3f3bedc8a0935b3068b2d15c"><td class="memItemLeft" align="right" valign="top">typedef const <a class="el" href="classOpenMS_1_1FeatureMap.html#a82111d00f99caf4fe1bbb9d4fc0653a7">FeatureType</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a37e5073c3f3bedc8a0935b3068b2d15c">ConstReference</a></td></tr>
<tr class="separator:a37e5073c3f3bedc8a0935b3068b2d15c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_types_classOpenMS_1_1RangeManager"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classOpenMS_1_1RangeManager')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager< 2 ></a></td></tr>
<tr class="memitem:aba01db17f4a2bfbc3db60dc172972a25 inherit pub_types_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"></td></tr>
<tr class="memdesc:aba01db17f4a2bfbc3db60dc172972a25"><td class="mdescLeft"> </td><td class="mdescRight">Dimension of the position range. <a href="classOpenMS_1_1RangeManager.html#aba01db17f4a2bfbc3db60dc172972a25">More...</a><br/></td></tr>
<tr class="separator:aba01db17f4a2bfbc3db60dc172972a25 inherit pub_types_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ace303f7dacc306627f694eb21d6a8366 inherit pub_types_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1DRange.html">DRange</a>< D > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#ace303f7dacc306627f694eb21d6a8366">PositionRangeType</a></td></tr>
<tr class="memdesc:ace303f7dacc306627f694eb21d6a8366 inherit pub_types_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Position range type. <a href="#ace303f7dacc306627f694eb21d6a8366">More...</a><br/></td></tr>
<tr class="separator:ace303f7dacc306627f694eb21d6a8366 inherit pub_types_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a49ac71825a631fc5537551e33ad4b72c inherit pub_types_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1DPosition.html">DPosition</a>< D > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a49ac71825a631fc5537551e33ad4b72c">PositionType</a></td></tr>
<tr class="memdesc:a49ac71825a631fc5537551e33ad4b72c inherit pub_types_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Position Type. <a href="#a49ac71825a631fc5537551e33ad4b72c">More...</a><br/></td></tr>
<tr class="separator:a49ac71825a631fc5537551e33ad4b72c inherit pub_types_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e46dc0a14662f00a779721738310cfb inherit pub_types_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1DRange.html">DRange</a>< 1 > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a6e46dc0a14662f00a779721738310cfb">IntensityRangeType</a></td></tr>
<tr class="memdesc:a6e46dc0a14662f00a779721738310cfb inherit pub_types_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Intensity range type. <a href="#a6e46dc0a14662f00a779721738310cfb">More...</a><br/></td></tr>
<tr class="separator:a6e46dc0a14662f00a779721738310cfb inherit pub_types_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_types_classOpenMS_1_1UniqueIdInterface"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classOpenMS_1_1UniqueIdInterface')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="classOpenMS_1_1UniqueIdInterface.html">UniqueIdInterface</a></td></tr>
<tr class="memitem:adc29c2ff13d900c2f185ee95427fb06c inherit pub_types_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom">{ <a class="el" href="classOpenMS_1_1UniqueIdInterface.html#adc29c2ff13d900c2f185ee95427fb06caef2863a469df3ea6871d640e3669a2f2">INVALID</a> = 0
}</td></tr>
<tr class="memdesc:adc29c2ff13d900c2f185ee95427fb06c"><td class="mdescLeft"> </td><td class="mdescRight">This is the invalid unique id (cast it to a UInt64 if you like) <a href="classOpenMS_1_1UniqueIdInterface.html#adc29c2ff13d900c2f185ee95427fb06c">More...</a><br/></td></tr>
<tr class="separator:adc29c2ff13d900c2f185ee95427fb06c inherit pub_types_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_types_classOpenMS_1_1UniqueIdIndexer"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classOpenMS_1_1UniqueIdIndexer')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="classOpenMS_1_1UniqueIdIndexer.html">UniqueIdIndexer< FeatureMap< FeatureT > ></a></td></tr>
<tr class="memitem:ab0a134075f9d5338f41eaa28cb230fb5 inherit pub_types_classOpenMS_1_1UniqueIdIndexer"><td class="memItemLeft" align="right" valign="top">typedef boost::unordered_map<br class="typebreak"/>
< <a class="el" href="group__Concept.html#ga5162db95dc78bdf2e3a71d73bec703e9">UInt64</a>, <a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html#ab0a134075f9d5338f41eaa28cb230fb5">UniqueIdMap</a></td></tr>
<tr class="separator:ab0a134075f9d5338f41eaa28cb230fb5 inherit pub_types_classOpenMS_1_1UniqueIdIndexer"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a23b5a9e6646cda6ec189c83575a1c770"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a23b5a9e6646cda6ec189c83575a1c770">operator=</a> (const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> &rhs)</td></tr>
<tr class="memdesc:a23b5a9e6646cda6ec189c83575a1c770"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator. <a href="#a23b5a9e6646cda6ec189c83575a1c770">More...</a><br/></td></tr>
<tr class="separator:a23b5a9e6646cda6ec189c83575a1c770"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a18cf03155b291a1bda26fbe431431788"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a18cf03155b291a1bda26fbe431431788">operator==</a> (const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> &rhs) const </td></tr>
<tr class="memdesc:a18cf03155b291a1bda26fbe431431788"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#a18cf03155b291a1bda26fbe431431788">More...</a><br/></td></tr>
<tr class="separator:a18cf03155b291a1bda26fbe431431788"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2c6b0c7c830a0bccd31cce45386f3f2"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#af2c6b0c7c830a0bccd31cce45386f3f2">operator!=</a> (const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> &rhs) const </td></tr>
<tr class="memdesc:af2c6b0c7c830a0bccd31cce45386f3f2"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#af2c6b0c7c830a0bccd31cce45386f3f2">More...</a><br/></td></tr>
<tr class="separator:af2c6b0c7c830a0bccd31cce45386f3f2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2a35c2c990adb9d14958e2ea88995dda"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a2a35c2c990adb9d14958e2ea88995dda">operator+</a> (const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> &rhs) const </td></tr>
<tr class="memdesc:a2a35c2c990adb9d14958e2ea88995dda"><td class="mdescLeft"> </td><td class="mdescRight">Joins two feature maps. <a href="#a2a35c2c990adb9d14958e2ea88995dda">More...</a><br/></td></tr>
<tr class="separator:a2a35c2c990adb9d14958e2ea88995dda"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6d9d2f709e76acc61c5a869bd4f755c8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a6d9d2f709e76acc61c5a869bd4f755c8">operator+=</a> (const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> &rhs)</td></tr>
<tr class="memdesc:a6d9d2f709e76acc61c5a869bd4f755c8"><td class="mdescLeft"> </td><td class="mdescRight">Add one feature map to another. <a href="#a6d9d2f709e76acc61c5a869bd4f755c8">More...</a><br/></td></tr>
<tr class="separator:a6d9d2f709e76acc61c5a869bd4f755c8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adda2fd1aa19da6622530d9073fbcf66d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#adda2fd1aa19da6622530d9073fbcf66d">updateRanges</a> ()</td></tr>
<tr class="memdesc:adda2fd1aa19da6622530d9073fbcf66d"><td class="mdescLeft"> </td><td class="mdescRight">Updates minimum and maximum position/intensity. <a href="#adda2fd1aa19da6622530d9073fbcf66d">More...</a><br/></td></tr>
<tr class="separator:adda2fd1aa19da6622530d9073fbcf66d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3554cb60a93215ed6c61b257a67efcc3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a3554cb60a93215ed6c61b257a67efcc3">swapFeaturesOnly</a> (<a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> &from)</td></tr>
<tr class="memdesc:a3554cb60a93215ed6c61b257a67efcc3"><td class="mdescLeft"> </td><td class="mdescRight">Swaps the feature content (plus its range information) of this map with the content of <code>from</code>. <a href="#a3554cb60a93215ed6c61b257a67efcc3">More...</a><br/></td></tr>
<tr class="separator:a3554cb60a93215ed6c61b257a67efcc3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7ade52218357ec67a4f7a6bc71041e85"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a7ade52218357ec67a4f7a6bc71041e85">swap</a> (<a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> &from)</td></tr>
<tr class="separator:a7ade52218357ec67a4f7a6bc71041e85"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acef58bf2531b77d0191c4780739281c6"><td class="memItemLeft" align="right" valign="top">const std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#acef58bf2531b77d0191c4780739281c6">getProteinIdentifications</a> () const </td></tr>
<tr class="memdesc:acef58bf2531b77d0191c4780739281c6"><td class="mdescLeft"> </td><td class="mdescRight">non-mutable access to the protein identifications <a href="#acef58bf2531b77d0191c4780739281c6">More...</a><br/></td></tr>
<tr class="separator:acef58bf2531b77d0191c4780739281c6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a606b9b370ed163364cc104c39fe17ae6"><td class="memItemLeft" align="right" valign="top">std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a606b9b370ed163364cc104c39fe17ae6">getProteinIdentifications</a> ()</td></tr>
<tr class="memdesc:a606b9b370ed163364cc104c39fe17ae6"><td class="mdescLeft"> </td><td class="mdescRight">mutable access to the protein identifications <a href="#a606b9b370ed163364cc104c39fe17ae6">More...</a><br/></td></tr>
<tr class="separator:a606b9b370ed163364cc104c39fe17ae6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6d85ac28bb82da988383fd19b8504988"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a6d85ac28bb82da988383fd19b8504988">setProteinIdentifications</a> (const std::vector< <a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a> > &protein_identifications)</td></tr>
<tr class="memdesc:a6d85ac28bb82da988383fd19b8504988"><td class="mdescLeft"> </td><td class="mdescRight">sets the protein identifications <a href="#a6d85ac28bb82da988383fd19b8504988">More...</a><br/></td></tr>
<tr class="separator:a6d85ac28bb82da988383fd19b8504988"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a001ea2eb2a9c05266a69f50594f25604"><td class="memItemLeft" align="right" valign="top">const std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1PeptideIdentification.html">PeptideIdentification</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a001ea2eb2a9c05266a69f50594f25604">getUnassignedPeptideIdentifications</a> () const </td></tr>
<tr class="memdesc:a001ea2eb2a9c05266a69f50594f25604"><td class="mdescLeft"> </td><td class="mdescRight">non-mutable access to the unassigned peptide identifications <a href="#a001ea2eb2a9c05266a69f50594f25604">More...</a><br/></td></tr>
<tr class="separator:a001ea2eb2a9c05266a69f50594f25604"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2a8c76918f1a4ee1929f06c2558f8c97"><td class="memItemLeft" align="right" valign="top">std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1PeptideIdentification.html">PeptideIdentification</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a2a8c76918f1a4ee1929f06c2558f8c97">getUnassignedPeptideIdentifications</a> ()</td></tr>
<tr class="memdesc:a2a8c76918f1a4ee1929f06c2558f8c97"><td class="mdescLeft"> </td><td class="mdescRight">mutable access to the unassigned peptide identifications <a href="#a2a8c76918f1a4ee1929f06c2558f8c97">More...</a><br/></td></tr>
<tr class="separator:a2a8c76918f1a4ee1929f06c2558f8c97"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a37631ce8db66a5227a34ae2e40b22b8b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a37631ce8db66a5227a34ae2e40b22b8b">setUnassignedPeptideIdentifications</a> (const std::vector< <a class="el" href="classOpenMS_1_1PeptideIdentification.html">PeptideIdentification</a> > &unassigned_peptide_identifications)</td></tr>
<tr class="memdesc:a37631ce8db66a5227a34ae2e40b22b8b"><td class="mdescLeft"> </td><td class="mdescRight">sets the unassigned peptide identifications <a href="#a37631ce8db66a5227a34ae2e40b22b8b">More...</a><br/></td></tr>
<tr class="separator:a37631ce8db66a5227a34ae2e40b22b8b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae131ea2ec923582f86aa9805e72241ad"><td class="memItemLeft" align="right" valign="top">const std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1DataProcessing.html">DataProcessing</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#ae131ea2ec923582f86aa9805e72241ad">getDataProcessing</a> () const </td></tr>
<tr class="memdesc:ae131ea2ec923582f86aa9805e72241ad"><td class="mdescLeft"> </td><td class="mdescRight">returns a const reference to the description of the applied data processing <a href="#ae131ea2ec923582f86aa9805e72241ad">More...</a><br/></td></tr>
<tr class="separator:ae131ea2ec923582f86aa9805e72241ad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a960b6da3bf55e40e959653b036fd12a8"><td class="memItemLeft" align="right" valign="top">std::vector< <a class="el" href="classOpenMS_1_1DataProcessing.html">DataProcessing</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a960b6da3bf55e40e959653b036fd12a8">getDataProcessing</a> ()</td></tr>
<tr class="memdesc:a960b6da3bf55e40e959653b036fd12a8"><td class="mdescLeft"> </td><td class="mdescRight">returns a mutable reference to the description of the applied data processing <a href="#a960b6da3bf55e40e959653b036fd12a8">More...</a><br/></td></tr>
<tr class="separator:a960b6da3bf55e40e959653b036fd12a8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8b8822043dbf3e8451ff65ce4403a0e5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a8b8822043dbf3e8451ff65ce4403a0e5">setDataProcessing</a> (const std::vector< <a class="el" href="classOpenMS_1_1DataProcessing.html">DataProcessing</a> > &processing_method)</td></tr>
<tr class="memdesc:a8b8822043dbf3e8451ff65ce4403a0e5"><td class="mdescLeft"> </td><td class="mdescRight">sets the description of the applied data processing <a href="#a8b8822043dbf3e8451ff65ce4403a0e5">More...</a><br/></td></tr>
<tr class="separator:a8b8822043dbf3e8451ff65ce4403a0e5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b5660c6199fa9d5fef65974c7e3e733"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a7b5660c6199fa9d5fef65974c7e3e733">clear</a> (bool clear_meta_data=true)</td></tr>
<tr class="memdesc:a7b5660c6199fa9d5fef65974c7e3e733"><td class="mdescLeft"> </td><td class="mdescRight">Clears all data and meta data. <a href="#a7b5660c6199fa9d5fef65974c7e3e733">More...</a><br/></td></tr>
<tr class="separator:a7b5660c6199fa9d5fef65974c7e3e733"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ba4cf095974c86863027d78210dc2fa"><td class="memTemplParams" colspan="2">template<typename Type > </td></tr>
<tr class="memitem:a2ba4cf095974c86863027d78210dc2fa"><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a2ba4cf095974c86863027d78210dc2fa">applyMemberFunction</a> (<a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a>(Type::*member_function)())</td></tr>
<tr class="memdesc:a2ba4cf095974c86863027d78210dc2fa"><td class="mdescLeft"> </td><td class="mdescRight">Applies a member function of Type to the container itself and all features (including subordinates). The returned values are accumulated. <a href="#a2ba4cf095974c86863027d78210dc2fa">More...</a><br/></td></tr>
<tr class="separator:a2ba4cf095974c86863027d78210dc2fa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac4a24ec632c6289210b0db06d7f2af9f"><td class="memTemplParams" colspan="2">template<typename Type > </td></tr>
<tr class="memitem:ac4a24ec632c6289210b0db06d7f2af9f"><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#ac4a24ec632c6289210b0db06d7f2af9f">applyMemberFunction</a> (<a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a>(Type::*member_function)() const) const </td></tr>
<tr class="memdesc:ac4a24ec632c6289210b0db06d7f2af9f"><td class="mdescLeft"> </td><td class="mdescRight">The "const" variant. <a href="#ac4a24ec632c6289210b0db06d7f2af9f">More...</a><br/></td></tr>
<tr class="separator:ac4a24ec632c6289210b0db06d7f2af9f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4f40a3d8606e7855a7b3c12620bf9f58"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structOpenMS_1_1AnnotationStatistics.html">AnnotationStatistics</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a4f40a3d8606e7855a7b3c12620bf9f58">getAnnotationStatistics</a> () const </td></tr>
<tr class="separator:a4f40a3d8606e7855a7b3c12620bf9f58"><td class="memSeparator" colspan="2"> </td></tr>
<tr><td colspan="2"><div class="groupHeader">Constructors and Destructor</div></td></tr>
<tr class="memitem:a92db7c70991e0a3f133fd337459c769e"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a92db7c70991e0a3f133fd337459c769e">FeatureMap</a> ()</td></tr>
<tr class="memdesc:a92db7c70991e0a3f133fd337459c769e"><td class="mdescLeft"> </td><td class="mdescRight">Default constructor. <a href="#a92db7c70991e0a3f133fd337459c769e">More...</a><br/></td></tr>
<tr class="separator:a92db7c70991e0a3f133fd337459c769e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9bc138dcbec4ce3a1acb600e84a8b35e"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a9bc138dcbec4ce3a1acb600e84a8b35e">FeatureMap</a> (const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> &source)</td></tr>
<tr class="memdesc:a9bc138dcbec4ce3a1acb600e84a8b35e"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor. <a href="#a9bc138dcbec4ce3a1acb600e84a8b35e">More...</a><br/></td></tr>
<tr class="separator:a9bc138dcbec4ce3a1acb600e84a8b35e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a76d43c4e8fc95ce93063baa39d214439"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a76d43c4e8fc95ce93063baa39d214439">~FeatureMap</a> ()</td></tr>
<tr class="memdesc:a76d43c4e8fc95ce93063baa39d214439"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#a76d43c4e8fc95ce93063baa39d214439">More...</a><br/></td></tr>
<tr class="separator:a76d43c4e8fc95ce93063baa39d214439"><td class="memSeparator" colspan="2"> </td></tr>
<tr><td colspan="2"><div class="groupHeader">Sorting.</div></td></tr>
<tr><td colspan="2"><div class="groupText"><p>These simplified sorting methods are supported in addition to the standard sorting methods of std::vector. </p>
</div></td></tr>
<tr class="memitem:a93f1c9f620403aec160d98e83e125502"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a93f1c9f620403aec160d98e83e125502">sortByIntensity</a> (bool reverse=false)</td></tr>
<tr class="memdesc:a93f1c9f620403aec160d98e83e125502"><td class="mdescLeft"> </td><td class="mdescRight">Sorts the peaks according to ascending intensity. <a href="#a93f1c9f620403aec160d98e83e125502">More...</a><br/></td></tr>
<tr class="separator:a93f1c9f620403aec160d98e83e125502"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a86f7b200260209865e730a2e4fcaa628"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a86f7b200260209865e730a2e4fcaa628">sortByPosition</a> ()</td></tr>
<tr class="memdesc:a86f7b200260209865e730a2e4fcaa628"><td class="mdescLeft"> </td><td class="mdescRight">Sort features by position. Lexicographical comparison (first RT then m/z) is done. <a href="#a86f7b200260209865e730a2e4fcaa628">More...</a><br/></td></tr>
<tr class="separator:a86f7b200260209865e730a2e4fcaa628"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13c4a8ce7f8275728e865728698173e6"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a13c4a8ce7f8275728e865728698173e6">sortByRT</a> ()</td></tr>
<tr class="memdesc:a13c4a8ce7f8275728e865728698173e6"><td class="mdescLeft"> </td><td class="mdescRight">Sort features by RT position. <a href="#a13c4a8ce7f8275728e865728698173e6">More...</a><br/></td></tr>
<tr class="separator:a13c4a8ce7f8275728e865728698173e6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a604ce6f3380b18acbebda3c1ed14e70c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a604ce6f3380b18acbebda3c1ed14e70c">sortByMZ</a> ()</td></tr>
<tr class="memdesc:a604ce6f3380b18acbebda3c1ed14e70c"><td class="mdescLeft"> </td><td class="mdescRight">Sort features by m/z position. <a href="#a604ce6f3380b18acbebda3c1ed14e70c">More...</a><br/></td></tr>
<tr class="separator:a604ce6f3380b18acbebda3c1ed14e70c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a099506e6c3af2ab3e2ad1ed8781e0691"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a099506e6c3af2ab3e2ad1ed8781e0691">sortByOverallQuality</a> (bool reverse=false)</td></tr>
<tr class="memdesc:a099506e6c3af2ab3e2ad1ed8781e0691"><td class="mdescLeft"> </td><td class="mdescRight">Sort features by ascending overall quality. <a href="#a099506e6c3af2ab3e2ad1ed8781e0691">More...</a><br/></td></tr>
<tr class="separator:a099506e6c3af2ab3e2ad1ed8781e0691"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1RangeManager"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1RangeManager')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager< 2 ></a></td></tr>
<tr class="memitem:a2819d7889d3f7ecd7441d8e57811a03f inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a2819d7889d3f7ecd7441d8e57811a03f">RangeManager</a> ()</td></tr>
<tr class="memdesc:a2819d7889d3f7ecd7441d8e57811a03f inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Default constructor. <a href="#a2819d7889d3f7ecd7441d8e57811a03f">More...</a><br/></td></tr>
<tr class="separator:a2819d7889d3f7ecd7441d8e57811a03f inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9674af31a0f97a3b684ec886264667b6 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a9674af31a0f97a3b684ec886264667b6">RangeManager</a> (const <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a> &rhs)</td></tr>
<tr class="memdesc:a9674af31a0f97a3b684ec886264667b6 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor. <a href="#a9674af31a0f97a3b684ec886264667b6">More...</a><br/></td></tr>
<tr class="separator:a9674af31a0f97a3b684ec886264667b6 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7c7da4957e13f1070fb0eec76d1d8745 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a7c7da4957e13f1070fb0eec76d1d8745">~RangeManager</a> ()</td></tr>
<tr class="memdesc:a7c7da4957e13f1070fb0eec76d1d8745 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#a7c7da4957e13f1070fb0eec76d1d8745">More...</a><br/></td></tr>
<tr class="separator:a7c7da4957e13f1070fb0eec76d1d8745 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad808bc540f1cba8049a23bec074eed64 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#ad808bc540f1cba8049a23bec074eed64">operator=</a> (const <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a> &rhs)</td></tr>
<tr class="memdesc:ad808bc540f1cba8049a23bec074eed64 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator. <a href="#ad808bc540f1cba8049a23bec074eed64">More...</a><br/></td></tr>
<tr class="separator:ad808bc540f1cba8049a23bec074eed64 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afd83f7e639b59d37a1ea380d935ec4eb inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#afd83f7e639b59d37a1ea380d935ec4eb">operator==</a> (const <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a> &rhs) const</td></tr>
<tr class="memdesc:afd83f7e639b59d37a1ea380d935ec4eb inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#afd83f7e639b59d37a1ea380d935ec4eb">More...</a><br/></td></tr>
<tr class="separator:afd83f7e639b59d37a1ea380d935ec4eb inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a03478cbcbe3bccce37db0657226a538d inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a03478cbcbe3bccce37db0657226a538d">operator!=</a> (const <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a> &rhs) const</td></tr>
<tr class="memdesc:a03478cbcbe3bccce37db0657226a538d inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#a03478cbcbe3bccce37db0657226a538d">More...</a><br/></td></tr>
<tr class="separator:a03478cbcbe3bccce37db0657226a538d inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad7e9497afbc70b1bd40dba2874802954 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1RangeManager.html#a49ac71825a631fc5537551e33ad4b72c">PositionType</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#ad7e9497afbc70b1bd40dba2874802954">getMin</a> () const</td></tr>
<tr class="memdesc:ad7e9497afbc70b1bd40dba2874802954 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Returns the minimum position. <a href="#ad7e9497afbc70b1bd40dba2874802954">More...</a><br/></td></tr>
<tr class="separator:ad7e9497afbc70b1bd40dba2874802954 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab54df5a3894df5cebc88022e8684ff65 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1RangeManager.html#a49ac71825a631fc5537551e33ad4b72c">PositionType</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#ab54df5a3894df5cebc88022e8684ff65">getMax</a> () const</td></tr>
<tr class="memdesc:ab54df5a3894df5cebc88022e8684ff65 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Returns the maximum position. <a href="#ab54df5a3894df5cebc88022e8684ff65">More...</a><br/></td></tr>
<tr class="separator:ab54df5a3894df5cebc88022e8684ff65 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe0be2a3600705a1471df7caf6e9f07c inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#afe0be2a3600705a1471df7caf6e9f07c">getMinInt</a> () const</td></tr>
<tr class="memdesc:afe0be2a3600705a1471df7caf6e9f07c inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Returns the minimum intensity. <a href="#afe0be2a3600705a1471df7caf6e9f07c">More...</a><br/></td></tr>
<tr class="separator:afe0be2a3600705a1471df7caf6e9f07c inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2aae292c90f0f138170dd774601a7139 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a2aae292c90f0f138170dd774601a7139">getMaxInt</a> () const</td></tr>
<tr class="memdesc:a2aae292c90f0f138170dd774601a7139 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Returns the maximum intensity. <a href="#a2aae292c90f0f138170dd774601a7139">More...</a><br/></td></tr>
<tr class="separator:a2aae292c90f0f138170dd774601a7139 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaa3d5efb96ade4c8ce2c8e216a73dcd1 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#aaa3d5efb96ade4c8ce2c8e216a73dcd1">clearRanges</a> ()</td></tr>
<tr class="memdesc:aaa3d5efb96ade4c8ce2c8e216a73dcd1 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Resets the ranges. <a href="#aaa3d5efb96ade4c8ce2c8e216a73dcd1">More...</a><br/></td></tr>
<tr class="separator:aaa3d5efb96ade4c8ce2c8e216a73dcd1 inherit pub_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1DocumentIdentifier"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1DocumentIdentifier')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a></td></tr>
<tr class="memitem:a7fb206677dc6ea82973629409705fd75 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a7fb206677dc6ea82973629409705fd75">DocumentIdentifier</a> ()</td></tr>
<tr class="memdesc:a7fb206677dc6ea82973629409705fd75 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">default constructor <a href="#a7fb206677dc6ea82973629409705fd75">More...</a><br/></td></tr>
<tr class="separator:a7fb206677dc6ea82973629409705fd75 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a40662ac1f41ebf7483cc85d4f1b409c5 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a40662ac1f41ebf7483cc85d4f1b409c5">DocumentIdentifier</a> (const <a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a> &source)</td></tr>
<tr class="memdesc:a40662ac1f41ebf7483cc85d4f1b409c5 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor. <a href="#a40662ac1f41ebf7483cc85d4f1b409c5">More...</a><br/></td></tr>
<tr class="separator:a40662ac1f41ebf7483cc85d4f1b409c5 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9cef699d5e2f6c8c197a1364605923ac inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a9cef699d5e2f6c8c197a1364605923ac">operator=</a> (const <a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a> &source)</td></tr>
<tr class="memdesc:a9cef699d5e2f6c8c197a1364605923ac inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator. <a href="#a9cef699d5e2f6c8c197a1364605923ac">More...</a><br/></td></tr>
<tr class="separator:a9cef699d5e2f6c8c197a1364605923ac inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a75abab7891cf576f294c2878cf00f090 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a75abab7891cf576f294c2878cf00f090">operator==</a> (const <a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a> &rhs) const </td></tr>
<tr class="memdesc:a75abab7891cf576f294c2878cf00f090 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">Equality operator. <a href="#a75abab7891cf576f294c2878cf00f090">More...</a><br/></td></tr>
<tr class="separator:a75abab7891cf576f294c2878cf00f090 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a36b60bd2716d88a78e7f80b9ecd83dc8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a36b60bd2716d88a78e7f80b9ecd83dc8">~DocumentIdentifier</a> ()</td></tr>
<tr class="memdesc:a36b60bd2716d88a78e7f80b9ecd83dc8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">destructor <a href="#a36b60bd2716d88a78e7f80b9ecd83dc8">More...</a><br/></td></tr>
<tr class="separator:a36b60bd2716d88a78e7f80b9ecd83dc8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00f1456779f764c2738c35be2c04f6e8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a00f1456779f764c2738c35be2c04f6e8">setIdentifier</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &id)</td></tr>
<tr class="memdesc:a00f1456779f764c2738c35be2c04f6e8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">set document identifier (e.g. an LSID) <a href="#a00f1456779f764c2738c35be2c04f6e8">More...</a><br/></td></tr>
<tr class="separator:a00f1456779f764c2738c35be2c04f6e8 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4eb8ec8636a89f575db95a370fd480b6 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a4eb8ec8636a89f575db95a370fd480b6">getIdentifier</a> () const </td></tr>
<tr class="memdesc:a4eb8ec8636a89f575db95a370fd480b6 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">retrieve document identifier (e.g. an LSID) <a href="#a4eb8ec8636a89f575db95a370fd480b6">More...</a><br/></td></tr>
<tr class="separator:a4eb8ec8636a89f575db95a370fd480b6 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af35350b215e234aeb68b5a2d058e9c6f inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#af35350b215e234aeb68b5a2d058e9c6f">swap</a> (<a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a> &from)</td></tr>
<tr class="memdesc:af35350b215e234aeb68b5a2d058e9c6f inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">exchange content with <code>from</code> <a href="#af35350b215e234aeb68b5a2d058e9c6f">More...</a><br/></td></tr>
<tr class="separator:af35350b215e234aeb68b5a2d058e9c6f inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3b1a4ef7f451b9fdf97c46a128275c99 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#a3b1a4ef7f451b9fdf97c46a128275c99">setLoadedFilePath</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &file_name)</td></tr>
<tr class="memdesc:a3b1a4ef7f451b9fdf97c46a128275c99 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">set the file_name_ according to absolute path of the file loaded from preferably done whilst loading <a href="#a3b1a4ef7f451b9fdf97c46a128275c99">More...</a><br/></td></tr>
<tr class="separator:a3b1a4ef7f451b9fdf97c46a128275c99 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aee7ac99be667b810be1b096691c58efa inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#aee7ac99be667b810be1b096691c58efa">getLoadedFilePath</a> () const </td></tr>
<tr class="memdesc:aee7ac99be667b810be1b096691c58efa inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">get the file_name_ which is the absolute path to the file loaded from <a href="#aee7ac99be667b810be1b096691c58efa">More...</a><br/></td></tr>
<tr class="separator:aee7ac99be667b810be1b096691c58efa inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb9181a2ee15dc517acea64e11ba8f6e inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#aeb9181a2ee15dc517acea64e11ba8f6e">setLoadedFileType</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &file_name)</td></tr>
<tr class="memdesc:aeb9181a2ee15dc517acea64e11ba8f6e inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">set the file_type according to the type of the file loaded from (see FileHandler::Type) preferably done whilst loading <a href="#aeb9181a2ee15dc517acea64e11ba8f6e">More...</a><br/></td></tr>
<tr class="separator:aeb9181a2ee15dc517acea64e11ba8f6e inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad995fa0a761bfdc08fd54e38b1fa1d55 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="structOpenMS_1_1FileTypes.html#a1d1cfd8ffb84e947f82999c682b666a7">FileTypes::Type</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#ad995fa0a761bfdc08fd54e38b1fa1d55">getLoadedFileType</a> () const </td></tr>
<tr class="memdesc:ad995fa0a761bfdc08fd54e38b1fa1d55 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">get the file_type (e.g. featureXML, consensusXML, mzData, mzXML, mzML, ...) of the file loaded from <a href="#ad995fa0a761bfdc08fd54e38b1fa1d55">More...</a><br/></td></tr>
<tr class="separator:ad995fa0a761bfdc08fd54e38b1fa1d55 inherit pub_methods_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1UniqueIdInterface"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1UniqueIdInterface')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classOpenMS_1_1UniqueIdInterface.html">UniqueIdInterface</a></td></tr>
<tr class="memitem:a198796f98b0d6822958a79b75efe8258 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a198796f98b0d6822958a79b75efe8258">UniqueIdInterface</a> ()</td></tr>
<tr class="memdesc:a198796f98b0d6822958a79b75efe8258 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Default constructor - the unique id will be <em>invalid</em> <a href="#a198796f98b0d6822958a79b75efe8258">More...</a><br/></td></tr>
<tr class="separator:a198796f98b0d6822958a79b75efe8258 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a798caf6386fefa1e73c53c8bc6118959 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a798caf6386fefa1e73c53c8bc6118959">UniqueIdInterface</a> (const <a class="el" href="classOpenMS_1_1UniqueIdInterface.html">UniqueIdInterface</a> &rhs)</td></tr>
<tr class="memdesc:a798caf6386fefa1e73c53c8bc6118959 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Copy constructor - copies the unique id. <a href="#a798caf6386fefa1e73c53c8bc6118959">More...</a><br/></td></tr>
<tr class="separator:a798caf6386fefa1e73c53c8bc6118959 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae6de54d4aba9057e4cbe43e4ea26f584 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html">UniqueIdInterface</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#ae6de54d4aba9057e4cbe43e4ea26f584">operator=</a> (<a class="el" href="classOpenMS_1_1UniqueIdInterface.html">UniqueIdInterface</a> const &rhs)</td></tr>
<tr class="memdesc:ae6de54d4aba9057e4cbe43e4ea26f584 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Assignment operator - copies the unique id. <a href="#ae6de54d4aba9057e4cbe43e4ea26f584">More...</a><br/></td></tr>
<tr class="separator:ae6de54d4aba9057e4cbe43e4ea26f584 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab21ef0124584bf04f65e715fe14c8d6e inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#ab21ef0124584bf04f65e715fe14c8d6e">~UniqueIdInterface</a> ()</td></tr>
<tr class="memdesc:ab21ef0124584bf04f65e715fe14c8d6e inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#ab21ef0124584bf04f65e715fe14c8d6e">More...</a><br/></td></tr>
<tr class="separator:ab21ef0124584bf04f65e715fe14c8d6e inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9873e5d82b71944309d5b47110662a9 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#aa9873e5d82b71944309d5b47110662a9">operator==</a> (<a class="el" href="classOpenMS_1_1UniqueIdInterface.html">UniqueIdInterface</a> const &rhs) const </td></tr>
<tr class="memdesc:aa9873e5d82b71944309d5b47110662a9 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Equality comparison operator - the unique ids must be equal (!) <a href="#aa9873e5d82b71944309d5b47110662a9">More...</a><br/></td></tr>
<tr class="separator:aa9873e5d82b71944309d5b47110662a9 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0a9d0893724cca92411b6051f4ce3e16 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#ga5162db95dc78bdf2e3a71d73bec703e9">UInt64</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a0a9d0893724cca92411b6051f4ce3e16">getUniqueId</a> () const </td></tr>
<tr class="memdesc:a0a9d0893724cca92411b6051f4ce3e16 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Non-mutable access to unique id - returns the unique id. <a href="#a0a9d0893724cca92411b6051f4ce3e16">More...</a><br/></td></tr>
<tr class="separator:a0a9d0893724cca92411b6051f4ce3e16 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abe2a26e5d4b92e59f5569bed03ee5b7b inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#abe2a26e5d4b92e59f5569bed03ee5b7b">clearUniqueId</a> ()</td></tr>
<tr class="memdesc:abe2a26e5d4b92e59f5569bed03ee5b7b inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Clear the unique id. The new unique id will be invalid. Returns 1 if the unique id was changed, 0 otherwise. <a href="#abe2a26e5d4b92e59f5569bed03ee5b7b">More...</a><br/></td></tr>
<tr class="separator:abe2a26e5d4b92e59f5569bed03ee5b7b inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a9411d34dd0e6318ccc47ccd0c610e3 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a9a9411d34dd0e6318ccc47ccd0c610e3">swap</a> (<a class="el" href="classOpenMS_1_1UniqueIdInterface.html">UniqueIdInterface</a> &from)</td></tr>
<tr class="separator:a9a9411d34dd0e6318ccc47ccd0c610e3 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f8079c23e7111396fc0b595c2aa9029 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a5f8079c23e7111396fc0b595c2aa9029">hasValidUniqueId</a> () const </td></tr>
<tr class="memdesc:a5f8079c23e7111396fc0b595c2aa9029 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the unique id is valid. Returns 1 if the unique id is valid, 0 otherwise. <a href="#a5f8079c23e7111396fc0b595c2aa9029">More...</a><br/></td></tr>
<tr class="separator:a5f8079c23e7111396fc0b595c2aa9029 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a098cc7b335c4334c6014afa3fc806b inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a1a098cc7b335c4334c6014afa3fc806b">hasInvalidUniqueId</a> () const </td></tr>
<tr class="memdesc:a1a098cc7b335c4334c6014afa3fc806b inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the unique id is invalid. Returns 1 if the unique id is invalid, 0 otherwise. <a href="#a1a098cc7b335c4334c6014afa3fc806b">More...</a><br/></td></tr>
<tr class="separator:a1a098cc7b335c4334c6014afa3fc806b inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9c908a735f82adb8f66a326547a9acf8 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a9c908a735f82adb8f66a326547a9acf8">setUniqueId</a> ()</td></tr>
<tr class="memdesc:a9c908a735f82adb8f66a326547a9acf8 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Assigns a new, valid unique id. Always returns 1. <a href="#a9c908a735f82adb8f66a326547a9acf8">More...</a><br/></td></tr>
<tr class="separator:a9c908a735f82adb8f66a326547a9acf8 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a25455d059056a9031be8f171c82a0057 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a25455d059056a9031be8f171c82a0057">ensureUniqueId</a> ()</td></tr>
<tr class="memdesc:a25455d059056a9031be8f171c82a0057 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Assigns a valid unique id, but only if the present one is invalid. Returns 1 if the unique id was changed, 0 otherwise. <a href="#a25455d059056a9031be8f171c82a0057">More...</a><br/></td></tr>
<tr class="separator:a25455d059056a9031be8f171c82a0057 inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a36d3cc5203693390e44cc69cf3d4a7ae inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a36d3cc5203693390e44cc69cf3d4a7ae">setUniqueId</a> (<a class="el" href="group__Concept.html#ga5162db95dc78bdf2e3a71d73bec703e9">UInt64</a> rhs)</td></tr>
<tr class="memdesc:a36d3cc5203693390e44cc69cf3d4a7ae inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Assigns the given unique id. <a href="#a36d3cc5203693390e44cc69cf3d4a7ae">More...</a><br/></td></tr>
<tr class="separator:a36d3cc5203693390e44cc69cf3d4a7ae inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a82ae8c3753072270d5f46b62c54ff68b inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a82ae8c3753072270d5f46b62c54ff68b">setUniqueId</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &rhs)</td></tr>
<tr class="memdesc:a82ae8c3753072270d5f46b62c54ff68b inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Mutable access to unique id. <a href="#a82ae8c3753072270d5f46b62c54ff68b">More...</a><br/></td></tr>
<tr class="separator:a82ae8c3753072270d5f46b62c54ff68b inherit pub_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1UniqueIdIndexer"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1UniqueIdIndexer')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classOpenMS_1_1UniqueIdIndexer.html">UniqueIdIndexer< FeatureMap< FeatureT > ></a></td></tr>
<tr class="memitem:a5f68b1cb766cd028db41f0ccc28e596a inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html#a5f68b1cb766cd028db41f0ccc28e596a">uniqueIdToIndex</a> (<a class="el" href="group__Concept.html#ga5162db95dc78bdf2e3a71d73bec703e9">UInt64</a> unique_id) const</td></tr>
<tr class="memdesc:a5f68b1cb766cd028db41f0ccc28e596a inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="mdescLeft"> </td><td class="mdescRight">Returns the index of the feature with the given unique id, or Size(-1) if none exists in this random access container. <a href="#a5f68b1cb766cd028db41f0ccc28e596a">More...</a><br/></td></tr>
<tr class="separator:a5f68b1cb766cd028db41f0ccc28e596a inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a025daa49d78f1a6e015c31c1bc198c31 inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html#a025daa49d78f1a6e015c31c1bc198c31">updateUniqueIdToIndex</a> () const</td></tr>
<tr class="memdesc:a025daa49d78f1a6e015c31c1bc198c31 inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="mdescLeft"> </td><td class="mdescRight">Updates the hash map from unique id to index. <a href="#a025daa49d78f1a6e015c31c1bc198c31">More...</a><br/></td></tr>
<tr class="separator:a025daa49d78f1a6e015c31c1bc198c31 inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aadeff4d5c98a90c2b080ccc45a563731 inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html#aadeff4d5c98a90c2b080ccc45a563731">resolveUniqueIdConflicts</a> ()</td></tr>
<tr class="memdesc:aadeff4d5c98a90c2b080ccc45a563731 inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="mdescLeft"> </td><td class="mdescRight">Assign new UID's to doubly occurring UID's. <a href="#aadeff4d5c98a90c2b080ccc45a563731">More...</a><br/></td></tr>
<tr class="separator:aadeff4d5c98a90c2b080ccc45a563731 inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aea463f31c206ea88fbc82a37174b287a inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html#aea463f31c206ea88fbc82a37174b287a">swap</a> (<a class="el" href="classOpenMS_1_1UniqueIdIndexer.html">UniqueIdIndexer</a> &rhs)</td></tr>
<tr class="memdesc:aea463f31c206ea88fbc82a37174b287a inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="mdescLeft"> </td><td class="mdescRight">Swap. <a href="#aea463f31c206ea88fbc82a37174b287a">More...</a><br/></td></tr>
<tr class="separator:aea463f31c206ea88fbc82a37174b287a inherit pub_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr class="memitem:ad9d205c1045bb7a3b829070054db706f"><td class="memItemLeft" align="right" valign="top">std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#ad9d205c1045bb7a3b829070054db706f">protein_identifications_</a></td></tr>
<tr class="memdesc:ad9d205c1045bb7a3b829070054db706f"><td class="mdescLeft"> </td><td class="mdescRight">protein identifications <a href="#ad9d205c1045bb7a3b829070054db706f">More...</a><br/></td></tr>
<tr class="separator:ad9d205c1045bb7a3b829070054db706f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aab0c90b6e3119dc1ebfe70c37becce6c"><td class="memItemLeft" align="right" valign="top">std::vector<br class="typebreak"/>
< <a class="el" href="classOpenMS_1_1PeptideIdentification.html">PeptideIdentification</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#aab0c90b6e3119dc1ebfe70c37becce6c">unassigned_peptide_identifications_</a></td></tr>
<tr class="memdesc:aab0c90b6e3119dc1ebfe70c37becce6c"><td class="mdescLeft"> </td><td class="mdescRight">peptide identifications not matched to a specific feature <a href="#aab0c90b6e3119dc1ebfe70c37becce6c">More...</a><br/></td></tr>
<tr class="separator:aab0c90b6e3119dc1ebfe70c37becce6c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50a6b2cdb2828e1f3e29c0096fd4ef63"><td class="memItemLeft" align="right" valign="top">std::vector< <a class="el" href="classOpenMS_1_1DataProcessing.html">DataProcessing</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1FeatureMap.html#a50a6b2cdb2828e1f3e29c0096fd4ef63">data_processing_</a></td></tr>
<tr class="memdesc:a50a6b2cdb2828e1f3e29c0096fd4ef63"><td class="mdescLeft"> </td><td class="mdescRight">applied data processing <a href="#a50a6b2cdb2828e1f3e29c0096fd4ef63">More...</a><br/></td></tr>
<tr class="separator:a50a6b2cdb2828e1f3e29c0096fd4ef63"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1RangeManager"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1RangeManager')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager< 2 ></a></td></tr>
<tr class="memitem:a17d1a1e2129fe7ed31600ef8e73c5f9c inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1RangeManager.html#a6e46dc0a14662f00a779721738310cfb">IntensityRangeType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a17d1a1e2129fe7ed31600ef8e73c5f9c">int_range_</a></td></tr>
<tr class="memdesc:a17d1a1e2129fe7ed31600ef8e73c5f9c inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Intensity range (1-dimensional) <a href="#a17d1a1e2129fe7ed31600ef8e73c5f9c">More...</a><br/></td></tr>
<tr class="separator:a17d1a1e2129fe7ed31600ef8e73c5f9c inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab5f4f0d11b0ceff54d8664d1cce7fd8a inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1RangeManager.html#ace303f7dacc306627f694eb21d6a8366">PositionRangeType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#ab5f4f0d11b0ceff54d8664d1cce7fd8a">pos_range_</a></td></tr>
<tr class="memdesc:ab5f4f0d11b0ceff54d8664d1cce7fd8a inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Position range (D-dimensional) <a href="#ab5f4f0d11b0ceff54d8664d1cce7fd8a">More...</a><br/></td></tr>
<tr class="separator:ab5f4f0d11b0ceff54d8664d1cce7fd8a inherit pro_attribs_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1DocumentIdentifier"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1DocumentIdentifier')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classOpenMS_1_1DocumentIdentifier.html">DocumentIdentifier</a></td></tr>
<tr class="memitem:ae1d43a6f8bee9f364bea98c12662e966 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#ae1d43a6f8bee9f364bea98c12662e966">id_</a></td></tr>
<tr class="memdesc:ae1d43a6f8bee9f364bea98c12662e966 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">the ID (e.g. LSID) <a href="#ae1d43a6f8bee9f364bea98c12662e966">More...</a><br/></td></tr>
<tr class="separator:ae1d43a6f8bee9f364bea98c12662e966 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acb68b342f99bac716f72c8d48bb1f517 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#acb68b342f99bac716f72c8d48bb1f517">file_path_</a></td></tr>
<tr class="memdesc:acb68b342f99bac716f72c8d48bb1f517 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">the path to the loaded file <a href="#acb68b342f99bac716f72c8d48bb1f517">More...</a><br/></td></tr>
<tr class="separator:acb68b342f99bac716f72c8d48bb1f517 inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae997e7676ba9c8429217e6b94c377ece inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structOpenMS_1_1FileTypes.html#a1d1cfd8ffb84e947f82999c682b666a7">FileTypes::Type</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1DocumentIdentifier.html#ae997e7676ba9c8429217e6b94c377ece">file_type_</a></td></tr>
<tr class="memdesc:ae997e7676ba9c8429217e6b94c377ece inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="mdescLeft"> </td><td class="mdescRight">the type of the loaded file <a href="#ae997e7676ba9c8429217e6b94c377ece">More...</a><br/></td></tr>
<tr class="separator:ae997e7676ba9c8429217e6b94c377ece inherit pro_attribs_classOpenMS_1_1DocumentIdentifier"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1UniqueIdInterface"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1UniqueIdInterface')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classOpenMS_1_1UniqueIdInterface.html">UniqueIdInterface</a></td></tr>
<tr class="memitem:a2a19ee139bc01ce6c33d1573e506941a inherit pro_attribs_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#ga5162db95dc78bdf2e3a71d73bec703e9">UInt64</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a2a19ee139bc01ce6c33d1573e506941a">unique_id_</a></td></tr>
<tr class="memdesc:a2a19ee139bc01ce6c33d1573e506941a inherit pro_attribs_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">the unique id <a href="#a2a19ee139bc01ce6c33d1573e506941a">More...</a><br/></td></tr>
<tr class="separator:a2a19ee139bc01ce6c33d1573e506941a inherit pro_attribs_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1UniqueIdIndexer"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1UniqueIdIndexer')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classOpenMS_1_1UniqueIdIndexer.html">UniqueIdIndexer< FeatureMap< FeatureT > ></a></td></tr>
<tr class="memitem:aa6774e41aa399644bd8767d062ae9ed2 inherit pro_attribs_classOpenMS_1_1UniqueIdIndexer"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html#ab0a134075f9d5338f41eaa28cb230fb5">UniqueIdMap</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html#aa6774e41aa399644bd8767d062ae9ed2">uniqueid_to_index_</a></td></tr>
<tr class="memdesc:aa6774e41aa399644bd8767d062ae9ed2 inherit pro_attribs_classOpenMS_1_1UniqueIdIndexer"><td class="mdescLeft"> </td><td class="mdescRight">hash map from unique id to index of features <a href="#aa6774e41aa399644bd8767d062ae9ed2">More...</a><br/></td></tr>
<tr class="separator:aa6774e41aa399644bd8767d062ae9ed2 inherit pro_attribs_classOpenMS_1_1UniqueIdIndexer"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_static_methods_classOpenMS_1_1UniqueIdInterface"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classOpenMS_1_1UniqueIdInterface')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classOpenMS_1_1UniqueIdInterface.html">UniqueIdInterface</a></td></tr>
<tr class="memitem:a906c6865045da1b45893822e2a76b9fc inherit pub_static_methods_classOpenMS_1_1UniqueIdInterface"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdInterface.html#a906c6865045da1b45893822e2a76b9fc">isValid</a> (<a class="el" href="group__Concept.html#ga5162db95dc78bdf2e3a71d73bec703e9">UInt64</a> unique_id)</td></tr>
<tr class="memdesc:a906c6865045da1b45893822e2a76b9fc inherit pub_static_methods_classOpenMS_1_1UniqueIdInterface"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if the unique_id is valid, false otherwise. <a href="#a906c6865045da1b45893822e2a76b9fc">More...</a><br/></td></tr>
<tr class="separator:a906c6865045da1b45893822e2a76b9fc inherit pub_static_methods_classOpenMS_1_1UniqueIdInterface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classOpenMS_1_1RangeManager"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classOpenMS_1_1RangeManager')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager< 2 ></a></td></tr>
<tr class="memitem:a1b01c1c3871aad142893e20d17afc340 inherit pro_methods_classOpenMS_1_1RangeManager"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1RangeManager.html#a1b01c1c3871aad142893e20d17afc340">updateRanges_</a> (const PeakIteratorType &begin, const PeakIteratorType &end)</td></tr>
<tr class="memdesc:a1b01c1c3871aad142893e20d17afc340 inherit pro_methods_classOpenMS_1_1RangeManager"><td class="mdescLeft"> </td><td class="mdescRight">Updates the range using data points in the iterator range. <a href="#a1b01c1c3871aad142893e20d17afc340">More...</a><br/></td></tr>
<tr class="separator:a1b01c1c3871aad142893e20d17afc340 inherit pro_methods_classOpenMS_1_1RangeManager"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classOpenMS_1_1UniqueIdIndexer"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classOpenMS_1_1UniqueIdIndexer')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classOpenMS_1_1UniqueIdIndexer.html">UniqueIdIndexer< FeatureMap< FeatureT > ></a></td></tr>
<tr class="memitem:a16b744907d96a8f9ac2be2da8092fd28 inherit pro_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>< <a class="el" href="classFeatureT.html">FeatureT</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html#a16b744907d96a8f9ac2be2da8092fd28">getBase_</a> () const</td></tr>
<tr class="memdesc:a16b744907d96a8f9ac2be2da8092fd28 inherit pro_methods_classOpenMS_1_1UniqueIdIndexer"><td class="mdescLeft"> </td><td class="mdescRight">A little helper to get access to the base (!) class RandomAccessContainer. <a href="#a16b744907d96a8f9ac2be2da8092fd28">More...</a><br/></td></tr>
<tr class="separator:a16b744907d96a8f9ac2be2da8092fd28 inherit pro_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9bff7b1f3266265d39149b689e776748 inherit pro_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>< <a class="el" href="classFeatureT.html">FeatureT</a> > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1UniqueIdIndexer.html#a9bff7b1f3266265d39149b689e776748">getBase_</a> ()</td></tr>
<tr class="memdesc:a9bff7b1f3266265d39149b689e776748 inherit pro_methods_classOpenMS_1_1UniqueIdIndexer"><td class="mdescLeft"> </td><td class="mdescRight">A little helper to get access to the base (!) class RandomAccessContainer. <a href="#a9bff7b1f3266265d39149b689e776748">More...</a><br/></td></tr>
<tr class="separator:a9bff7b1f3266265d39149b689e776748 inherit pro_methods_classOpenMS_1_1UniqueIdIndexer"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_attribs_classstd_1_1vector"><td colspan="2" onclick="javascript:toggleInherit('pub_attribs_classstd_1_1vector')"><img src="closed.png" alt="-"/> Private Attributes inherited from <a class="el" href="classstd_1_1vector.html">vector< T ></a></td></tr>
<tr class="memitem:af400dbe3fe1572c567f882190c772196 inherit pub_attribs_classstd_1_1vector"><td class="memItemLeft" align="right" valign="top">T </td><td class="memItemRight" valign="bottom"><b>elements</b></td></tr>
<tr class="memdesc:af400dbe3fe1572c567f882190c772196 inherit pub_attribs_classstd_1_1vector"><td class="mdescLeft"> </td><td class="mdescRight">STL member. <a href="#af400dbe3fe1572c567f882190c772196">More...</a><br/></td></tr>
<tr class="separator:af400dbe3fe1572c567f882190c772196 inherit pub_attribs_classstd_1_1vector"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><h3>template<typename FeatureT = Feature><br/>
class OpenMS::FeatureMap< FeatureT ></h3>
<p>A container for features. </p>
<p>A map is a container holding 2-dimensional features, which in turn represent chemical entities (peptides, proteins, etc.) found in a 2-dimensional experiment.</p>
<p>Maps are implemented as vectors of features and have basically the same interface as an STL vector has (model of Random Access Container and Back Insertion Sequence).</p>
<p><a class="el" href="classOpenMS_1_1Feature.html" title="An LC-MS feature. ">Feature</a> maps are typically created from peak data of 2D runs through the <a class="el" href="classOpenMS_1_1FeatureFinder.html" title="The main feature finder class. ">FeatureFinder</a>. </p>
</div><h2 class="groupheader">Member Typedef Documentation</h2>
<a class="anchor" id="a35aeb240bfe3e56368ea94538ccba743"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef std::vector<<a class="el" href="classOpenMS_1_1FeatureMap.html#a82111d00f99caf4fe1bbb9d4fc0653a7">FeatureType</a>> <a class="el" href="classOpenMS_1_1FeatureMap.html#a35aeb240bfe3e56368ea94538ccba743">Base</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ab0b72f785126c7046aa106fc05a8cda4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef Base::const_iterator <a class="el" href="classOpenMS_1_1FeatureMap.html#ab0b72f785126c7046aa106fc05a8cda4">ConstIterator</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a37e5073c3f3bedc8a0935b3068b2d15c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef const <a class="el" href="classOpenMS_1_1FeatureMap.html#a82111d00f99caf4fe1bbb9d4fc0653a7">FeatureType</a>& <a class="el" href="classOpenMS_1_1FeatureMap.html#a37e5073c3f3bedc8a0935b3068b2d15c">ConstReference</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a8858439b94989776fb9148e9c31366ed"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef Base::const_reverse_iterator <a class="el" href="classOpenMS_1_1FeatureMap.html#a8858439b94989776fb9148e9c31366ed">ConstReverseIterator</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a82111d00f99caf4fe1bbb9d4fc0653a7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classFeatureT.html">FeatureT</a> <a class="el" href="classOpenMS_1_1FeatureMap.html#a82111d00f99caf4fe1bbb9d4fc0653a7">FeatureType</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ad436ba4f307bb17e3a999bf315125b33"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef Base::iterator <a class="el" href="classOpenMS_1_1FeatureMap.html#ad436ba4f307bb17e3a999bf315125b33">Iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a0aea291cfaf950725ecd637c801a94e7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef std::vector<<a class="el" href="classFeatureT.html">FeatureT</a>> <a class="el" href="classOpenMS_1_1FeatureMap.html#a0aea291cfaf950725ecd637c801a94e7">privvec</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a035217389fa12c02d059ddfb29c459e1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classOpenMS_1_1RangeManager.html">RangeManager</a><2> <a class="el" href="classOpenMS_1_1FeatureMap.html#a035217389fa12c02d059ddfb29c459e1">RangeManagerType</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="aa658710632c61cf91f5758f42c9ec39e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classOpenMS_1_1FeatureMap.html#a82111d00f99caf4fe1bbb9d4fc0653a7">FeatureType</a>& <a class="el" href="classOpenMS_1_1FeatureMap.html#aa658710632c61cf91f5758f42c9ec39e">Reference</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="aba21528f2ca3da3a55e0265213b889e7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef Base::reverse_iterator <a class="el" href="classOpenMS_1_1FeatureMap.html#aba21528f2ca3da3a55e0265213b889e7">ReverseIterator</a></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a92db7c70991e0a3f133fd337459c769e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Default constructor. </p>
</div>
</div>
<a class="anchor" id="a9bc138dcbec4ce3a1acb600e84a8b35e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>< <a class="el" href="classFeatureT.html">FeatureT</a> > & </td>
<td class="paramname"><em>source</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Copy constructor. </p>
</div>
</div>
<a class="anchor" id="a76d43c4e8fc95ce93063baa39d214439"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual ~<a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Destructor. </p>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a2ba4cf095974c86863027d78210dc2fa"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> applyMemberFunction </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a>(Type::*)() </td>
<td class="paramname"><em>member_function</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Applies a member function of Type to the container itself and all features (including subordinates). The returned values are accumulated. </p>
<p><b>Example:</b> The following will print the number of features with invalid unique ids (plus 1 if the container has an invalid UID as well): </p>
<div class="fragment"><div class="line"><a class="code" href="classOpenMS_1_1FeatureMap.html">FeatureMap<></a> fm;</div>
<div class="line">(...)</div>
<div class="line">std::cout << fm.<a class="code" href="classOpenMS_1_1FeatureMap.html#a2ba4cf095974c86863027d78210dc2fa">applyMemberFunction</a>(&<a class="code" href="classOpenMS_1_1UniqueIdInterface.html#a1a098cc7b335c4334c6014afa3fc806b">UniqueIdInterface::hasInvalidUniqueId</a>) << std::endl;</div>
</div><!-- fragment --><p> See e.g. <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> for what else can be done this way. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1SILACAnalyzer.html#ade305f744c909667f3c6f4e2fed3262b">SILACAnalyzer::writeFeatures()</a>.</p>
</div>
</div>
<a class="anchor" id="ac4a24ec632c6289210b0db06d7f2af9f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a> applyMemberFunction </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__Concept.html#gaf9ecec2d692138fab9167164a457cbd4">Size</a>(Type::*)() const </td>
<td class="paramname"><em>member_function</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>The "const" variant. </p>
</div>
</div>
<a class="anchor" id="a7b5660c6199fa9d5fef65974c7e3e733"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void clear </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>clear_meta_data</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Clears all data and meta data. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">clear_meta_data</td><td>If <em>true</em>, all meta data is cleared in addition to the data. </td></tr>
</table>
</dd>
</dl>
<p>Referenced by <a class="el" href="classOpenMS_1_1ConsensusMap.html#a409f35fc16fe5b85dd576c79ae4e15c0">ConsensusMap::convert()</a>, and <a class="el" href="classOpenMS_1_1FeatureFinder.html#a001d4adf21652ff6cdd58efe56e4fb1c">FeatureFinder::run()</a>.</p>
</div>
</div>
<a class="anchor" id="a4f40a3d8606e7855a7b3c12620bf9f58"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="structOpenMS_1_1AnnotationStatistics.html">AnnotationStatistics</a> getAnnotationStatistics </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classOpenMS_1_1IDMapper.html#a8422c24016b4c5c9c358395cd307802d">IDMapper::annotate()</a>.</p>
</div>
</div>
<a class="anchor" id="ae131ea2ec923582f86aa9805e72241ad"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const std::vector<<a class="el" href="classOpenMS_1_1DataProcessing.html">DataProcessing</a>>& getDataProcessing </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns a const reference to the description of the applied data processing </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1TOPPBase.html#a4ba03f6d26e49c1834ad8acf13a7b0a0">TOPPBase::addDataProcessing_()</a>, and <a class="el" href="classOpenMS_1_1IDMapper.html#a8422c24016b4c5c9c358395cd307802d">IDMapper::annotate()</a>.</p>
</div>
</div>
<a class="anchor" id="a960b6da3bf55e40e959653b036fd12a8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<<a class="el" href="classOpenMS_1_1DataProcessing.html">DataProcessing</a>>& getDataProcessing </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>returns a mutable reference to the description of the applied data processing </p>
</div>
</div>
<a class="anchor" id="acef58bf2531b77d0191c4780739281c6"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const std::vector<<a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a>>& getProteinIdentifications </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>non-mutable access to the protein identifications </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1MetaDataBrowser.html#a4b5a298ff287d77ef8cfa4282aab229a">MetaDataBrowser::add()</a>, <a class="el" href="classOpenMS_1_1IDMapper.html#a8422c24016b4c5c9c358395cd307802d">IDMapper::annotate()</a>, <a class="el" href="classOpenMS_1_1ConsensusMap.html#addd3e7ab2d02c8ff9377da76cf2fcaff">ConsensusMap::convert()</a>, and <a class="el" href="classOpenMS_1_1MRMFeatureFinderScoring.html#a21e38df433d05118f343c33af60816e9">MRMFeatureFinderScoring::pickExperiment()</a>.</p>
</div>
</div>
<a class="anchor" id="a606b9b370ed163364cc104c39fe17ae6"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<<a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a>>& getProteinIdentifications </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>mutable access to the protein identifications </p>
</div>
</div>
<a class="anchor" id="a001ea2eb2a9c05266a69f50594f25604"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const std::vector<<a class="el" href="classOpenMS_1_1PeptideIdentification.html">PeptideIdentification</a>>& getUnassignedPeptideIdentifications </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>non-mutable access to the unassigned peptide identifications </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1MetaDataBrowser.html#a4b5a298ff287d77ef8cfa4282aab229a">MetaDataBrowser::add()</a>, <a class="el" href="classOpenMS_1_1IDMapper.html#a8422c24016b4c5c9c358395cd307802d">IDMapper::annotate()</a>, and <a class="el" href="classOpenMS_1_1ConsensusMap.html#addd3e7ab2d02c8ff9377da76cf2fcaff">ConsensusMap::convert()</a>.</p>
</div>
</div>
<a class="anchor" id="a2a8c76918f1a4ee1929f06c2558f8c97"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<<a class="el" href="classOpenMS_1_1PeptideIdentification.html">PeptideIdentification</a>>& getUnassignedPeptideIdentifications </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>mutable access to the unassigned peptide identifications </p>
</div>
</div>
<a class="anchor" id="af2c6b0c7c830a0bccd31cce45386f3f2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool operator!= </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>< <a class="el" href="classFeatureT.html">FeatureT</a> > & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Equality operator. </p>
</div>
</div>
<a class="anchor" id="a2a35c2c990adb9d14958e2ea88995dda"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a> operator+ </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>< <a class="el" href="classFeatureT.html">FeatureT</a> > & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Joins two feature maps. </p>
<p>Features are merged into one container (see operator+= for details). </p>
</div>
</div>
<a class="anchor" id="a6d9d2f709e76acc61c5a869bd4f755c8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>& operator+= </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>< <a class="el" href="classFeatureT.html">FeatureT</a> > & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Add one feature map to another. </p>
<p>Features are merged into one container, simply by appending. UnassignedPeptides and ProteinIdentifications are appended. Information on <a class="el" href="classOpenMS_1_1DocumentIdentifier.html" title="Manage source document information. ">DocumentIdentifier</a>, <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> (of container only) are reset to default.</p>
<p>For conflicting UID's, new UID's will be assigned.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">rhs</td><td>The feature to add to this one. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a23b5a9e6646cda6ec189c83575a1c770"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>& operator= </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>< <a class="el" href="classFeatureT.html">FeatureT</a> > & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Assignment operator. </p>
</div>
</div>
<a class="anchor" id="a18cf03155b291a1bda26fbe431431788"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool operator== </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>< <a class="el" href="classFeatureT.html">FeatureT</a> > & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Equality operator. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureMap.html#af2c6b0c7c830a0bccd31cce45386f3f2">FeatureMap< OpenMS::Feature >::operator!=()</a>.</p>
</div>
</div>
<a class="anchor" id="a8b8822043dbf3e8451ff65ce4403a0e5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void setDataProcessing </td>
<td>(</td>
<td class="paramtype">const std::vector< <a class="el" href="classOpenMS_1_1DataProcessing.html">DataProcessing</a> > & </td>
<td class="paramname"><em>processing_method</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>sets the description of the applied data processing </p>
</div>
</div>
<a class="anchor" id="a6d85ac28bb82da988383fd19b8504988"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void setProteinIdentifications </td>
<td>(</td>
<td class="paramtype">const std::vector< <a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a> > & </td>
<td class="paramname"><em>protein_identifications</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>sets the protein identifications </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1ConsensusMap.html#a409f35fc16fe5b85dd576c79ae4e15c0">ConsensusMap::convert()</a>.</p>
</div>
</div>
<a class="anchor" id="a37631ce8db66a5227a34ae2e40b22b8b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void setUnassignedPeptideIdentifications </td>
<td>(</td>
<td class="paramtype">const std::vector< <a class="el" href="classOpenMS_1_1PeptideIdentification.html">PeptideIdentification</a> > & </td>
<td class="paramname"><em>unassigned_peptide_identifications</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>sets the unassigned peptide identifications </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1ConsensusMap.html#a409f35fc16fe5b85dd576c79ae4e15c0">ConsensusMap::convert()</a>.</p>
</div>
</div>
<a class="anchor" id="a93f1c9f620403aec160d98e83e125502"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void sortByIntensity </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>reverse</em> = <code>false</code></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sorts the peaks according to ascending intensity. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>.</p>
</div>
</div>
<a class="anchor" id="a604ce6f3380b18acbebda3c1ed14e70c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void sortByMZ </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sort features by m/z position. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>.</p>
</div>
</div>
<a class="anchor" id="a099506e6c3af2ab3e2ad1ed8781e0691"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void sortByOverallQuality </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>reverse</em> = <code>false</code></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sort features by ascending overall quality. </p>
</div>
</div>
<a class="anchor" id="a86f7b200260209865e730a2e4fcaa628"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void sortByPosition </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sort features by position. Lexicographical comparison (first RT then m/z) is done. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1SILACAnalyzer.html#ade305f744c909667f3c6f4e2fed3262b">SILACAnalyzer::writeFeatures()</a>.</p>
</div>
</div>
<a class="anchor" id="a13c4a8ce7f8275728e865728698173e6"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void sortByRT </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sort features by RT position. </p>
</div>
</div>
<a class="anchor" id="a7ade52218357ec67a4f7a6bc71041e85"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void swap </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>< <a class="el" href="classFeatureT.html">FeatureT</a> > & </td>
<td class="paramname"><em>from</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureMap.html#a7ade52218357ec67a4f7a6bc71041e85">FeatureMap< OpenMS::Feature >::swap()</a>.</p>
</div>
</div>
<a class="anchor" id="a3554cb60a93215ed6c61b257a67efcc3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void swapFeaturesOnly </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classOpenMS_1_1FeatureMap.html">FeatureMap</a>< <a class="el" href="classFeatureT.html">FeatureT</a> > & </td>
<td class="paramname"><em>from</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Swaps the feature content (plus its range information) of this map with the content of <code>from</code>. </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureFinderAlgorithmPicked.html#a72fcb26a14f6beb1c3fbace9ab3e7dbb">FeatureFinderAlgorithmPicked< PeakType, FeatureType >::run()</a>, and <a class="el" href="classOpenMS_1_1FeatureMap.html#a7ade52218357ec67a4f7a6bc71041e85">FeatureMap< OpenMS::Feature >::swap()</a>.</p>
</div>
</div>
<a class="anchor" id="adda2fd1aa19da6622530d9073fbcf66d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void updateRanges </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Updates minimum and maximum position/intensity. </p>
<p>This method is usually implemented by calling <a class="el" href="classOpenMS_1_1RangeManager.html#aaa3d5efb96ade4c8ce2c8e216a73dcd1" title="Resets the ranges. ">clearRanges()</a> and <a class="el" href="classOpenMS_1_1RangeManager.html#a1b01c1c3871aad142893e20d17afc340" title="Updates the range using data points in the iterator range. ">updateRanges_()</a>. </p>
<p>Implements <a class="el" href="classOpenMS_1_1RangeManager.html#a60f107aa09cf96dfd7eceb9ebe5eff34">RangeManager< 2 ></a>.</p>
<p>Referenced by <a class="el" href="classOpenMS_1_1ConsensusMap.html#a409f35fc16fe5b85dd576c79ae4e15c0">ConsensusMap::convert()</a>.</p>
</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a class="anchor" id="a50a6b2cdb2828e1f3e29c0096fd4ef63"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<<a class="el" href="classOpenMS_1_1DataProcessing.html">DataProcessing</a>> data_processing_</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>applied data processing </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureMap.html#a7b5660c6199fa9d5fef65974c7e3e733">FeatureMap< OpenMS::Feature >::clear()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#ae131ea2ec923582f86aa9805e72241ad">FeatureMap< OpenMS::Feature >::getDataProcessing()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a6d9d2f709e76acc61c5a869bd4f755c8">FeatureMap< OpenMS::Feature >::operator+=()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a23b5a9e6646cda6ec189c83575a1c770">FeatureMap< OpenMS::Feature >::operator=()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a18cf03155b291a1bda26fbe431431788">FeatureMap< OpenMS::Feature >::operator==()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a8b8822043dbf3e8451ff65ce4403a0e5">FeatureMap< OpenMS::Feature >::setDataProcessing()</a>, and <a class="el" href="classOpenMS_1_1FeatureMap.html#a7ade52218357ec67a4f7a6bc71041e85">FeatureMap< OpenMS::Feature >::swap()</a>.</p>
</div>
</div>
<a class="anchor" id="ad9d205c1045bb7a3b829070054db706f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<<a class="el" href="classOpenMS_1_1ProteinIdentification.html">ProteinIdentification</a>> protein_identifications_</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>protein identifications </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureMap.html#a7b5660c6199fa9d5fef65974c7e3e733">FeatureMap< OpenMS::Feature >::clear()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#acef58bf2531b77d0191c4780739281c6">FeatureMap< OpenMS::Feature >::getProteinIdentifications()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a6d9d2f709e76acc61c5a869bd4f755c8">FeatureMap< OpenMS::Feature >::operator+=()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a23b5a9e6646cda6ec189c83575a1c770">FeatureMap< OpenMS::Feature >::operator=()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a18cf03155b291a1bda26fbe431431788">FeatureMap< OpenMS::Feature >::operator==()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a6d85ac28bb82da988383fd19b8504988">FeatureMap< OpenMS::Feature >::setProteinIdentifications()</a>, and <a class="el" href="classOpenMS_1_1FeatureMap.html#a7ade52218357ec67a4f7a6bc71041e85">FeatureMap< OpenMS::Feature >::swap()</a>.</p>
</div>
</div>
<a class="anchor" id="aab0c90b6e3119dc1ebfe70c37becce6c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<<a class="el" href="classOpenMS_1_1PeptideIdentification.html">PeptideIdentification</a>> unassigned_peptide_identifications_</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>peptide identifications not matched to a specific feature </p>
<p>Referenced by <a class="el" href="classOpenMS_1_1FeatureMap.html#a7b5660c6199fa9d5fef65974c7e3e733">FeatureMap< OpenMS::Feature >::clear()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a001ea2eb2a9c05266a69f50594f25604">FeatureMap< OpenMS::Feature >::getUnassignedPeptideIdentifications()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a6d9d2f709e76acc61c5a869bd4f755c8">FeatureMap< OpenMS::Feature >::operator+=()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a23b5a9e6646cda6ec189c83575a1c770">FeatureMap< OpenMS::Feature >::operator=()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a18cf03155b291a1bda26fbe431431788">FeatureMap< OpenMS::Feature >::operator==()</a>, <a class="el" href="classOpenMS_1_1FeatureMap.html#a37631ce8db66a5227a34ae2e40b22b8b">FeatureMap< OpenMS::Feature >::setUnassignedPeptideIdentifications()</a>, and <a class="el" href="classOpenMS_1_1FeatureMap.html#a7ade52218357ec67a4f7a6bc71041e85">FeatureMap< OpenMS::Feature >::swap()</a>.</p>
</div>
</div>
</div><!-- contents -->
<HR style="height:1px; border:none; border-top:1px solid #c0c0c0;">
<TABLE width="100%" border="0">
<TR>
<TD><font color="#c0c0c0">OpenMS / TOPP release 1.11.1</font></TD>
<TD align="right"><font color="#c0c0c0">Documentation generated on Thu Nov 14 2013 11:19:32 using doxygen 1.8.5</font></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|