Changeset 40156 for branches/eam_branches/ohana.20170822
- Timestamp:
- Oct 4, 2017, 7:41:01 PM (9 years ago)
- Location:
- branches/eam_branches/ohana.20170822/src/opihi
- Files:
-
- 19 edited
-
cmd.astro/cdot.c (modified) (1 diff)
-
cmd.astro/cgrid.c (modified) (1 diff)
-
cmd.astro/czplot.c (modified) (1 diff)
-
cmd.data/grid.c (modified) (1 diff)
-
cmd.data/zplot.c (modified) (1 diff)
-
dvo/catalog.c (modified) (1 diff)
-
dvo/dmt.c (modified) (1 diff)
-
dvo/fitcolors.c (modified) (4 diffs)
-
dvo/fitsed.c (modified) (1 diff)
-
dvo/images.c (modified) (1 diff)
-
dvo/imbox.c (modified) (1 diff)
-
dvo/imdense.c (modified) (1 diff)
-
dvo/imstats.c (modified) (1 diff)
-
dvo/paverage.c (modified) (1 diff)
-
dvo/pmeasure.c (modified) (1 diff)
-
dvo/procks.c (modified) (2 diffs)
-
dvo/showtile.c (modified) (1 diff)
-
dvo/simage.c (modified) (1 diff)
-
dvo/skycat.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ohana.20170822/src/opihi/cmd.astro/cdot.c
r34088 r40156 22 22 23 23 /* set point style and errorbar mode (these are NOT sticky) */ 24 graphmode.style = 2;24 graphmode.style = KAPA_PLOT_POINTS; /* points */ 25 25 graphmode.etype = 0; 26 26 -
branches/eam_branches/ohana.20170822/src/opihi/cmd.astro/cgrid.c
r34584 r40156 276 276 /* send the line segments as connect-points */ 277 277 Xvec.Nelements = Yvec.Nelements = N; 278 graphmode.style = 2; /* points */279 graphmode.ptype = 100; /* connect a pair*/278 graphmode.style = KAPA_PLOT_POINTS; /* points */ 279 graphmode.ptype = KAPA_POINT_PAIR_CONNECT; /* connect pairs of points */ 280 280 graphmode.etype = 0; 281 281 PlotVectorPair (kapa, &Xvec, &Yvec, NULL, &graphmode); -
branches/eam_branches/ohana.20170822/src/opihi/cmd.astro/czplot.c
r35757 r40156 111 111 Zvec.Nelements = Npts; 112 112 113 graphmode.style = 2;113 graphmode.style = KAPA_PLOT_POINTS; /* points */ 114 114 graphmode.size = -1; /* point size determined by Zvec */ 115 115 graphmode.etype = 0; -
branches/eam_branches/ohana.20170822/src/opihi/cmd.data/grid.c
r34584 r40156 175 175 176 176 Xvec.Nelements = Yvec.Nelements = N; 177 graphmode.style = 2; /* points */178 graphmode.ptype = 100; /* connect a pair*/177 graphmode.style = KAPA_PLOT_POINTS; /* points */ 178 graphmode.ptype = KAPA_POINT_PAIR_CONNECT; /* connect pairs of points */ 179 179 graphmode.etype = 0; 180 180 PlotVectorPair (kapa, &Xvec, &Yvec, NULL, &graphmode); -
branches/eam_branches/ohana.20170822/src/opihi/cmd.data/zplot.c
r38062 r40156 117 117 118 118 /* point size determined by Zvec */ 119 graphmode.style = 2; /* plotpoints */119 graphmode.style = KAPA_PLOT_POINTS; /* points */ 120 120 graphmode.size = -1; /* point size determined by Zvec */ 121 121 PlotVectorTriplet (kapa, xvec, yvec, &Zvec, mask, &graphmode); -
branches/eam_branches/ohana.20170822/src/opihi/dvo/catalog.c
r38471 r40156 390 390 REALLOCATE (Zvec.elements, float, MAX (Zvec.Nelements, 1)); 391 391 392 graphmode.style = 2; /* set style topoints */392 graphmode.style = KAPA_PLOT_POINTS; /* points */ 393 393 graphmode.size = -1; /* point size determined by Zvec */ 394 394 graphmode.etype = 0; /* no errorbars */ -
branches/eam_branches/ohana.20170822/src/opihi/dvo/dmt.c
r39457 r40156 150 150 vec5[0].Nelements = Dvec.Nelements; 151 151 } else { 152 graphmode.style = 2; /* set style topoints */152 graphmode.style = KAPA_PLOT_POINTS; /* points */ 153 153 PlotVector (kapa, N, Xvec.elements, Yvec.elements, &graphmode); 154 154 -
branches/eam_branches/ohana.20170822/src/opihi/dvo/fitcolors.c
r39457 r40156 92 92 graphdata.ymin = minDelta; 93 93 graphdata.ymax = maxDelta; 94 graph data.style = 2;95 graph data.ptype = 2;94 graphmode.style = KAPA_PLOT_POINTS; /* points */ 95 graphmode.ptype = KAPA_POINT_CIRCLE_SOLID; /* connect pairs of points */ 96 96 KapaClearSections (kapa); 97 97 KapaSetFont (kapa, "helvetica", 14); … … 192 192 graphdata.ymin = minDelta; 193 193 graphdata.ymax = maxDelta; 194 graph data.style = 2;195 graph data.ptype = 2;194 graphmode.style = KAPA_PLOT_POINTS; /* points */ 195 graphmode.ptype = KAPA_POINT_CIRCLE_SOLID; /* connect pairs of points */ 196 196 } 197 197 … … 315 315 deltaFit[i] = C0 + C1*colorFit[i]; 316 316 } 317 graph data.style = 0;317 graphmode.style = KAPA_PLOT_CONNECT; /* lines */ 318 318 graphdata.color = KapaColorByName ("red"); 319 319 … … 329 329 KapaSetFont (kapa, "helvetica", 14); 330 330 331 graph data.style = 2;331 graphmode.style = KAPA_PLOT_POINTS; /* points */ 332 332 graphdata.color = KapaColorByName ("black"); 333 333 -
branches/eam_branches/ohana.20170822/src/opihi/dvo/fitsed.c
r39457 r40156 157 157 if (!GetGraph (&graphdata, &kapa, NULL)) return (FALSE); 158 158 SetLimitsRaw (wavecode, NULL, Nfilter, &graphdata); 159 graphdata.style = 2;160 graphdata.ptype = 2;159 graphdata.style = KAPA_PLOT_POINTS; /* points */ 160 graphdata.ptype = KAPA_POINT_CIRCLE_SOLID; 161 161 KapaClearSections (kapa); 162 162 magSection.name = strcreate ("mag"); -
branches/eam_branches/ohana.20170822/src/opihi/dvo/images.c
r37807 r40156 352 352 Xvec.Nelements = Yvec.Nelements = N; 353 353 if (N > 0) { 354 graphmode.style = 2; /* points */355 graphmode.ptype = 100; /* connect pairs of points */354 graphmode.style = KAPA_PLOT_POINTS; /* points */ 355 graphmode.ptype = KAPA_POINT_PAIR_CONNECT; /* connect pairs of points */ 356 356 graphmode.etype = 0; 357 357 PlotVectorPair (kapa, &Xvec, &Yvec, NULL, &graphmode); -
branches/eam_branches/ohana.20170822/src/opihi/dvo/imbox.c
r39926 r40156 156 156 Xvec.Nelements = Yvec.Nelements = Npts; 157 157 if (Npts > 0) { 158 graphmode.style = 2; /* points */159 graphmode.ptype = 100; /* connect pairs of points */158 graphmode.style = KAPA_PLOT_POINTS; /* points */ 159 graphmode.ptype = KAPA_POINT_PAIR_CONNECT; /* connect pairs of points */ 160 160 graphmode.etype = 0; 161 161 PlotVectorPair (kapa, &Xvec, &Yvec, NULL, &graphmode); -
branches/eam_branches/ohana.20170822/src/opihi/dvo/imdense.c
r39926 r40156 59 59 Xvec.Nelements = Yvec.Nelements = N; 60 60 if (N > 0) { 61 graphmode.style = 2; /* points */61 graphmode.style = KAPA_PLOT_POINTS; /* points */ 62 62 graphmode.etype = 0; 63 63 PlotVectorPair (kapa, &Xvec, &Yvec, NULL, &graphmode); -
branches/eam_branches/ohana.20170822/src/opihi/dvo/imstats.c
r37807 r40156 51 51 if (AutoLimits) SetLimits (&Xvec, &Yvec, &graphmode); 52 52 53 graphmode.style = 2;53 graphmode.style = KAPA_PLOT_POINTS; /* points */ 54 54 graphmode.etype = 0; 55 55 PlotVectorPair (kapa, &Xvec, &Yvec, NULL, &graphmode); -
branches/eam_branches/ohana.20170822/src/opihi/dvo/paverage.c
r39457 r40156 81 81 return (FALSE); 82 82 } 83 graphmode.style = 2; /* set style topoints */83 graphmode.style = KAPA_PLOT_POINTS; /* points */ 84 84 graphmode.size = -1; /* point size determined by Zvec */ 85 85 graphmode.etype = 0; /* no errorbars */ -
branches/eam_branches/ohana.20170822/src/opihi/dvo/pmeasure.c
r39457 r40156 154 154 return (FALSE); 155 155 } 156 graphmode.style = 2; /* set style topoints */156 graphmode.style = KAPA_PLOT_POINTS; /* points */ 157 157 graphmode.size = -1; /* point size determined by Zvec */ 158 158 graphmode.etype = 0; /* no errorbars */ -
branches/eam_branches/ohana.20170822/src/opihi/dvo/procks.c
r39457 r40156 111 111 Yvec.Nelements = Xvec.Nelements = N; 112 112 113 graphmode.style = 2; /* set style topoints */113 graphmode.style = KAPA_PLOT_POINTS; /* points */ 114 114 graphmode.etype = 0; /* no errorbars */ 115 115 PlotVectorPair (kapa, &Xvec, &Yvec, NULL, &graphmode); … … 142 142 Yvec.Nelements = Xvec.Nelements = N; 143 143 144 graphmode.style = 2; /* set style topoints */145 graphmode.ptype = 100; /* connect pairs */144 graphmode.style = KAPA_PLOT_POINTS; /* points */ 145 graphmode.ptype = KAPA_POINT_PAIR_CONNECT; /* connect pairs of points */ 146 146 graphmode.etype = 0; /* no errorbars */ 147 147 -
branches/eam_branches/ohana.20170822/src/opihi/dvo/showtile.c
r39457 r40156 78 78 Xvec.Nelements = Yvec.Nelements = N; 79 79 if (N > 0) { 80 graphmode.style = 2; /* points */81 graphmode.ptype = 100; /* connect pairs of points */80 graphmode.style = KAPA_PLOT_POINTS; /* points */ 81 graphmode.ptype = KAPA_POINT_PAIR_CONNECT; /* connect pairs of points */ 82 82 graphmode.etype = 0; 83 83 PlotVectorPair (kapa, &Xvec, &Yvec, NULL, &graphmode); -
branches/eam_branches/ohana.20170822/src/opihi/dvo/simage.c
r37807 r40156 118 118 } 119 119 120 graphmode.style = 2;120 graphmode.style = KAPA_PLOT_POINTS; 121 121 graphmode.size = -1; 122 122 graphmode.etype = 0; -
branches/eam_branches/ohana.20170822/src/opihi/dvo/skycat.c
r39926 r40156 121 121 Xvec.Nelements = Yvec.Nelements = Npts; 122 122 if (Npts > 0) { 123 graphmode.style = 2; /* points */124 graphmode.ptype = 100; /* connect pairs of points */123 graphmode.style = KAPA_PLOT_POINTS; /* points */ 124 graphmode.ptype = KAPA_POINT_PAIR_CONNECT; /* connect pairs of points */ 125 125 graphmode.etype = 0; 126 126 PlotVectorPair (kapa, &Xvec, &Yvec, NULL, &graphmode);
Note:
See TracChangeset
for help on using the changeset viewer.
