Main Page | Modules | Data Structures | File List | Data Fields | Globals

sequence/score.h

00001 #ifndef _SCORE_H_ 00002 #define _SCORE_H_ 00003 00004 struct Score 00005 { 00006 unsigned flavorFound :1; 00007 00008 /* Actual Score Parameters */ 00009 /* 1. Correlation and rank */ 00010 int rank; 00011 float correlation; 00012 00013 /* 2. Ion Counter Score */ 00014 int ion_num; 00015 int ion_denom; 00016 00017 /* 3. Charge Filter Score */ 00018 float charge; 00019 char flavor[14]; 00020 00021 /* Statistical Score DATA STRUCTURES */ 00022 IonCounter IC; 00023 //LP2F_LP2F_TABLE T; 00024 00025 /* Coordinates for score: Peptide and SpectrumHeader pointers */ 00026 Peptide* peptide; 00027 MS_MS_SpectrumHeader* specHeader; 00028 } ; 00029 00030 typedef struct Score Score; 00031 00032 void Score_init(Score* score); 00033 void Score_destroy(Score* score); 00034 void Score_print(Score* score); 00035 int Score_cmpByCorrelation(void* s1, void* s2); 00036 00037 00038 #endif 00039 00040

Generated on Sun Feb 13 01:06:00 2005 for MapQuant by doxygen 1.3.7