Ignore:
Timestamp:
02/10/06 10:22:30 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcamera
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcamera/MCameraDC.h

    r2958 r7489  
    3333    Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const
    3434    {
     35        if (idx>=fArray.GetSize())
     36            return kFALSE;
     37
    3538        val = fArray[idx];
    3639        return val>0;
  • trunk/MagicSoft/Mars/mcamera/MCameraHV.h

    r7444 r7489  
    5353    Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const
    5454    {
     55        if (idx>=fHV.GetSize())
     56            return kFALSE;
     57
    5558        val = fHV[idx];
    5659        return val>0;
  • trunk/MagicSoft/Mars/mcamera/MCameraTD.h

    r7446 r7489  
    3131    Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const
    3232    {
     33        if (idx>=fTD.GetSize())
     34            return kFALSE;
     35
    3336        val = fTD[idx];
    3437        return val>0;
  • trunk/MagicSoft/Mars/mcamera/MCameraTH.h

    r7446 r7489  
    3131    Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const
    3232    {
     33        if (idx>=fTH.GetSize())
     34            return kFALSE;
     35
    3336        val = fTH[idx];
    3437        return val>0;
Note: See TracChangeset for help on using the changeset viewer.