00001 #ifndef _OPENRAW_MZ_RULER_H_ 00002 #define _OPENRAW_MZ_RULER_H_ 00003 00004 /* Copyright (c) Kyriacos Leptos and the President and Fellows of Harvard University 00005 Release Date: 2005-04-28 00006 Part of the library openraw.lib 00007 */ 00008 00018 struct OpenRawMZRuler 00019 { 00020 float* mz_values; 00021 int mz_ruler_size; 00022 int frequency; 00023 }; 00024 00025 00026 typedef struct OpenRawMZRuler OpenRawMZRuler; 00027 00028 OpenRawMZRuler* OpenRawMZRulerArray_create(int size); 00029 00030 #endif