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

« back to all changes in this revision

Viewing changes to pyOpenMS/pxds/TOFCalibration.pxd

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2013-12-20 11:30:16 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20131220113016-wre5g9bteeheq6he
Tags: 1.11.1-3
* remove version number from libbost development package names;
* ensure that AUTHORS is correctly shipped in all packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from MSSpectrum cimport *
 
2
from MSExperiment cimport *
 
3
from ChromatogramPeak cimport *
 
4
from Peak1D cimport *
 
5
from Param cimport *
 
6
from DefaultParamHandler cimport *
 
7
from ProgressLogger cimport *
 
8
 
 
9
cdef extern from "<OpenMS/FILTERING/CALIBRATION/TOFCalibration.h>" namespace "OpenMS":
 
10
 
 
11
    cdef cppclass TOFCalibration(DefaultParamHandler, ProgressLogger):
 
12
        # wrap-inherits:
 
13
        #    DefaultParamHandler
 
14
        #    ProgressLogger
 
15
 
 
16
        TOFCalibration()                  nogil except +
 
17
        TOFCalibration(TOFCalibration)   nogil except + #wrap-ignore
 
18
 
 
19
        void calibrate(MSExperiment[Peak1D, ChromatogramPeak] & input, MSExperiment[Peak1D, ChromatogramPeak] & output, libcpp_vector[double] & exp_masses) nogil except +
 
20
        void pickAndCalibrate(MSExperiment[Peak1D, ChromatogramPeak] & input, MSExperiment[Peak1D, ChromatogramPeak] & output, libcpp_vector[double] & exp_masses) nogil except +
 
21
 
 
22
        libcpp_vector[ double ]  getML1s()
 
23
        void setML1s(libcpp_vector[ double ] & ml1s)
 
24
        libcpp_vector[ double ]  getML2s()
 
25
        void setML2s(libcpp_vector[ double ] & ml2s)
 
26
        libcpp_vector[ double ]  getML3s()
 
27
        void setML3s(libcpp_vector[ double ] & ml3s)
 
28