Changeset 2937


Ignore:
Timestamp:
01/28/04 10:23:52 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2936 r2937  
    44
    55                                                 -*-*- 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
    615 2004/01/28: Sebastian Raducci
    716
  • trunk/MagicSoft/Mars/manalysis/MPedestalCam.cc

    r2929 r2937  
    102102MPedestalPix &MPedestalCam::operator[](Int_t i)
    103103{
    104   if (!CheckBounds(i))
    105     return *static_cast<MPedestalPix*>(NULL);
    106 
    107104  return *static_cast<MPedestalPix*>(fArray->UncheckedAt(i));
    108105}
     
    114111MPedestalPix &MPedestalCam::operator[](Int_t i) const
    115112{
    116   if (!CheckBounds(i))
    117     return *static_cast<MPedestalPix*>(NULL);
    118 
    119113  return *static_cast<MPedestalPix*>(fArray->UncheckedAt(i));
    120114}
Note: See TracChangeset for help on using the changeset viewer.