File: classOpenMS_1_1Precursor.html

package info (click to toggle)
openms 1.11.1-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 436,688 kB
  • ctags: 150,907
  • sloc: cpp: 387,126; xml: 71,547; python: 7,764; ansic: 2,626; php: 2,499; sql: 737; ruby: 342; sh: 325; makefile: 128
file content (970 lines) | stat: -rw-r--r-- 98,918 bytes parent folder | download
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
<HTML>
<HEAD>
<TITLE>Precursor Class 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> &nbsp;&middot;
<A href="classes.html">Classes</A> &nbsp;&middot;
<A href="annotated.html">Annotated Classes</A> &nbsp;&middot;
<A href="modules.html">Modules</A> &nbsp;&middot;
<A href="functions_func.html">Members</A> &nbsp;&middot;
<A href="namespaces.html">Namespaces</A> &nbsp;&middot;
<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_1Precursor.html">Precursor</a></li>  </ul>
</div>
</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="#pub-types">Public Types</a> &#124;
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-attribs">Static Public Attributes</a> &#124;
<a href="#pro-attribs">Protected Attributes</a> &#124;
<a href="classOpenMS_1_1Precursor-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">Precursor Class Reference<div class="ingroups"><a class="el" href="group__Metadata.html">Metadata</a></div></div>  </div>
</div><!--header-->
<div class="contents">

<p><a class="el" href="classOpenMS_1_1Precursor.html" title="Precursor meta information. ">Precursor</a> meta information.  
 <a href="classOpenMS_1_1Precursor.html#details">More...</a></p>

<p><code>#include &lt;<a class="el" href="Precursor_8h_source.html">OpenMS/METADATA/Precursor.h</a>&gt;</code></p>
<div class="dynheader">
Inheritance diagram for Precursor:</div>
<div class="dyncontent">
 <div class="center">
  <img src="classOpenMS_1_1Precursor.png" usemap="#Precursor_map" alt=""/>
  <map id="Precursor_map" name="Precursor_map">
<area href="classOpenMS_1_1CVTermList.html" title="Representation of controlled vocabulary term list. " alt="CVTermList" shape="rect" coords="0,56,111,80"/>
<area href="classOpenMS_1_1Peak1D.html" title="A 1-dimensional raw data point or peak. " alt="Peak1D" shape="rect" coords="121,56,232,80"/>
<area href="classOpenMS_1_1MetaInfoInterface.html" title="Interface for classes that can store arbitrary meta information (Type-Name-Value tuples). " alt="MetaInfoInterface" shape="rect" coords="0,0,111,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 class="memitem:ade504dd839d796a10e9fc4d840952dc1"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">ActivationMethod</a> { <br/>
&#160;&#160;<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1ab20b009dfccc7838ba06622a9d53daff">CID</a>, 
<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1a7d2afca1f43e915528abd513b30b7a55">PSD</a>, 
<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1aefbc069e0ac4cd293f3ba527bec2befe">PD</a>, 
<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1ab2fca50c5baefb10e5ecdc553e372586">SID</a>, 
<br/>
&#160;&#160;<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1a3901fa9d6f534ab0c36a34a0850dffa0">BIRD</a>, 
<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1a2634661cb45dc1d0f135daebb5fa118b">ECD</a>, 
<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1a8c41c05a63a15c5d188d02f6f4db4303">IMD</a>, 
<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1a0ce1e0457af4bc9ab4bd841128c6ea84">SORI</a>, 
<br/>
&#160;&#160;<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1a1bf627bed7951e975a31ba7033786d05">HCID</a>, 
<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1a4437a3dbac928dd5e3ee699f931bd355">LCID</a>, 
<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1a4187f6dae406f24b70e3c34a7448b15f">PHD</a>, 
<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1a56a28ad07746c6bae402cc7d7ec0839a">ETD</a>, 
<br/>
&#160;&#160;<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1a22a843b242764a6b3b320c1b26274433">PQD</a>, 
<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1aaa28817a9ecabbf66f6bd44476d02295">SIZE_OF_ACTIVATIONMETHOD</a>
<br/>
 }</td></tr>
<tr class="memdesc:ade504dd839d796a10e9fc4d840952dc1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Method of activation.  <a href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">More...</a><br/></td></tr>
<tr class="separator:ade504dd839d796a10e9fc4d840952dc1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_types_classOpenMS_1_1Peak1D"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classOpenMS_1_1Peak1D')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="classOpenMS_1_1Peak1D.html">Peak1D</a></td></tr>
<tr class="memitem:a16af7b253440dadd46a80a4b9fddba4d inherit pub_types_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom">{ <a class="el" href="classOpenMS_1_1Peak1D.html#a16af7b253440dadd46a80a4b9fddba4dab76859fb31ae59096e234a3f32eac4f7">DIMENSION</a> = 1
 }</td></tr>
