diff options
author | John Glover <j@johnglover.net> | 2012-06-30 19:04:02 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-06-30 19:04:02 +0100 |
commit | b2e6565c4f94134948cb2d38c27b8c062191ce4a (patch) | |
tree | 9e8f849a149723389c033d5005fe082e659687f6 /src/sms | |
parent | 1ef9783c3faed6a18e8cc2fba34f48b50bedd08a (diff) | |
download | simpl-b2e6565c4f94134948cb2d38c27b8c062191ce4a.tar.gz simpl-b2e6565c4f94134948cb2d38c27b8c062191ce4a.tar.bz2 simpl-b2e6565c4f94134948cb2d38c27b8c062191ce4a.zip |
[sms] Add C++ implementation of SMSPeakDetection.
Diffstat (limited to 'src/sms')
-rw-r--r-- | src/sms/sms.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sms/sms.h b/src/sms/sms.h index 0613ab3..4e6e5c1 100644 --- a/src/sms/sms.h +++ b/src/sms/sms.h @@ -132,7 +132,7 @@ typedef struct } SMS_Peak; /* a collection of spectral peaks */ -typedef struct +typedef struct SMSSpectralPeaks { SMS_Peak *pSpectralPeaks; int nPeaks; @@ -228,7 +228,7 @@ typedef struct * and peak detection/continuation process can be re-computed with more accuracy. * */ -typedef struct +typedef struct SMSAnalysisParams { int iDebugMode; /*!< debug codes enumerated by SMS_DBG \see SMS_DBG */ int iFormat; /*!< analysis format code defined by SMS_Format \see SMS_Format */ |