00001 #ifndef _ISOTOPIC_CLUSTER_ARRAY_H_
00002 #define _ISOTOPIC_CLUSTER_ARRAY_H_
00003
00004
00005
00006
00007
00008 void IsotopicClusterArray_fprint(FILE* fp, IsotopicCluster *clusters, int nclusters, int format);
00009 void IsotopicClusterArray_fprintWithIndex(FILE* fp, IsotopicCluster *clusters, int nclusters, int start_index);
00010 void IsotopicClusterArray_destroy(IsotopicCluster **cluster, int nclusters);
00011
00012 IsotopicCluster* IsotopicClusterArray_create(int size);
00013 IsotopicCluster* IsotopicClusterArray_linkMS2Scans(IsotopicCluster* ica, int* nIsoclusters, Map2D* map);
00014
00015 void IsotopicClusterArray_sortByField(IsotopicCluster *ICArray, int nic, int field);
00016
00017 #endif
00018
00019