00001 #ifndef _PEAK_RESTRICTIONS_H_ 00002 #define _PEAK_RESTRICTIONS_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 00009 struct PeakRestrictions 00010 { 00011 unsigned rect_type: 1; 00012 00013 Insets4i rRect4i; 00014 Insets4f rRect4f; 00015 float dAbundanceThreshold; 00016 }; 00017 00018 typedef struct PeakRestrictions PeakRestrictions; 00019 00020 void PeakRestrictions_init(PeakRestrictions* prestr, Rectangle4i* rRect, float dMinAbundance); 00021 00022 #endif 00023