#ifndef maplot_h #define maplot_h #include "color.h" typedef struct { float xc; /* The fractional position of the beam center on the X-axis */ float yc; /* The fractional position of the beam center on the Y-axis */ float minsize; /* The minimum beam size wrt the size of the plot */ float maxsize; /* The maximum beam size wrt the size of the plot */ } MaplotBeam; int maplot(Observation *ob, MapBeam *mb, Mapwin *mw, MaplotBeam *mpb, int domap, Ctable *ctab, int docont, int domod, float *levs, int nlev, float cmul, float *box); #endif