00001
#ifndef _GRAPH3D_PLOT_OBJ_H_
00002
#define _GRAPH3D_PLOT_OBJ_H_
00003
00004
int graph3D_plotPeak2iArray (Graph3D *graph,
Peak2i* pPeaks ,
int nPeaks,
int color);
00005
int graph3D_plotFPeak2iArray (Graph3D *graph,
FPeak2i* pFPeaks,
int nPeaks,
int color);
00006
int graph3D_plotMassSpec_EnvelopeFromFPeak2iArray(Graph3D* G,
00007
FPeak2i* array,
int size,
00008
Map2D* map,
int scan,
00009
int color);
00010
00011
int graph3D_plotMassSpecFromFPeakInMap_SCAN(Graph3D *G,
FPeak2i* fpeak,
Map2D* map,
int scan,
int color);
00012
00013
int graph3D_plotPeak2iArrayWithBaseline(Graph3D* graph,
Peak2i* pPeaks , BaselineMark* bslm_array,
int size);
00014
00015
void graph3D_plotPeakGroups(Graph3D* G,
PeakGroup* pg,
int ngroups);
00016
00017
int graph3D_plotPeakGroupArray(Graph3D *G,
PeakGroup* pPeakGroups,
int nPeakGroups,
int color);
00018
00019
int graph3D_plotMS2 (Graph3D* graph, MS_MS_SpectrumHeader* msmsarray,
int nsize);
00020
int graph3D_plotRPeptides (Graph3D *G, RPeptide* RPEPTIDES,
int NO_RPEPTIDES,
int color);
00021
int graph3D_plotSequestSummaryFile (Graph3D* graph, SequestSummaryFile* file);
00022
int graph3D_plotQuadsAroundPeakGroups(Graph3D *G,
PeakGroup* pPeakGroups,
int nPeakGroups,
00023
int scan_half_width,
int color);
00024
int graph3D_plotQuadsAroundPeakSeries(Graph3D *graph,
int handle,
int scan_half_width,
int color);
00025
00026
int graph3D_plotSequestMapQuantMapFile(Graph3D *graph, SequestMapQuantMapFile* file);
00027
#endif
00028