~ubuntu-branches/ubuntu/wily/openms/wily

« back to all changes in this revision

Viewing changes to source/KERNEL/Peak2D.C

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2012-11-12 15:58:12 UTC
  • Revision ID: package-import@ubuntu.com-20121112155812-vr15wtg9b50cuesg
Tags: upstream-1.9.0
ImportĀ upstreamĀ versionĀ 1.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- mode: C++; tab-width: 2; -*-
 
2
// vi: set ts=2:
 
3
//
 
4
// --------------------------------------------------------------------------
 
5
//                   OpenMS Mass Spectrometry Framework 
 
6
// --------------------------------------------------------------------------
 
7
//  Copyright (C) 2003-2011 -- Oliver Kohlbacher, Knut Reinert
 
8
//
 
9
//  This library is free software; you can redistribute it and/or
 
10
//  modify it under the terms of the GNU Lesser General Public
 
11
//  License as published by the Free Software Foundation; either
 
12
//  version 2.1 of the License, or (at your option) any later version.
 
13
//
 
14
//  This library is distributed in the hope that it will be useful,
 
15
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
//  Lesser General Public License for more details.
 
18
//
 
19
//  You should have received a copy of the GNU Lesser General Public
 
20
//  License along with this library; if not, write to the Free Software
 
21
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
22
//
 
23
// --------------------------------------------------------------------------
 
24
// $Maintainer: Stephan Aiche$
 
25
// $Authors: Marc Sturm $
 
26
// --------------------------------------------------------------------------
 
27
 
 
28
#include <OpenMS/KERNEL/Peak2D.h>
 
29
 
 
30
namespace OpenMS
 
31
{
 
32
 
 
33
        char const * const Peak2D::dimension_name_short_[] =
 
34
    {
 
35
      "RT",
 
36
      "MZ"
 
37
    };
 
38
        
 
39
  char const * const Peak2D::dimension_name_full_[] =
 
40
    {
 
41
      "retention time",
 
42
      "mass-to-charge"
 
43
    };
 
44
  
 
45
  char const * const Peak2D::dimension_unit_short_[] =
 
46
    {
 
47
      "sec",
 
48
      "Th"
 
49
    };
 
50
  
 
51
  char const * const Peak2D::dimension_unit_full_[] =
 
52
    {
 
53
      "Seconds",
 
54
      "Thomson"
 
55
    };
 
56
  
 
57
        char const * Peak2D::shortDimensionName(UInt const dim)
 
58
        {
 
59
                return dimension_name_short_[dim];
 
60
        }
 
61
 
 
62
        char const * Peak2D::shortDimensionNameRT()
 
63
        {
 
64
                return dimension_name_short_[RT];
 
65
        }
 
66
 
 
67
        char const * Peak2D::shortDimensionNameMZ()
 
68
        {
 
69
                return dimension_name_short_[MZ];
 
70
        }
 
71
 
 
72
        char const * Peak2D::fullDimensionName(UInt const dim)
 
73
        {
 
74
                return dimension_name_full_[dim];
 
75
        }
 
76
 
 
77
        char const * Peak2D::fullDimensionNameRT()
 
78
        {
 
79
                return dimension_name_full_[RT];
 
80
        }
 
81
 
 
82
        char const * Peak2D::fullDimensionNameMZ()
 
83
        {
 
84
                return dimension_name_full_[MZ];
 
85
        }
 
86
 
 
87
        char const * Peak2D::shortDimensionUnit(UInt const dim)
 
88
        {
 
89
                return dimension_unit_short_[dim];
 
90
        }
 
91
 
 
92
        char const * Peak2D::shortDimensionUnitRT()
 
93
        {
 
94
                return dimension_unit_short_[RT];
 
95
        }
 
96
 
 
97
        char const * Peak2D::shortDimensionUnitMZ()
 
98
        {
 
99
                return dimension_unit_short_[MZ];
 
100
        }
 
101
 
 
102
        char const * Peak2D::fullDimensionUnit(UInt const dim)
 
103
        {
 
104
                return dimension_unit_full_[dim];
 
105
        }
 
106
 
 
107
        char const * Peak2D::fullDimensionUnitRT()
 
108
        {
 
109
                return dimension_unit_full_[RT];
 
110
        }
 
111
 
 
112
        char const * Peak2D::fullDimensionUnitMZ()
 
113
        {
 
114
                return dimension_unit_full_[MZ];
 
115
        }
 
116
        
 
117
        std::ostream& operator << (std::ostream& os, const Peak2D& point)
 
118
        {
 
119
    os << "RT: " << point.getRT() <<  " MZ: "  << point.getMZ() << " INT: "<<point.getIntensity();
 
120
                
 
121
                return os;
 
122
        }
 
123
}