File: SILACLabeler.pxd

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 (23 lines) | stat: -rw-r--r-- 1,068 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
from Types cimport *
# from BaseLabeler cimport *
from DefaultParamHandler cimport *
from Param cimport *

cdef extern from "<OpenMS/SIMULATION/LABELING/SILACLabeler.h>" namespace "OpenMS":
    
    cdef cppclass SILACLabeler :
        # TODO BaseLabeler inheritance
        #  BaseLabeler
        SILACLabeler() nogil except +
        SILACLabeler(SILACLabeler) nogil except + #wrap-ignore
        void preCheck(Param & param) nogil except +
        ## void setUpHook(FeatureMapSimVector & ) nogil except +
        ## void postDigestHook(FeatureMapSimVector & ) nogil except +
        ## void postRTHook(FeatureMapSimVector & ) nogil except +
        ## void postDetectabilityHook(FeatureMapSimVector & ) nogil except +
        ## void postIonizationHook(FeatureMapSimVector & ) nogil except +
        ## void postRawMSHook(FeatureMapSimVector & ) nogil except +
        ## void postRawTandemMSHook(FeatureMapSimVector & , MSSimExperiment & ) nogil except +
        ## # POINTER # BaseLabeler * create() nogil except +
        String getProductName() nogil except +