Changeset 2507 in Sophya for trunk/SophyaLib/HiStats/hisprof.cc
- Timestamp:
- Mar 15, 2004, 5:47:21 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/hisprof.cc
r2341 r2507 20 20 , SumY(NULL), SumY2(NULL), SumW(NULL), Ok(false), YMin(1.), YMax(-1.), Opt(0) 21 21 { 22 END_CONSTRUCTOR23 22 } 24 23 … … 40 39 Histo::Errors(); 41 40 Zero(); 42 END_CONSTRUCTOR43 41 } 44 42 … … 56 54 Histo::Errors(); 57 55 Zero(); 58 END_CONSTRUCTOR59 56 } 60 57 … … 76 73 } 77 74 UpdateHisto(); 78 END_CONSTRUCTOR79 75 } 80 76 … … 251 247 HProf& HProf::operator += (const HProf& a) 252 248 { 253 if(mBins!=a.mBins) THROW(sizeMismatchErr);249 if(mBins!=a.mBins) throw SzMismatchError(PExcLongMessage("")); 254 250 Histo *hthis = (Histo *) this; 255 251 *hthis += (Histo) a;
Note:
See TracChangeset
for help on using the changeset viewer.