Changeset 205 in Sophya for trunk/SophyaPI/PIext/pigfd1.cc
- Timestamp:
- Mar 1, 1999, 6:05:59 PM (27 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pigfd1.cc
r165 r205 47 47 dx = 0.02*(xmax-xmin); 48 48 dy = 0.02*(ymax-ymin); 49 SetLimits(( float)xmin-dx,(float)xmax+dx,(float)ymin-dy,(float)ymax+dy);49 SetLimits((double)xmin-dx,(double)xmax+dx,(double)ymin-dy,(double)ymax+dy); 50 50 SetAxesFlags(kBoxAxes | kExtTicks | kLabels); 51 51 } 52 52 53 53 /* --Methode-- */ 54 void PIGenFitDat::Draw(PIGraphicUC* g, float xmin, float ymin, float xmax, floatymax)54 void PIGenFitDat::Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax) 55 55 { 56 56 if (!mGFD) return; … … 59 59 // On plotte les barre d'erreurs ligne demandee explicitement 60 60 if(mLAtt!=PI_NotDefLineAtt) SelectErrBar(true,true); 61 floatxp,yp,er;61 double xp,yp,er; 62 62 for (int i=0; i<mGFD->NData(); i++) { 63 63 xp = mGFD->Absc(VarX,i);
Note:
See TracChangeset
for help on using the changeset viewer.