Changeset 3149 in Sophya for trunk/SophyaPI/PIext/pihisto.cc
- Timestamp:
- Jan 18, 2007, 7:21:49 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pihisto.cc
r3145 r3149 48 48 mRetFg = 0; 49 49 } 50 else if(opts.substr(0, 8) == "hbinerr") {50 else if(opts.substr(0,7) == "hbinerr") { 51 51 mRetFg = 1; 52 52 } 53 else if(opts.substr(0, 8) == "hbinent") {53 else if(opts.substr(0,7) == "hbinent") { 54 54 mRetFg = 2; 55 55 } … … 269 269 else if(opts=="err") error=true; 270 270 else if(opts=="noerr" || opts=="nerr") error=false; 271 // $CHECK$CMV : on desactive pline si fill ?272 271 else if(opts=="fill") { filled=true; pline=false; } 273 272 else if(opts=="nofill" || opts=="nfill") filled=false; 274 // $CHECK$CMV : on desactive fill si pline ?275 273 else if(opts=="pline") { pline=true; filled=false; } 276 274 else if(opts=="nopline") pline=false; 277 275 else if(opts.substr(0,11) == "statposoff=") { 278 floatxo=0., yo=0.;279 sscanf(opts.substr(11).c_str(),"% g,%g",&xo, &yo);276 double xo=0., yo=0.; 277 sscanf(opts.substr(11).c_str(),"%lf,%lf",&xo, &yo); 280 278 spoX=xo; spoY=yo; 281 279 }
Note:
See TracChangeset
for help on using the changeset viewer.