00001 #ifndef _PEAK_3F_H_ 00002 #define _PEAK_3F_H_ 00003 00004 /* Copyright (c) Kyriacos Leptos and the President and Fellows of Harvard University 00005 Release Date: 2004-11-01 00006 Part of the MapQuant suite library "massspec.lib" 00007 */ 00008 00019 struct Peak3f 00020 { 00021 float rt; 00022 float moz; 00023 float abu; 00024 }; 00025 00026 typedef struct Peak3f Peak3f; 00027 00028 Peak3f* Peak3fArray_create(int size); 00029 void Peak3fArray_fprint(FILE* fp, Peak3f* peaks, int start, int stop); 00030 void Peak3fArray_sortByMoz(Peak3f* peaks, long nPeaks); 00031 00032 00033 #endif 00034 00035 00036 00037 00038