<tr class="separator:a16af7b253440dadd46a80a4b9fddba4d inherit pub_types_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4a8c5b2adc05e9ff96a007385bfe9b47 inherit pub_types_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="group__Concept.html#gab685845059e8a2c92743427d9a698c70">Real</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a4a8c5b2adc05e9ff96a007385bfe9b47">IntensityType</a></td></tr>
<tr class="memdesc:a4a8c5b2adc05e9ff96a007385bfe9b47 inherit pub_types_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Intensity type.  <a href="#a4a8c5b2adc05e9ff96a007385bfe9b47">More...</a><br/></td></tr>
<tr class="separator:a4a8c5b2adc05e9ff96a007385bfe9b47 inherit pub_types_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a12b8b50c9639a9166153fbd19047edb3 inherit pub_types_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classOpenMS_1_1DPosition.html">DPosition</a>&lt; 1 &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a12b8b50c9639a9166153fbd19047edb3">PositionType</a></td></tr>
<tr class="memdesc:a12b8b50c9639a9166153fbd19047edb3 inherit pub_types_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Position type.  <a href="#a12b8b50c9639a9166153fbd19047edb3">More...</a><br/></td></tr>
<tr class="separator:a12b8b50c9639a9166153fbd19047edb3 inherit pub_types_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a063d40a3528749f1a905ab04d76387e0 inherit pub_types_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a063d40a3528749f1a905ab04d76387e0">CoordinateType</a></td></tr>
<tr class="memdesc:a063d40a3528749f1a905ab04d76387e0 inherit pub_types_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Coordinate type.  <a href="#a063d40a3528749f1a905ab04d76387e0">More...</a><br/></td></tr>
<tr class="separator:a063d40a3528749f1a905ab04d76387e0 inherit pub_types_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</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:a797f10d8d0e7dc573604a59098804896"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a797f10d8d0e7dc573604a59098804896">Precursor</a> ()</td></tr>
<tr class="memdesc:a797f10d8d0e7dc573604a59098804896"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#a797f10d8d0e7dc573604a59098804896">More...</a><br/></td></tr>
<tr class="separator:a797f10d8d0e7dc573604a59098804896"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac9a278a285b207aeb2f33c0d395193a0"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#ac9a278a285b207aeb2f33c0d395193a0">Precursor</a> (const <a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> &amp;source)</td></tr>
<tr class="memdesc:ac9a278a285b207aeb2f33c0d395193a0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copy constructor.  <a href="#ac9a278a285b207aeb2f33c0d395193a0">More...</a><br/></td></tr>
<tr class="separator:ac9a278a285b207aeb2f33c0d395193a0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a26733e4c4215bfd4fce15b211f2882ed"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a26733e4c4215bfd4fce15b211f2882ed">~Precursor</a> ()</td></tr>
<tr class="memdesc:a26733e4c4215bfd4fce15b211f2882ed"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a26733e4c4215bfd4fce15b211f2882ed">More...</a><br/></td></tr>
<tr class="separator:a26733e4c4215bfd4fce15b211f2882ed"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1de98c2ca21f8f6ebcd9504d61970cb6"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a1de98c2ca21f8f6ebcd9504d61970cb6">operator=</a> (const <a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> &amp;source)</td></tr>
<tr class="memdesc:a1de98c2ca21f8f6ebcd9504d61970cb6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Assignment operator.  <a href="#a1de98c2ca21f8f6ebcd9504d61970cb6">More...</a><br/></td></tr>
<tr class="separator:a1de98c2ca21f8f6ebcd9504d61970cb6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a20d1c9321bedb0ea56f6c00266b27f72"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a20d1c9321bedb0ea56f6c00266b27f72">operator==</a> (const <a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> &amp;rhs) const </td></tr>
<tr class="memdesc:a20d1c9321bedb0ea56f6c00266b27f72"><td class="mdescLeft">&#160;</td><td class="mdescRight">Equality operator.  <a href="#a20d1c9321bedb0ea56f6c00266b27f72">More...</a><br/></td></tr>
<tr class="separator:a20d1c9321bedb0ea56f6c00266b27f72"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a69456ee4015eb52c90c155b34f840d65"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a69456ee4015eb52c90c155b34f840d65">operator!=</a> (const <a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> &amp;rhs) const </td></tr>
<tr class="memdesc:a69456ee4015eb52c90c155b34f840d65"><td class="mdescLeft">&#160;</td><td class="mdescRight">Equality operator.  <a href="#a69456ee4015eb52c90c155b34f840d65">More...</a><br/></td></tr>
<tr class="separator:a69456ee4015eb52c90c155b34f840d65"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9933807a51860e1320ce47c3b83bcbd2"><td class="memItemLeft" align="right" valign="top">const std::set<br class="typebreak"/>
&lt; <a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">ActivationMethod</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a9933807a51860e1320ce47c3b83bcbd2">getActivationMethods</a> () const </td></tr>
<tr class="memdesc:a9933807a51860e1320ce47c3b83bcbd2"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns a const reference to the activation methods  <a href="#a9933807a51860e1320ce47c3b83bcbd2">More...</a><br/></td></tr>
<tr class="separator:a9933807a51860e1320ce47c3b83bcbd2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab705d122d0e1b20329b5e551c6b161fe"><td class="memItemLeft" align="right" valign="top">std::set&lt; <a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">ActivationMethod</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#ab705d122d0e1b20329b5e551c6b161fe">getActivationMethods</a> ()</td></tr>
<tr class="memdesc:ab705d122d0e1b20329b5e551c6b161fe"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns a mutable reference to the activation methods  <a href="#ab705d122d0e1b20329b5e551c6b161fe">More...</a><br/></td></tr>
<tr class="separator:ab705d122d0e1b20329b5e551c6b161fe"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a39933573d918c2f912c27ff3120569d0"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a39933573d918c2f912c27ff3120569d0">setActivationMethods</a> (const std::set&lt; <a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">ActivationMethod</a> &gt; &amp;activation_methods)</td></tr>
<tr class="memdesc:a39933573d918c2f912c27ff3120569d0"><td class="mdescLeft">&#160;</td><td class="mdescRight">sets the activation methods  <a href="#a39933573d918c2f912c27ff3120569d0">More...</a><br/></td></tr>
<tr class="separator:a39933573d918c2f912c27ff3120569d0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad34cda135f7788348ea8866353407d38"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#ad34cda135f7788348ea8866353407d38">getActivationEnergy</a> () const </td></tr>
<tr class="memdesc:ad34cda135f7788348ea8866353407d38"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns the activation energy (in electronvolt)  <a href="#ad34cda135f7788348ea8866353407d38">More...</a><br/></td></tr>
<tr class="separator:ad34cda135f7788348ea8866353407d38"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa0f295be9951ca93357dc6ddb445d4e8"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#aa0f295be9951ca93357dc6ddb445d4e8">setActivationEnergy</a> (<a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> activation_energy)</td></tr>
<tr class="memdesc:aa0f295be9951ca93357dc6ddb445d4e8"><td class="mdescLeft">&#160;</td><td class="mdescRight">sets the activation energy (in electronvolt)  <a href="#aa0f295be9951ca93357dc6ddb445d4e8">More...</a><br/></td></tr>
<tr class="separator:aa0f295be9951ca93357dc6ddb445d4e8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6f71e641c709dfabecce317d07ac4f7"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#ac6f71e641c709dfabecce317d07ac4f7">getIsolationWindowLowerOffset</a> () const </td></tr>
<tr class="memdesc:ac6f71e641c709dfabecce317d07ac4f7"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns the lower offset from the target m/z  <a href="#ac6f71e641c709dfabecce317d07ac4f7">More...</a><br/></td></tr>
<tr class="separator:ac6f71e641c709dfabecce317d07ac4f7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a046066b9d4e7b06a0ce6b883346689f6"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a046066b9d4e7b06a0ce6b883346689f6">setIsolationWindowLowerOffset</a> (<a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> bound)</td></tr>
<tr class="memdesc:a046066b9d4e7b06a0ce6b883346689f6"><td class="mdescLeft">&#160;</td><td class="mdescRight">sets the lower offset from the target m/z  <a href="#a046066b9d4e7b06a0ce6b883346689f6">More...</a><br/></td></tr>
<tr class="separator:a046066b9d4e7b06a0ce6b883346689f6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0d3c115101baf89ff0d81602ad6cc635"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a0d3c115101baf89ff0d81602ad6cc635">getIsolationWindowUpperOffset</a> () const </td></tr>
<tr class="memdesc:a0d3c115101baf89ff0d81602ad6cc635"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns the upper offset from the target m/z  <a href="#a0d3c115101baf89ff0d81602ad6cc635">More...</a><br/></td></tr>
<tr class="separator:a0d3c115101baf89ff0d81602ad6cc635"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c61b885b58c7b8ed6c09913229342d3"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a3c61b885b58c7b8ed6c09913229342d3">setIsolationWindowUpperOffset</a> (<a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> bound)</td></tr>
<tr class="memdesc:a3c61b885b58c7b8ed6c09913229342d3"><td class="mdescLeft">&#160;</td><td class="mdescRight">sets the upper offset from the target m/z  <a href="#a3c61b885b58c7b8ed6c09913229342d3">More...</a><br/></td></tr>
<tr class="separator:a3c61b885b58c7b8ed6c09913229342d3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab91109da6782d902c745c771aa85d03d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#ab91109da6782d902c745c771aa85d03d">getCharge</a> () const </td></tr>
<tr class="memdesc:ab91109da6782d902c745c771aa85d03d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Non-mutable access to the charge.  <a href="#ab91109da6782d902c745c771aa85d03d">More...</a><br/></td></tr>
<tr class="separator:ab91109da6782d902c745c771aa85d03d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aca40a4630f5f8a0568899b74a62dcd4b"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#aca40a4630f5f8a0568899b74a62dcd4b">setCharge</a> (<a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a> charge)</td></tr>
<tr class="memdesc:aca40a4630f5f8a0568899b74a62dcd4b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Mutable access to the charge.  <a href="#aca40a4630f5f8a0568899b74a62dcd4b">More...</a><br/></td></tr>
<tr class="separator:aca40a4630f5f8a0568899b74a62dcd4b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2dbe025c03208c3d01e5ce0794350970"><td class="memItemLeft" align="right" valign="top">std::vector&lt; <a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a2dbe025c03208c3d01e5ce0794350970">getPossibleChargeStates</a> ()</td></tr>
<tr class="memdesc:a2dbe025c03208c3d01e5ce0794350970"><td class="mdescLeft">&#160;</td><td class="mdescRight">Mutable access to possible charge states.  <a href="#a2dbe025c03208c3d01e5ce0794350970">More...</a><br/></td></tr>
<tr class="separator:a2dbe025c03208c3d01e5ce0794350970"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6d7da8b737a2ffb0d540197b39f9db0e"><td class="memItemLeft" align="right" valign="top">const std::vector&lt; <a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a6d7da8b737a2ffb0d540197b39f9db0e">getPossibleChargeStates</a> () const </td></tr>
<tr class="memdesc:a6d7da8b737a2ffb0d540197b39f9db0e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Non-mutable access to possible charge states.  <a href="#a6d7da8b737a2ffb0d540197b39f9db0e">More...</a><br/></td></tr>
<tr class="separator:a6d7da8b737a2ffb0d540197b39f9db0e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af4021c18e3d4f1ed8a68629ef284574a"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#af4021c18e3d4f1ed8a68629ef284574a">setPossibleChargeStates</a> (const std::vector&lt; <a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a> &gt; &amp;possible_charge_states)</td></tr>
<tr class="memdesc:af4021c18e3d4f1ed8a68629ef284574a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the possible charge states.  <a href="#af4021c18e3d4f1ed8a68629ef284574a">More...</a><br/></td></tr>
<tr class="separator:af4021c18e3d4f1ed8a68629ef284574a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac5a999bb34f54e144993352dd5faafd3"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#ac5a999bb34f54e144993352dd5faafd3">getUnchargedMass</a> () const </td></tr>
<tr class="memdesc:ac5a999bb34f54e144993352dd5faafd3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the uncharged mass of the precursor, if charge is unknown, i.e. 0 best guess is its doubly charged.  <a href="#ac5a999bb34f54e144993352dd5faafd3">More...</a><br/></td></tr>
<tr class="separator:ac5a999bb34f54e144993352dd5faafd3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1CVTermList"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1CVTermList')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classOpenMS_1_1CVTermList.html">CVTermList</a></td></tr>
<tr class="memitem:af168ac62653c9369125fbcc9cc6243e2 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#af168ac62653c9369125fbcc9cc6243e2">CVTermList</a> ()</td></tr>
<tr class="memdesc:af168ac62653c9369125fbcc9cc6243e2 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">Defaults constructor.  <a href="#af168ac62653c9369125fbcc9cc6243e2">More...</a><br/></td></tr>
<tr class="separator:af168ac62653c9369125fbcc9cc6243e2 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a16631ca7c880ab71ed49e04eb62c29a7 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#a16631ca7c880ab71ed49e04eb62c29a7">CVTermList</a> (const <a class="el" href="classOpenMS_1_1CVTermList.html">CVTermList</a> &amp;rhs)</td></tr>
<tr class="memdesc:a16631ca7c880ab71ed49e04eb62c29a7 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copy constructor.  <a href="#a16631ca7c880ab71ed49e04eb62c29a7">More...</a><br/></td></tr>
<tr class="separator:a16631ca7c880ab71ed49e04eb62c29a7 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a96f6e0960442955f269134384a47bce9 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#a96f6e0960442955f269134384a47bce9">~CVTermList</a> ()</td></tr>
<tr class="memdesc:a96f6e0960442955f269134384a47bce9 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a96f6e0960442955f269134384a47bce9">More...</a><br/></td></tr>
<tr class="separator:a96f6e0960442955f269134384a47bce9 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa510cd8682de2c4178a25483b7d2cd5d inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1CVTermList.html">CVTermList</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#aa510cd8682de2c4178a25483b7d2cd5d">operator=</a> (const <a class="el" href="classOpenMS_1_1CVTermList.html">CVTermList</a> &amp;rhs)</td></tr>
<tr class="memdesc:aa510cd8682de2c4178a25483b7d2cd5d inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">Assignment operator.  <a href="#aa510cd8682de2c4178a25483b7d2cd5d">More...</a><br/></td></tr>
<tr class="separator:aa510cd8682de2c4178a25483b7d2cd5d inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad9531a5439e078e9db8f5b0237e1e425 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#ad9531a5439e078e9db8f5b0237e1e425">setCVTerms</a> (const std::vector&lt; <a class="el" href="classOpenMS_1_1CVTerm.html">CVTerm</a> &gt; &amp;terms)</td></tr>
<tr class="memdesc:ad9531a5439e078e9db8f5b0237e1e425 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">sets the CV terms  <a href="#ad9531a5439e078e9db8f5b0237e1e425">More...</a><br/></td></tr>
<tr class="separator:ad9531a5439e078e9db8f5b0237e1e425 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5b891abd27d28e679816c3d5b548021b inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#a5b891abd27d28e679816c3d5b548021b">replaceCVTerm</a> (const <a class="el" href="classOpenMS_1_1CVTerm.html">CVTerm</a> &amp;cv_term)</td></tr>
<tr class="memdesc:a5b891abd27d28e679816c3d5b548021b inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">replaces the specified CV term  <a href="#a5b891abd27d28e679816c3d5b548021b">More...</a><br/></td></tr>
<tr class="separator:a5b891abd27d28e679816c3d5b548021b inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac77cb5abfefbe985e0c716afecfde617 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#ac77cb5abfefbe985e0c716afecfde617">replaceCVTerms</a> (const std::vector&lt; <a class="el" href="classOpenMS_1_1CVTerm.html">CVTerm</a> &gt; &amp;cv_terms, const <a class="el" href="classOpenMS_1_1String.html">String</a> &amp;accession)</td></tr>
<tr class="memdesc:ac77cb5abfefbe985e0c716afecfde617 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">replaces the specified CV terms using the given accession number  <a href="#ac77cb5abfefbe985e0c716afecfde617">More...</a><br/></td></tr>
<tr class="separator:ac77cb5abfefbe985e0c716afecfde617 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5a5fdfa2bcc39b490cac4eee29d144b8 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#a5a5fdfa2bcc39b490cac4eee29d144b8">replaceCVTerms</a> (const <a class="el" href="classOpenMS_1_1Map.html">Map</a>&lt; <a class="el" href="classOpenMS_1_1String.html">String</a>, std::vector&lt; <a class="el" href="classOpenMS_1_1CVTerm.html">CVTerm</a> &gt; &gt; &amp;cv_term_map)</td></tr>
<tr class="memdesc:a5a5fdfa2bcc39b490cac4eee29d144b8 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">replaces all cv terms with a map (can be obtained via getCVTerms)  <a href="#a5a5fdfa2bcc39b490cac4eee29d144b8">More...</a><br/></td></tr>
<tr class="separator:a5a5fdfa2bcc39b490cac4eee29d144b8 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6dd4f9032440d43b236367566a15bd37 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1Map.html">Map</a>&lt; <a class="el" href="classOpenMS_1_1String.html">String</a>, std::vector<br class="typebreak"/>
&lt; <a class="el" href="classOpenMS_1_1CVTerm.html">CVTerm</a> &gt; &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#a6dd4f9032440d43b236367566a15bd37">getCVTerms</a> () const </td></tr>
<tr class="memdesc:a6dd4f9032440d43b236367566a15bd37 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns the accession string of the term  <a href="#a6dd4f9032440d43b236367566a15bd37">More...</a><br/></td></tr>
<tr class="separator:a6dd4f9032440d43b236367566a15bd37 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a90879baad2c11f3b77d87bbf255f31c8 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#a90879baad2c11f3b77d87bbf255f31c8">addCVTerm</a> (const <a class="el" href="classOpenMS_1_1CVTerm.html">CVTerm</a> &amp;term)</td></tr>
<tr class="memdesc:a90879baad2c11f3b77d87bbf255f31c8 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">adds a CV term  <a href="#a90879baad2c11f3b77d87bbf255f31c8">More...</a><br/></td></tr>
<tr class="separator:a90879baad2c11f3b77d87bbf255f31c8 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a209fd2d7911a2433bd62307539137c4e inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#a209fd2d7911a2433bd62307539137c4e">operator==</a> (const <a class="el" href="classOpenMS_1_1CVTermList.html">CVTermList</a> &amp;cv_term_list) const </td></tr>
<tr class="memdesc:a209fd2d7911a2433bd62307539137c4e inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">equality operator  <a href="#a209fd2d7911a2433bd62307539137c4e">More...</a><br/></td></tr>
<tr class="separator:a209fd2d7911a2433bd62307539137c4e inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c47f830d445ee43021f60e4610df2bd inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#a4c47f830d445ee43021f60e4610df2bd">operator!=</a> (const <a class="el" href="classOpenMS_1_1CVTermList.html">CVTermList</a> &amp;cv_term_list) const </td></tr>
<tr class="memdesc:a4c47f830d445ee43021f60e4610df2bd inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">inequality operator  <a href="#a4c47f830d445ee43021f60e4610df2bd">More...</a><br/></td></tr>
<tr class="separator:a4c47f830d445ee43021f60e4610df2bd inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa642c6510fb6094842cea67b1fdbdfb7 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#aa642c6510fb6094842cea67b1fdbdfb7">hasCVTerm</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &amp;accession) const </td></tr>
<tr class="memdesc:aa642c6510fb6094842cea67b1fdbdfb7 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">checks whether the term has a value  <a href="#aa642c6510fb6094842cea67b1fdbdfb7">More...</a><br/></td></tr>
<tr class="separator:aa642c6510fb6094842cea67b1fdbdfb7 inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6e61de369e994009e36f344f99c15ad inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#ac6e61de369e994009e36f344f99c15ad">empty</a> () const </td></tr>
<tr class="memdesc:ac6e61de369e994009e36f344f99c15ad inherit pub_methods_classOpenMS_1_1CVTermList"><td class="mdescLeft">&#160;</td><td class="mdescRight">return true if no terms are available  <a href="#ac6e61de369e994009e36f344f99c15ad">More...</a><br/></td></tr>
<tr class="separator:ac6e61de369e994009e36f344f99c15ad inherit pub_methods_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1MetaInfoInterface"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1MetaInfoInterface')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a></td></tr>
<tr class="memitem:a4adf02f403d7b972e7e6a58e938ecb6c inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a4adf02f403d7b972e7e6a58e938ecb6c">MetaInfoInterface</a> ()</td></tr>
<tr class="memdesc:a4adf02f403d7b972e7e6a58e938ecb6c inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">constructor  <a href="#a4adf02f403d7b972e7e6a58e938ecb6c">More...</a><br/></td></tr>
<tr class="separator:a4adf02f403d7b972e7e6a58e938ecb6c inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae216eb0aa3192b67d70da8c461583256 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#ae216eb0aa3192b67d70da8c461583256">MetaInfoInterface</a> (const <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a> &amp;rhs)</td></tr>
<tr class="memdesc:ae216eb0aa3192b67d70da8c461583256 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">copy constructor  <a href="#ae216eb0aa3192b67d70da8c461583256">More...</a><br/></td></tr>
<tr class="separator:ae216eb0aa3192b67d70da8c461583256 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a30c6469ab28a1ae578b23109f8b931c6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a30c6469ab28a1ae578b23109f8b931c6">~MetaInfoInterface</a> ()</td></tr>
<tr class="memdesc:a30c6469ab28a1ae578b23109f8b931c6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">destructor  <a href="#a30c6469ab28a1ae578b23109f8b931c6">More...</a><br/></td></tr>
<tr class="separator:a30c6469ab28a1ae578b23109f8b931c6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0b7e858982ccb9d37b01971e6cd43596 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a0b7e858982ccb9d37b01971e6cd43596">operator=</a> (const <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a> &amp;rhs)</td></tr>
<tr class="memdesc:a0b7e858982ccb9d37b01971e6cd43596 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">assignment operator  <a href="#a0b7e858982ccb9d37b01971e6cd43596">More...</a><br/></td></tr>
<tr class="separator:a0b7e858982ccb9d37b01971e6cd43596 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae1233471a3265a00a5edef4017ee8f20 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#ae1233471a3265a00a5edef4017ee8f20">operator==</a> (const <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a> &amp;rhs) const </td></tr>
<tr class="memdesc:ae1233471a3265a00a5edef4017ee8f20 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Equality operator.  <a href="#ae1233471a3265a00a5edef4017ee8f20">More...</a><br/></td></tr>
<tr class="separator:ae1233471a3265a00a5edef4017ee8f20 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aabdb6bf51d554dba98617e3f7609c6cf inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#aabdb6bf51d554dba98617e3f7609c6cf">operator!=</a> (const <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a> &amp;rhs) const </td></tr>
<tr class="memdesc:aabdb6bf51d554dba98617e3f7609c6cf inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Equality operator.  <a href="#aabdb6bf51d554dba98617e3f7609c6cf">More...</a><br/></td></tr>
<tr class="separator:aabdb6bf51d554dba98617e3f7609c6cf inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aae35ae2dfad88d673b03c787aafca83d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1DataValue.html">DataValue</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#aae35ae2dfad88d673b03c787aafca83d">getMetaValue</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &amp;name) const </td></tr>
<tr class="memdesc:aae35ae2dfad88d673b03c787aafca83d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns the value corresponding to a string  <a href="#aae35ae2dfad88d673b03c787aafca83d">More...</a><br/></td></tr>
<tr class="separator:aae35ae2dfad88d673b03c787aafca83d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae9b2516ea1331df63e4fc098c16b50e3 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classOpenMS_1_1DataValue.html">DataValue</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#ae9b2516ea1331df63e4fc098c16b50e3">getMetaValue</a> (<a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> index) const </td></tr>
<tr class="memdesc:ae9b2516ea1331df63e4fc098c16b50e3 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns the value corresponding to an index  <a href="#ae9b2516ea1331df63e4fc098c16b50e3">More...</a><br/></td></tr>
<tr class="separator:ae9b2516ea1331df63e4fc098c16b50e3 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acabf8a0e3c40224df62b282a5ce0318f inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#acabf8a0e3c40224df62b282a5ce0318f">metaValueExists</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &amp;name) const </td></tr>
<tr class="memdesc:acabf8a0e3c40224df62b282a5ce0318f inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns if this <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> is set  <a href="#acabf8a0e3c40224df62b282a5ce0318f">More...</a><br/></td></tr>
<tr class="separator:acabf8a0e3c40224df62b282a5ce0318f inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aabf87daa46e081dd9584d4987d2206f6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#aabf87daa46e081dd9584d4987d2206f6">metaValueExists</a> (<a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> index) const </td></tr>
<tr class="memdesc:aabf87daa46e081dd9584d4987d2206f6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns if this <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> is set  <a href="#aabf87daa46e081dd9584d4987d2206f6">More...</a><br/></td></tr>
<tr class="separator:aabf87daa46e081dd9584d4987d2206f6 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a135a7e818125b31198a8a65d9ac7a3d1 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a135a7e818125b31198a8a65d9ac7a3d1">setMetaValue</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &amp;name, const <a class="el" href="classOpenMS_1_1DataValue.html">DataValue</a> &amp;value)</td></tr>
<tr class="memdesc:a135a7e818125b31198a8a65d9ac7a3d1 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">sets the <a class="el" href="classOpenMS_1_1DataValue.html" title="Class to hold strings, numeric values, lists of strings and lists of numeric values. ">DataValue</a> corresponding to a name  <a href="#a135a7e818125b31198a8a65d9ac7a3d1">More...</a><br/></td></tr>
<tr class="separator:a135a7e818125b31198a8a65d9ac7a3d1 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abbb9d3ebe8c7c3f6a9ed131faa8cf2c9 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#abbb9d3ebe8c7c3f6a9ed131faa8cf2c9">setMetaValue</a> (<a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> index, const <a class="el" href="classOpenMS_1_1DataValue.html">DataValue</a> &amp;value)</td></tr>
<tr class="memdesc:abbb9d3ebe8c7c3f6a9ed131faa8cf2c9 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">sets the <a class="el" href="classOpenMS_1_1DataValue.html" title="Class to hold strings, numeric values, lists of strings and lists of numeric values. ">DataValue</a> corresponding to an index  <a href="#abbb9d3ebe8c7c3f6a9ed131faa8cf2c9">More...</a><br/></td></tr>
<tr class="separator:abbb9d3ebe8c7c3f6a9ed131faa8cf2c9 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aac68103b8336fa854cf4c59f8bd6cff8 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#aac68103b8336fa854cf4c59f8bd6cff8">removeMetaValue</a> (const <a class="el" href="classOpenMS_1_1String.html">String</a> &amp;name)</td></tr>
<tr class="memdesc:aac68103b8336fa854cf4c59f8bd6cff8 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes the <a class="el" href="classOpenMS_1_1DataValue.html" title="Class to hold strings, numeric values, lists of strings and lists of numeric values. ">DataValue</a> corresponding to <code>name</code> if it exists.  <a href="#aac68103b8336fa854cf4c59f8bd6cff8">More...</a><br/></td></tr>
<tr class="separator:aac68103b8336fa854cf4c59f8bd6cff8 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3a8a7da0f5e71d3b96ea902c29bcf632 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a3a8a7da0f5e71d3b96ea902c29bcf632">removeMetaValue</a> (<a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> index)</td></tr>
<tr class="memdesc:a3a8a7da0f5e71d3b96ea902c29bcf632 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes the <a class="el" href="classOpenMS_1_1DataValue.html" title="Class to hold strings, numeric values, lists of strings and lists of numeric values. ">DataValue</a> corresponding to <code>index</code> if it exists.  <a href="#a3a8a7da0f5e71d3b96ea902c29bcf632">More...</a><br/></td></tr>
<tr class="separator:a3a8a7da0f5e71d3b96ea902c29bcf632 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaefa2a4a5d50f899cdd82d686104d164 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#aaefa2a4a5d50f899cdd82d686104d164">getKeys</a> (std::vector&lt; <a class="el" href="classOpenMS_1_1String.html">String</a> &gt; &amp;keys) const </td></tr>
<tr class="memdesc:aaefa2a4a5d50f899cdd82d686104d164 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">fills the given vector with a list of all keys for which a value is set  <a href="#aaefa2a4a5d50f899cdd82d686104d164">More...</a><br/></td></tr>
<tr class="separator:aaefa2a4a5d50f899cdd82d686104d164 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a121b22fe4dd05ef9fc4160bd52e9bd0b inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a121b22fe4dd05ef9fc4160bd52e9bd0b">getKeys</a> (std::vector&lt; <a class="el" href="group__Concept.html#gaba0996d26f7be2572973245b51852757">UInt</a> &gt; &amp;keys) const </td></tr>
<tr class="memdesc:a121b22fe4dd05ef9fc4160bd52e9bd0b inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">fills the given vector with a list of all keys for which a value is set  <a href="#a121b22fe4dd05ef9fc4160bd52e9bd0b">More...</a><br/></td></tr>
<tr class="separator:a121b22fe4dd05ef9fc4160bd52e9bd0b inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a001483d1f67f068e585f10d9abcc487d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a001483d1f67f068e585f10d9abcc487d">isMetaEmpty</a> () const </td></tr>
<tr class="memdesc:a001483d1f67f068e585f10d9abcc487d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">returns if the <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> is empty  <a href="#a001483d1f67f068e585f10d9abcc487d">More...</a><br/></td></tr>
<tr class="separator:a001483d1f67f068e585f10d9abcc487d inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae5b77ecfe9182ebd648d54ca1137eba0 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#ae5b77ecfe9182ebd648d54ca1137eba0">clearMetaInfo</a> ()</td></tr>
<tr class="memdesc:ae5b77ecfe9182ebd648d54ca1137eba0 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">removes all meta values  <a href="#ae5b77ecfe9182ebd648d54ca1137eba0">More...</a><br/></td></tr>
<tr class="separator:ae5b77ecfe9182ebd648d54ca1137eba0 inherit pub_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classOpenMS_1_1Peak1D"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classOpenMS_1_1Peak1D')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classOpenMS_1_1Peak1D.html">Peak1D</a></td></tr>
<tr class="memitem:a512398a0892aabd64b67c12ac59ef805 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Peak1D.html">Peak1D</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a512398a0892aabd64b67c12ac59ef805">operator=</a> (const <a class="el" href="classOpenMS_1_1Peak1D.html">Peak1D</a> &amp;rhs)</td></tr>
<tr class="memdesc:a512398a0892aabd64b67c12ac59ef805 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Assignment operator.  <a href="#a512398a0892aabd64b67c12ac59ef805">More...</a><br/></td></tr>
<tr class="separator:a512398a0892aabd64b67c12ac59ef805 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a31b9df6bb628f66ebb4466932cb132db inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a31b9df6bb628f66ebb4466932cb132db">operator==</a> (const <a class="el" href="classOpenMS_1_1Peak1D.html">Peak1D</a> &amp;rhs) const </td></tr>
<tr class="memdesc:a31b9df6bb628f66ebb4466932cb132db inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Equality operator.  <a href="#a31b9df6bb628f66ebb4466932cb132db">More...</a><br/></td></tr>
<tr class="separator:a31b9df6bb628f66ebb4466932cb132db inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6fc829912b24e497dc22acb1a551ef6e inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a6fc829912b24e497dc22acb1a551ef6e">operator!=</a> (const <a class="el" href="classOpenMS_1_1Peak1D.html">Peak1D</a> &amp;rhs) const </td></tr>
<tr class="memdesc:a6fc829912b24e497dc22acb1a551ef6e inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Equality operator.  <a href="#a6fc829912b24e497dc22acb1a551ef6e">More...</a><br/></td></tr>
<tr class="separator:a6fc829912b24e497dc22acb1a551ef6e inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7332e749c14f8e29cc8e930a1c6032f6 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a7332e749c14f8e29cc8e930a1c6032f6">Peak1D</a> ()</td></tr>
<tr class="separator:a7332e749c14f8e29cc8e930a1c6032f6 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a30e1aeaf6a2405c5a8bf6d10313de2bf inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a30e1aeaf6a2405c5a8bf6d10313de2bf">Peak1D</a> (const <a class="el" href="classOpenMS_1_1Peak1D.html">Peak1D</a> &amp;p)</td></tr>
<tr class="memdesc:a30e1aeaf6a2405c5a8bf6d10313de2bf inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copy constructor.  <a href="#a30e1aeaf6a2405c5a8bf6d10313de2bf">More...</a><br/></td></tr>
<tr class="separator:a30e1aeaf6a2405c5a8bf6d10313de2bf inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aff6d88e8a69e3e90c872c473c2ffbcb1 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#aff6d88e8a69e3e90c872c473c2ffbcb1">~Peak1D</a> ()</td></tr>
<tr class="memdesc:aff6d88e8a69e3e90c872c473c2ffbcb1 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#aff6d88e8a69e3e90c872c473c2ffbcb1">More...</a><br/></td></tr>
<tr class="separator:aff6d88e8a69e3e90c872c473c2ffbcb1 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a09903c7965f8ece31f2c1e07b41ae6dd inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Peak1D.html#a4a8c5b2adc05e9ff96a007385bfe9b47">IntensityType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a09903c7965f8ece31f2c1e07b41ae6dd">getIntensity</a> () const </td></tr>
<tr class="separator:a09903c7965f8ece31f2c1e07b41ae6dd inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab875c2479c6cd2a0189e4684bfa4f97d inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#ab875c2479c6cd2a0189e4684bfa4f97d">setIntensity</a> (<a class="el" href="classOpenMS_1_1Peak1D.html#a4a8c5b2adc05e9ff96a007385bfe9b47">IntensityType</a> intensity)</td></tr>
<tr class="memdesc:ab875c2479c6cd2a0189e4684bfa4f97d inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Mutable access to the data point intensity (height)  <a href="#ab875c2479c6cd2a0189e4684bfa4f97d">More...</a><br/></td></tr>
<tr class="separator:ab875c2479c6cd2a0189e4684bfa4f97d inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6fefef82aae7a3208e71648e763d5ea4 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Peak1D.html#a063d40a3528749f1a905ab04d76387e0">CoordinateType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a6fefef82aae7a3208e71648e763d5ea4">getMZ</a> () const </td></tr>
<tr class="memdesc:a6fefef82aae7a3208e71648e763d5ea4 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Non-mutable access to m/z.  <a href="#a6fefef82aae7a3208e71648e763d5ea4">More...</a><br/></td></tr>
<tr class="separator:a6fefef82aae7a3208e71648e763d5ea4 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab9c4ce5d172a75d6de2c6f5f1847c9ab inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#ab9c4ce5d172a75d6de2c6f5f1847c9ab">setMZ</a> (<a class="el" href="classOpenMS_1_1Peak1D.html#a063d40a3528749f1a905ab04d76387e0">CoordinateType</a> mz)</td></tr>
<tr class="memdesc:ab9c4ce5d172a75d6de2c6f5f1847c9ab inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Mutable access to m/z.  <a href="#ab9c4ce5d172a75d6de2c6f5f1847c9ab">More...</a><br/></td></tr>
<tr class="separator:ab9c4ce5d172a75d6de2c6f5f1847c9ab inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a937aa784a4c244daca2a95fc59778446 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Peak1D.html#a063d40a3528749f1a905ab04d76387e0">CoordinateType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a937aa784a4c244daca2a95fc59778446">getPos</a> () const </td></tr>
<tr class="memdesc:a937aa784a4c244daca2a95fc59778446 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Alias for <a class="el" href="classOpenMS_1_1Peak1D.html#a6fefef82aae7a3208e71648e763d5ea4" title="Non-mutable access to m/z. ">getMZ()</a>  <a href="#a937aa784a4c244daca2a95fc59778446">More...</a><br/></td></tr>
<tr class="separator:a937aa784a4c244daca2a95fc59778446 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad6014aac4271f2db3e69e028a880e7ee inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#ad6014aac4271f2db3e69e028a880e7ee">setPos</a> (<a class="el" href="classOpenMS_1_1Peak1D.html#a063d40a3528749f1a905ab04d76387e0">CoordinateType</a> pos)</td></tr>
<tr class="memdesc:ad6014aac4271f2db3e69e028a880e7ee inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Alias for <a class="el" href="classOpenMS_1_1Peak1D.html#ab9c4ce5d172a75d6de2c6f5f1847c9ab" title="Mutable access to m/z. ">setMZ()</a>  <a href="#ad6014aac4271f2db3e69e028a880e7ee">More...</a><br/></td></tr>
<tr class="separator:ad6014aac4271f2db3e69e028a880e7ee inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7d8aef8a439ca984c2dfb1bc01ce0845 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Peak1D.html#a12b8b50c9639a9166153fbd19047edb3">PositionType</a> const &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a7d8aef8a439ca984c2dfb1bc01ce0845">getPosition</a> () const </td></tr>
<tr class="memdesc:a7d8aef8a439ca984c2dfb1bc01ce0845 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Non-mutable access to the position.  <a href="#a7d8aef8a439ca984c2dfb1bc01ce0845">More...</a><br/></td></tr>
<tr class="separator:a7d8aef8a439ca984c2dfb1bc01ce0845 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af4ad619ffb17984892171894a8cc2137 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Peak1D.html#a12b8b50c9639a9166153fbd19047edb3">PositionType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#af4ad619ffb17984892171894a8cc2137">getPosition</a> ()</td></tr>
<tr class="memdesc:af4ad619ffb17984892171894a8cc2137 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Mutable access to the position.  <a href="#af4ad619ffb17984892171894a8cc2137">More...</a><br/></td></tr>
<tr class="separator:af4ad619ffb17984892171894a8cc2137 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad2a429ebb5c285cf90e9a386d0df7f43 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#ad2a429ebb5c285cf90e9a386d0df7f43">setPosition</a> (<a class="el" href="classOpenMS_1_1Peak1D.html#a12b8b50c9639a9166153fbd19047edb3">PositionType</a> const &amp;position)</td></tr>
<tr class="memdesc:ad2a429ebb5c285cf90e9a386d0df7f43 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">Mutable access to the position.  <a href="#ad2a429ebb5c285cf90e9a386d0df7f43">More...</a><br/></td></tr>
<tr class="separator:ad2a429ebb5c285cf90e9a386d0df7f43 inherit pub_methods_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr class="memitem:a14d4ca6844157fd9ae6410f9c8ffbff0"><td class="memItemLeft" align="right" valign="top">static const std::string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a14d4ca6844157fd9ae6410f9c8ffbff0">NamesOfActivationMethod</a> [<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1aaa28817a9ecabbf66f6bd44476d02295">SIZE_OF_ACTIVATIONMETHOD</a>]</td></tr>
<tr class="memdesc:a14d4ca6844157fd9ae6410f9c8ffbff0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Names of activation methods.  <a href="#a14d4ca6844157fd9ae6410f9c8ffbff0">More...</a><br/></td></tr>
<tr class="separator:a14d4ca6844157fd9ae6410f9c8ffbff0"><td class="memSeparator" colspan="2">&#160;</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:ab659095a44452aa65bce67eaa0f698bc"><td class="memItemLeft" align="right" valign="top">std::set&lt; <a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">ActivationMethod</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#ab659095a44452aa65bce67eaa0f698bc">activation_methods_</a></td></tr>
<tr class="separator:ab659095a44452aa65bce67eaa0f698bc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa6f34568507a0e94bf00870c2d21b550"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#aa6f34568507a0e94bf00870c2d21b550">activation_energy_</a></td></tr>
<tr class="separator:aa6f34568507a0e94bf00870c2d21b550"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af666de0dbd32628708fe2d265c9e5741"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#af666de0dbd32628708fe2d265c9e5741">window_low_</a></td></tr>
<tr class="separator:af666de0dbd32628708fe2d265c9e5741"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa472336609832caa2f10ff2732cf0f9b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#aa472336609832caa2f10ff2732cf0f9b">window_up_</a></td></tr>
<tr class="separator:aa472336609832caa2f10ff2732cf0f9b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af71274961d8487036283991f2ba652a1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#af71274961d8487036283991f2ba652a1">charge_</a></td></tr>
<tr class="separator:af71274961d8487036283991f2ba652a1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4f6383e2df143b8c34ffb7ad8eae2c9b"><td class="memItemLeft" align="right" valign="top">std::vector&lt; <a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Precursor.html#a4f6383e2df143b8c34ffb7ad8eae2c9b">possible_charge_states_</a></td></tr>
<tr class="separator:a4f6383e2df143b8c34ffb7ad8eae2c9b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1CVTermList"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1CVTermList')"><img src="closed.png" alt="-"/>&#160;Protected Attributes inherited from <a class="el" href="classOpenMS_1_1CVTermList.html">CVTermList</a></td></tr>
<tr class="memitem:a28839a8bb88c59a29b3b2d314a097dc0 inherit pro_attribs_classOpenMS_1_1CVTermList"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Map.html">Map</a>&lt; <a class="el" href="classOpenMS_1_1String.html">String</a>, std::vector<br class="typebreak"/>
&lt; <a class="el" href="classOpenMS_1_1CVTerm.html">CVTerm</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1CVTermList.html#a28839a8bb88c59a29b3b2d314a097dc0">cv_terms_</a></td></tr>
<tr class="separator:a28839a8bb88c59a29b3b2d314a097dc0 inherit pro_attribs_classOpenMS_1_1CVTermList"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1MetaInfoInterface"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1MetaInfoInterface')"><img src="closed.png" alt="-"/>&#160;Protected Attributes inherited from <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a></td></tr>
<tr class="memitem:a07ce72f4d24f650fcdbba3801e1b8f59 inherit pro_attribs_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1MetaInfo.html">MetaInfo</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a07ce72f4d24f650fcdbba3801e1b8f59">meta_</a></td></tr>
<tr class="memdesc:a07ce72f4d24f650fcdbba3801e1b8f59 inherit pro_attribs_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">pointer to the <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> object. 0 by default  <a href="#a07ce72f4d24f650fcdbba3801e1b8f59">More...</a><br/></td></tr>
<tr class="separator:a07ce72f4d24f650fcdbba3801e1b8f59 inherit pro_attribs_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_attribs_classOpenMS_1_1Peak1D"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classOpenMS_1_1Peak1D')"><img src="closed.png" alt="-"/>&#160;Protected Attributes inherited from <a class="el" href="classOpenMS_1_1Peak1D.html">Peak1D</a></td></tr>
<tr class="memitem:a40dd229488d20ae1f6b5dff9cc7a51e9 inherit pro_attribs_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Peak1D.html#a12b8b50c9639a9166153fbd19047edb3">PositionType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#a40dd229488d20ae1f6b5dff9cc7a51e9">position_</a></td></tr>
<tr class="memdesc:a40dd229488d20ae1f6b5dff9cc7a51e9 inherit pro_attribs_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">The data point position.  <a href="#a40dd229488d20ae1f6b5dff9cc7a51e9">More...</a><br/></td></tr>
<tr class="separator:a40dd229488d20ae1f6b5dff9cc7a51e9 inherit pro_attribs_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adbd5acd008483fe193d202d4f0582973 inherit pro_attribs_classOpenMS_1_1Peak1D"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classOpenMS_1_1Peak1D.html#a4a8c5b2adc05e9ff96a007385bfe9b47">IntensityType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1Peak1D.html#adbd5acd008483fe193d202d4f0582973">intensity_</a></td></tr>
<tr class="memdesc:adbd5acd008483fe193d202d4f0582973 inherit pro_attribs_classOpenMS_1_1Peak1D"><td class="mdescLeft">&#160;</td><td class="mdescRight">The data point intensity.  <a href="#adbd5acd008483fe193d202d4f0582973">More...</a><br/></td></tr>
<tr class="separator:adbd5acd008483fe193d202d4f0582973 inherit pro_attribs_classOpenMS_1_1Peak1D"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_static_methods_classOpenMS_1_1MetaInfoInterface"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classOpenMS_1_1MetaInfoInterface')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a></td></tr>
<tr class="memitem:adc0992991f912788ed14e72b6f62b2dd inherit pub_static_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classOpenMS_1_1MetaInfoRegistry.html">MetaInfoRegistry</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#adc0992991f912788ed14e72b6f62b2dd">metaRegistry</a> ()</td></tr>
<tr class="memdesc:adc0992991f912788ed14e72b6f62b2dd inherit pub_static_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">retuns a reference to the <a class="el" href="classOpenMS_1_1MetaInfoRegistry.html" title="Registry which assigns unique integer indices to strings. ">MetaInfoRegistry</a>  <a href="#adc0992991f912788ed14e72b6f62b2dd">More...</a><br/></td></tr>
<tr class="separator:adc0992991f912788ed14e72b6f62b2dd inherit pub_static_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classOpenMS_1_1MetaInfoInterface"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classOpenMS_1_1MetaInfoInterface')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classOpenMS_1_1MetaInfoInterface.html">MetaInfoInterface</a></td></tr>
<tr class="memitem:a23bcf7d2c2357d11e1363dfe44057037 inherit pro_methods_classOpenMS_1_1MetaInfoInterface"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOpenMS_1_1MetaInfoInterface.html#a23bcf7d2c2357d11e1363dfe44057037">createIfNotExists_</a> ()</td></tr>
<tr class="memdesc:a23bcf7d2c2357d11e1363dfe44057037 inherit pro_methods_classOpenMS_1_1MetaInfoInterface"><td class="mdescLeft">&#160;</td><td class="mdescRight">creates the <a class="el" href="classOpenMS_1_1MetaInfo.html" title="A Type-Name-Value tuple class. ">MetaInfo</a> object if it does not exist  <a href="#a23bcf7d2c2357d11e1363dfe44057037">More...</a><br/></td></tr>
<tr class="separator:a23bcf7d2c2357d11e1363dfe44057037 inherit pro_methods_classOpenMS_1_1MetaInfoInterface"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p><a class="el" href="classOpenMS_1_1Precursor.html" title="Precursor meta information. ">Precursor</a> meta information. </p>
<p>This class contains precursor information:</p>
<ul>
<li>isolation window</li>
<li>activation</li>
<li>selected ion (m/z, intensity, charge, possible charge states) </li>
</ul>
</div><h2 class="groupheader">Member Enumeration Documentation</h2>
<a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">ActivationMethod</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Method of activation. </p>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1ab20b009dfccc7838ba06622a9d53daff"></a>CID</em>&nbsp;</td><td class="fielddoc">
<p>Collision-induced dissociation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1a7d2afca1f43e915528abd513b30b7a55"></a>PSD</em>&nbsp;</td><td class="fielddoc">
<p>Post-source decay. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1aefbc069e0ac4cd293f3ba527bec2befe"></a>PD</em>&nbsp;</td><td class="fielddoc">
<p>Plasma desorption. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1ab2fca50c5baefb10e5ecdc553e372586"></a>SID</em>&nbsp;</td><td class="fielddoc">
<p>Surface-induced dissociation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1a3901fa9d6f534ab0c36a34a0850dffa0"></a>BIRD</em>&nbsp;</td><td class="fielddoc">
<p>Blackbody infrared radiative dissociation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1a2634661cb45dc1d0f135daebb5fa118b"></a>ECD</em>&nbsp;</td><td class="fielddoc">
<p>Electron capture dissociation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1a8c41c05a63a15c5d188d02f6f4db4303"></a>IMD</em>&nbsp;</td><td class="fielddoc">
<p>Infrared multiphoton dissociation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1a0ce1e0457af4bc9ab4bd841128c6ea84"></a>SORI</em>&nbsp;</td><td class="fielddoc">
<p>Sustained off-resonance irradiation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1a1bf627bed7951e975a31ba7033786d05"></a>HCID</em>&nbsp;</td><td class="fielddoc">
<p>High-energy collision-induced dissociation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1a4437a3dbac928dd5e3ee699f931bd355"></a>LCID</em>&nbsp;</td><td class="fielddoc">
<p>Low-energy collision-induced dissociation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1a4187f6dae406f24b70e3c34a7448b15f"></a>PHD</em>&nbsp;</td><td class="fielddoc">
<p>Photodissociation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1a56a28ad07746c6bae402cc7d7ec0839a"></a>ETD</em>&nbsp;</td><td class="fielddoc">
<p>Electron transfer dissociation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1a22a843b242764a6b3b320c1b26274433"></a>PQD</em>&nbsp;</td><td class="fielddoc">
<p>Pulsed q dissociation. </p>
</td></tr>
<tr><td class="fieldname"><em><a class="anchor" id="ade504dd839d796a10e9fc4d840952dc1aaa28817a9ecabbf66f6bd44476d02295"></a>SIZE_OF_ACTIVATIONMETHOD</em>&nbsp;</td><td class="fielddoc">
</td></tr>
</table>

</div>
</div>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a797f10d8d0e7dc573604a59098804896"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Constructor. </p>

</div>
</div>
<a class="anchor" id="ac9a278a285b207aeb2f33c0d395193a0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> &amp;&#160;</td>
          <td class="paramname"><em>source</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Copy constructor. </p>

</div>
</div>
<a class="anchor" id="a26733e4c4215bfd4fce15b211f2882ed"></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_1Precursor.html">Precursor</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">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="ad34cda135f7788348ea8866353407d38"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> getActivationEnergy </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>returns the activation energy (in electronvolt) </p>

<p>Referenced by <a class="el" href="classOpenMS_1_1Internal_1_1MzMLHandler.html#a77eccf58c9f605c9535709430c66a5be">MzMLHandler&lt; MapType &gt;::writePrecursor_()</a>, and <a class="el" href="classOpenMS_1_1Internal_1_1MzDataHandler.html#a0038ff865ac073e00ca829d977f2ccdf">MzDataHandler&lt; MapType &gt;::writeTo()</a>.</p>

</div>
</div>
<a class="anchor" id="a9933807a51860e1320ce47c3b83bcbd2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const std::set&lt;<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">ActivationMethod</a>&gt;&amp; getActivationMethods </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>returns a const reference to the activation methods </p>

<p>Referenced by <a class="el" href="classOpenMS_1_1Internal_1_1MzMLHandler.html#a77eccf58c9f605c9535709430c66a5be">MzMLHandler&lt; MapType &gt;::writePrecursor_()</a>, and <a class="el" href="classOpenMS_1_1Internal_1_1MzDataHandler.html#a0038ff865ac073e00ca829d977f2ccdf">MzDataHandler&lt; MapType &gt;::writeTo()</a>.</p>

</div>
</div>
<a class="anchor" id="ab705d122d0e1b20329b5e551c6b161fe"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">std::set&lt;<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">ActivationMethod</a>&gt;&amp; getActivationMethods </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>returns a mutable reference to the activation methods </p>

</div>
</div>
<a class="anchor" id="ab91109da6782d902c745c771aa85d03d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a> getCharge </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Non-mutable access to the charge. </p>

<p>Referenced by <a class="el" href="classOpenMS_1_1DTAFile.html#aad1400476baaa9e6ff74301f6395c5e8">DTAFile::store()</a>, <a class="el" href="classOpenMS_1_1Internal_1_1MzMLHandler.html#a77eccf58c9f605c9535709430c66a5be">MzMLHandler&lt; MapType &gt;::writePrecursor_()</a>, <a class="el" href="classOpenMS_1_1Internal_1_1MzDataHandler.html#a0038ff865ac073e00ca829d977f2ccdf">MzDataHandler&lt; MapType &gt;::writeTo()</a>, and <a class="el" href="classOpenMS_1_1Internal_1_1MzXMLHandler.html#a0038ff865ac073e00ca829d977f2ccdf">MzXMLHandler&lt; MapType &gt;::writeTo()</a>.</p>

</div>
</div>
<a class="anchor" id="ac6f71e641c709dfabecce317d07ac4f7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> getIsolationWindowLowerOffset </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>returns the lower offset from the target m/z </p>

<p>Referenced by <a class="el" href="classOpenMS_1_1Internal_1_1MzMLHandler.html#a77eccf58c9f605c9535709430c66a5be">MzMLHandler&lt; MapType &gt;::writePrecursor_()</a>, and <a class="el" href="classOpenMS_1_1Internal_1_1MzXMLHandler.html#a0038ff865ac073e00ca829d977f2ccdf">MzXMLHandler&lt; MapType &gt;::writeTo()</a>.</p>

</div>
</div>
<a class="anchor" id="a0d3c115101baf89ff0d81602ad6cc635"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> getIsolationWindowUpperOffset </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>returns the upper offset from the target m/z </p>

<p>Referenced by <a class="el" href="classOpenMS_1_1Internal_1_1MzMLHandler.html#a77eccf58c9f605c9535709430c66a5be">MzMLHandler&lt; MapType &gt;::writePrecursor_()</a>, and <a class="el" href="classOpenMS_1_1Internal_1_1MzXMLHandler.html#a0038ff865ac073e00ca829d977f2ccdf">MzXMLHandler&lt; MapType &gt;::writeTo()</a>.</p>

</div>
</div>
<a class="anchor" id="a2dbe025c03208c3d01e5ce0794350970"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">std::vector&lt;<a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a>&gt;&amp; getPossibleChargeStates </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Mutable access to possible charge states. </p>

<p>Referenced by <a class="el" href="classOpenMS_1_1Internal_1_1MzMLHandler.html#a77eccf58c9f605c9535709430c66a5be">MzMLHandler&lt; MapType &gt;::writePrecursor_()</a>.</p>

</div>
</div>
<a class="anchor" id="a6d7da8b737a2ffb0d540197b39f9db0e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const std::vector&lt;<a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a>&gt;&amp; getPossibleChargeStates </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Non-mutable access to possible charge states. </p>

</div>
</div>
<a class="anchor" id="ac5a999bb34f54e144993352dd5faafd3"></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#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> getUnchargedMass </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the uncharged mass of the precursor, if charge is unknown, i.e. 0 best guess is its doubly charged. </p>

<p>References <a class="el" href="namespaceOpenMS_1_1Constants.html#a8fc6defe4e499b1b9b9c275689e44352">OpenMS::Constants::c</a>, and <a class="el" href="namespaceOpenMS_1_1Constants.html#a7a25c5ed4c5f83b23ded7014aef42ad4">OpenMS::Constants::PROTON_MASS_U</a>.</p>

</div>
</div>
<a class="anchor" id="a69456ee4015eb52c90c155b34f840d65"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool operator!= </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> &amp;&#160;</td>
          <td class="paramname"><em>rhs</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Equality operator. </p>

</div>
</div>
<a class="anchor" id="a1de98c2ca21f8f6ebcd9504d61970cb6"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a>&amp; operator= </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> &amp;&#160;</td>
          <td class="paramname"><em>source</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Assignment operator. </p>

</div>
</div>
<a class="anchor" id="a20d1c9321bedb0ea56f6c00266b27f72"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool operator== </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classOpenMS_1_1Precursor.html">Precursor</a> &amp;&#160;</td>
          <td class="paramname"><em>rhs</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Equality operator. </p>

</div>
</div>
<a class="anchor" id="aa0f295be9951ca93357dc6ddb445d4e8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void setActivationEnergy </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td>
          <td class="paramname"><em>activation_energy</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>sets the activation energy (in electronvolt) </p>

</div>
</div>
<a class="anchor" id="a39933573d918c2f912c27ff3120569d0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void setActivationMethods </td>
          <td>(</td>
          <td class="paramtype">const std::set&lt; <a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">ActivationMethod</a> &gt; &amp;&#160;</td>
          <td class="paramname"><em>activation_methods</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>sets the activation methods </p>

</div>
</div>
<a class="anchor" id="aca40a4630f5f8a0568899b74a62dcd4b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void setCharge </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a>&#160;</td>
          <td class="paramname"><em>charge</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Mutable access to the charge. </p>

<p>Referenced by <a class="el" href="classOpenMS_1_1DTAFile.html#a583280bb0e47a5d57b337d6440c96b73">DTAFile::load()</a>, <a class="el" href="classTOPPRNPxl.html#ae6668492d67ea303296f9db6ac56325c">TOPPRNPxl::main_()</a>, <a class="el" href="classOpenMS_1_1OfflinePrecursorIonSelection.html#afc3ec85793adf0cdaacc5803e59f6c17">OfflinePrecursorIonSelection::makePrecursorSelectionForKnownLCMSMap()</a>, and <a class="el" href="classOpenMS_1_1TOPPViewBase.html#ad0c5e46e336d0faaea1ecb2a11e58cea">TOPPViewBase::showSpectrumGenerationDialog()</a>.</p>

</div>
</div>
<a class="anchor" id="a046066b9d4e7b06a0ce6b883346689f6"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void setIsolationWindowLowerOffset </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td>
          <td class="paramname"><em>bound</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>sets the lower offset from the target m/z </p>

<p>Referenced by <a class="el" href="classOpenMS_1_1ChromatogramExtractor.html#acc6dd6bb5820778b452b8adf9334421e">ChromatogramExtractor::prepareSpectra_()</a>.</p>

</div>
</div>
<a class="anchor" id="a3c61b885b58c7b8ed6c09913229342d3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void setIsolationWindowUpperOffset </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__Concept.html#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a>&#160;</td>
          <td class="paramname"><em>bound</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>sets the upper offset from the target m/z </p>

<p>Referenced by <a class="el" href="classOpenMS_1_1ChromatogramExtractor.html#acc6dd6bb5820778b452b8adf9334421e">ChromatogramExtractor::prepareSpectra_()</a>.</p>

</div>
</div>
<a class="anchor" id="af4021c18e3d4f1ed8a68629ef284574a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void setPossibleChargeStates </td>
          <td>(</td>
          <td class="paramtype">const std::vector&lt; <a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a> &gt; &amp;&#160;</td>
          <td class="paramname"><em>possible_charge_states</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the possible charge states. </p>

</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a class="anchor" id="aa6f34568507a0e94bf00870c2d21b550"></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#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> activation_energy_</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ab659095a44452aa65bce67eaa0f698bc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">std::set&lt;<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1">ActivationMethod</a>&gt; activation_methods_</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="af71274961d8487036283991f2ba652a1"></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#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a> charge_</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a14d4ca6844157fd9ae6410f9c8ffbff0"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const std::string NamesOfActivationMethod[<a class="el" href="classOpenMS_1_1Precursor.html#ade504dd839d796a10e9fc4d840952dc1aaa28817a9ecabbf66f6bd44476d02295">SIZE_OF_ACTIVATIONMETHOD</a>]</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Names of activation methods. </p>

<p>Referenced by <a class="el" href="classOpenMS_1_1HasActivationMethod.html#a528f4cce86dd2fc219649be04f2c78ad">HasActivationMethod&lt; SpectrumType &gt;::operator()()</a>.</p>

</div>
</div>
<a class="anchor" id="a4f6383e2df143b8c34ffb7ad8eae2c9b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">std::vector&lt;<a class="el" href="group__Concept.html#ga7cc214a236ad3bb6ad435bdcf5262a3f">Int</a>&gt; possible_charge_states_</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="af666de0dbd32628708fe2d265c9e5741"></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#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> window_low_</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="aa472336609832caa2f10ff2732cf0f9b"></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#gace75bfb1aba684e874dffee13738bd15">DoubleReal</a> window_up_</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</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:33 using doxygen 1.8.5</font></TD>
</TR>
</TABLE>
</BODY>
</HTML>