Changeset 5464 for trunk/MagicSoft/Mars
- Timestamp:
- 11/24/04 16:08:21 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5463 r5464 26 26 - improved the Print() function such that the individual pixels 27 27 matching a certain badness-criterion are listed. 28 29 * mpedestal/MPedestalPix.[h,cc] 30 - introduced Copy-function 28 31 29 32 -
trunk/MagicSoft/Mars/mpedestal/MPedestalPix.cc
r4556 r5464 87 87 } 88 88 89 // -------------------------------------------------------------------------- 90 // 91 // Copy 'constructor' 92 // 93 void MPedestalPix::Copy(TObject &object) const 94 { 95 96 MPedestalPix &pix = (MPedestalPix&)object; 97 98 pix.fPedestal = fPedestal ; 99 pix.fPedestalRms = fPedestalRms ; 100 pix.fPedestalABoffset = fPedestalABoffset ; 101 } 102 89 103 // ------------------------------------------------------------------------ 90 104 // -
trunk/MagicSoft/Mars/mpedestal/MPedestalPix.h
r4778 r5464 18 18 19 19 void Clear(Option_t *o=""); 20 20 void Copy(TObject &object) const; 21 21 22 // Using histograms 22 23 void InitUseHists();
Note:
See TracChangeset
for help on using the changeset viewer.