Changeset 1413 in Sophya for trunk/SophyaLib/HiStats/histos.cc
- Timestamp:
- Feb 20, 2001, 7:29:48 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/histos.cc
r1201 r1413 1 1 // 2 // $Id: histos.cc,v 1.1 4 2000-09-26 15:53:34ansari Exp $2 // $Id: histos.cc,v 1.15 2001-02-20 18:29:48 ansari Exp $ 3 3 // 4 4 … … 1276 1276 \endverbatim 1277 1277 */ 1278 1279 void Histo::Show(ostream & os) const 1280 { 1281 os << " Histo::Show " 1282 << " nHist=" << nHist << " nEntries=" << nEntries 1283 << " mUnder=" << mUnder << " mOver=" << mOver << endl; 1284 os << " mBins=" << mBins 1285 << " min=" << mMin << " mMax=" << mMax 1286 << " binWidth=" << binWidth << endl; 1287 os << " mean=" << Mean() << " r.m.s=" << Sigma() 1288 << " Errors="<<HasErrors()<< endl; 1289 } 1290 1278 1291 void Histo::Print(int_4 hdyn,r_8 hmin, r_8 hmax,int_4 pflag, 1279 1292 int_4 il, int_4 ih) const … … 1290 1303 if(hdyn==0) hdyn = 100; 1291 1304 1292 cout << "~Histo::Print " 1293 << " nHist=" << nHist << " nEntries=" << nEntries 1294 << " mUnder=" << mUnder << " mOver=" << mOver << endl; 1295 cout << " mBins=" << mBins 1296 << " min=" << mMin << " mMax=" << mMax 1297 << " binWidth=" << binWidth << endl; 1298 cout << " mean=" << Mean() << " r.m.s=" << Sigma() 1299 << " Errors="<<HasErrors()<< endl; 1305 Show(cout); 1300 1306 1301 1307 if(hdyn<0 || pflag<0 ) return;
Note:
See TracChangeset
for help on using the changeset viewer.