summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-03-22 22:46:30 +0000
committerJohn Glover <j@johnglover.net>2012-03-22 22:46:30 +0000
commit2d6b45e5e5b080d9b4f527734e7f3ae5fb1bf6f4 (patch)
treee6874ace59d1f00ff45c2bc7ca2799ca29608c1d /src
parentd9a7ad89d8a7554898eedbd72113eb7e461906ae (diff)
downloadsimpl-2d6b45e5e5b080d9b4f527734e7f3ae5fb1bf6f4.tar.gz
simpl-2d6b45e5e5b080d9b4f527734e7f3ae5fb1bf6f4.tar.bz2
simpl-2d6b45e5e5b080d9b4f527734e7f3ae5fb1bf6f4.zip
[base] updating Cython Frame and PeakDetection classes
Diffstat (limited to 'src')
-rw-r--r--src/simpl/base.cpp6
-rw-r--r--src/simpl/base.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp
index f5a42b0..e07f6fe 100644
--- a/src/simpl/base.cpp
+++ b/src/simpl/base.cpp
@@ -110,7 +110,7 @@ void Frame::max_peaks(int new_max_peaks)
}
}
-void Frame::add_peak(Peak peak)
+void Frame::add_peak(Peak* peak)
{
_peaks.push_back(peak);
}
@@ -119,11 +119,11 @@ void Frame::add_peaks(Peaks* peaks)
{
for(Peaks::iterator i = peaks->begin(); i != peaks->end(); i++)
{
- add_peak(Peak(*i));
+ add_peak(*i);
}
}
-Peak Frame::peak(int peak_number)
+Peak* Frame::peak(int peak_number)
{
return _peaks[peak_number];
}
diff --git a/src/simpl/base.h b/src/simpl/base.h
index 12df565..f70c952 100644
--- a/src/simpl/base.h
+++ b/src/simpl/base.h
@@ -39,7 +39,7 @@ public:
bool is_free(const string direction = string("forwards"));
};
-typedef std::vector<Peak> Peaks;
+typedef std::vector<Peak*> Peaks;
// ---------------------------------------------------------------------------
// Partial
@@ -82,9 +82,9 @@ public:
int num_peaks();
int max_peaks();
void max_peaks(int new_max_peaks);
- void add_peak(Peak peak);
+ void add_peak(Peak* peak);
void add_peaks(Peaks* peaks);
- Peak peak(int peak_number);
+ Peak* peak(int peak_number);
void clear_peaks();
Peaks::iterator peaks_begin();
Peaks::iterator peaks_end();