Changeset 1838 in Sophya
- Timestamp:
- Dec 21, 2001, 11:49:27 PM (24 years ago)
- Location:
- trunk/SophyaPI/PIGcont
- Files:
-
- 1 added
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIGcont/Makefile
r1837 r1838 17 17 18 18 $(OBJ)contour.o: contour.c contour.h gp_types.h mymisc.h dynarray.h \ 19 graph3d.h alloc.h myaxis.h20 $(OBJ)myalloc.o: myalloc.c alloc.h graph3d.h gp_types.h mymisc.h19 graph3d.h gp_alloc.h myaxis.h 20 $(OBJ)myalloc.o: myalloc.c gp_alloc.h graph3d.h gp_types.h mymisc.h 21 21 $(OBJ)myaxis.o: myaxis.c myaxis.h mymisc.h 22 22 $(OBJ)picntools.o: picntools.cc picntools.h \ … … 87 87 $(INC)ntuple.h \ 88 88 $(INC)ntupintf.h contour.h gp_types.h \ 89 dynarray.h mymisc.h graph3d.h alloc.h set.h89 dynarray.h mymisc.h graph3d.h gp_alloc.h set.h 90 90 $(OBJ)pigncont.o: pigncont.cc $(INC)machdefs.h \ 91 91 $(INC)ctimer.h \ … … 173 173 $(INC)servnobjm.h picntools.h pigncont.h \ 174 174 $(INC)piscdrawwdg.h contour.h gp_types.h \ 175 dynarray.h mymisc.h graph3d.h alloc.h set.h175 dynarray.h mymisc.h graph3d.h gp_alloc.h set.h 176 176 $(OBJ)set.o: set.c set.h contour.h gp_types.h mymisc.h dynarray.h graph3d.h -
trunk/SophyaPI/PIGcont/contour.c
r1829 r1838 1 1 #ifndef lint 2 static char *RCSid() { return RCSid("$Id: contour.c,v 1. 1.1.1 2001-12-19 18:01:18 perderosExp $"); }2 static char *RCSid() { return RCSid("$Id: contour.c,v 1.2 2001-12-21 22:49:27 ansari Exp $"); } 3 3 #endif 4 4 … … 49 49 #include "contour.h" 50 50 51 #include " alloc.h"51 #include "gp_alloc.h" 52 52 #include "myaxis.h" 53 53 /* #include "setshow.h" */ … … 73 73 74 74 75 /* Valeur de zero - Reza 21/12/2001 - Pourquoi zero = 0. ??? */ 76 static double zero = 0.; 77 75 78 /* FIXME HBB 2000052: yet another local copy of 'epsilon'. Why? */ 76 79 #define EPSILON 1e-5 /* Used to decide if two float are equal. */ 80 77 81 78 82 #ifndef TRUE … … 80 84 #define FALSE 0 81 85 #endif 86 82 87 83 88 #define MAX_POINTS_PER_CNTR 100 -
trunk/SophyaPI/PIGcont/myalloc.c
r1829 r1838 1 #include " alloc.h"1 #include "gp_alloc.h" 2 2 #include "graph3d.h" 3 3 #include <math.h> -
trunk/SophyaPI/PIGcont/myaxis.h
r1829 r1838 1 1 /* 2 * $Id: myaxis.h,v 1. 1.1.1 2001-12-19 18:01:18 perderosExp $2 * $Id: myaxis.h,v 1.2 2001-12-21 22:49:27 ansari Exp $ 3 3 * 4 4 */ … … 48 48 49 49 /* typedefs / #defines */ 50 #ifndef TRUE 51 #define TRUE -1 52 #define FALSE 0 53 #endif 50 54 51 55 /* give some names to some array elements used in command.c and grap*.c … … 606 610 /*void axis_set_graphical_range __PROTO((AXIS_INDEX, unsigned int lower, unsigned int upper));*/ 607 611 /*TBOOLEAN axis_position_zeroaxis __PROTO((AXIS_INDEX));*/ 608 /*void axis_draw_2d_zeroaxis __PROTO((AXIS_INDEX, AXIS_INDEX)); 612 /*void axis_draw_2d_zeroaxis __PROTO((AXIS_INDEX, AXIS_INDEX)); */ 609 613 610 614 /*double get_writeback_min __PROTO((AXIS_INDEX));*/ -
trunk/SophyaPI/PIGcont/picntools.cc
r1832 r1838 3 3 // LAL (Orsay) / IN2P3-CNRS DAPNIA/SPP (Saclay) / CEA 4 4 5 #include <stdlib.h> 6 5 // #include <stdlib.h> 6 7 #include "machdefs.h" 8 #include <string> 9 #include <iostream.h> 7 10 8 11 #include "picntools.h" 9 #include <iostream.h>10 #include "piscdrawwdg.h"11 #include "pi3ddrw.h"12 12 #include "pigncont.h" 13 13 -
trunk/SophyaPI/PIGcont/picntools.h
r1829 r1838 12 12 #include PIWIN_H 13 13 #include PIAPP_H 14 #include "pibwdggen.h" 15 #include "pigncont.h" 14 #include "picmapview.h" 16 15 17 16 // --------- fenetre de dialogue pour modifs options de trace des contours ---------- 18 17 // -------------------------------------------------------------------------------- 19 18 19 class PIContourDrawer; 20 class PIBaseWdgGen; 20 21 21 22 class PICnTools : public PIWindow -
trunk/SophyaPI/PIGcont/pigncont.cc
r1829 r1838 5 5 #include <math.h> 6 6 7 #include <typeinfo>8 9 #include <vector>10 #include <string>11 12 #include "ctimer.h"13 #include "piacmd.h"14 #include "nobjmgr.h"15 #include "pistdimgapp.h"16 17 #include "pidrawer.h"18 #include "nomgadapter.h"19 20 7 #include "histos.h" 21 #include "histos2.h"22 #include "hisprof.h"23 8 #include "ntuple.h" 24 9 25 #include "servnobjm.h" 26 #include <nbtri.h> 10 #include "nbtri.h" 27 11 28 12 #include "picntools.h" 29 13 #include "pigncont.h" 30 //A-Virer #include "pidrwtools.h" 31 //A-Virer #include "piaxestools.h" 32 33 extern "C" { 34 #include "contour.h" 35 #include "alloc.h" 36 #include "set.h" 37 } 38 39 TBOOLEAN multiplot; 40 double zero =0; 41 TBOOLEAN polar; 42 int xleft, xright, ybot, ytop; 43 float xsize; 44 float ysize; 45 float xoffset, yoffset; 46 14 15 /* A virer ?? Reza 21/12/2001 16 static TBOOLEAN multiplot; 17 static double zero =0; 18 static TBOOLEAN fg_polar; 19 static int xleft, xright, ybot, ytop; 20 static float xsize; 21 static float ysize; 22 static float xoffset, yoffset; 23 */ 47 24 48 25 GNUPlotContour::GNUPlotContour(struct iso_curve * iso){ -
trunk/SophyaPI/PIGcont/pigncont.h
r1829 r1838 14 14 extern "C" { 15 15 #include "contour.h" 16 #include " alloc.h"16 #include "gp_alloc.h" 17 17 #include "set.h" 18 18 }
Note:
See TracChangeset
for help on using the changeset viewer.