Changeset 2937 for trunk/MagicSoft/Mars
- Timestamp:
- 01/28/04 10:23:52 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2936 r2937 4 4 5 5 -*-*- END OF LINE -*-*- 6 2004/01/28: Thomas Bretz 7 8 * manalysis/MPedestalCam.cc: 9 - removed unwanted CheckBound from operators. CheckBounds is ONLY 10 ment for really old MC files and will be removed in the future 11 anyhow. 12 13 14 6 15 2004/01/28: Sebastian Raducci 7 16 -
trunk/MagicSoft/Mars/manalysis/MPedestalCam.cc
r2929 r2937 102 102 MPedestalPix &MPedestalCam::operator[](Int_t i) 103 103 { 104 if (!CheckBounds(i))105 return *static_cast<MPedestalPix*>(NULL);106 107 104 return *static_cast<MPedestalPix*>(fArray->UncheckedAt(i)); 108 105 } … … 114 111 MPedestalPix &MPedestalCam::operator[](Int_t i) const 115 112 { 116 if (!CheckBounds(i))117 return *static_cast<MPedestalPix*>(NULL);118 119 113 return *static_cast<MPedestalPix*>(fArray->UncheckedAt(i)); 120 114 }
Note:
See TracChangeset
for help on using the changeset viewer.