Changeset 3460


Ignore:
Timestamp:
03/10/04 17:14:13 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbadpixels
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc

    r3420 r3460  
    2727// MBadPixelsCam                                                                                                                              //
    2828//
    29 //Storage container to store bad pixel of the camera...//
     29// Storage container to store bad pixel of the camera...
    3030//
    3131/////////////////////////////////////////////////////////////////////////////
     
    7373{
    7474    fArray->ExpandCreate(i);
     75    *fLog << endl << dbg << "INIT SIZE: " << i << endl;
    7576}
    7677
     
    107108MBadPixelsPix &MBadPixelsCam::operator[](Int_t i)
    108109{
     110    *fLog << dbg << "A: " << GetSize() << ": " << i << " " << fArray->UncheckedAt(i) << endl;
    109111    return *static_cast<MBadPixelsPix*>(fArray->UncheckedAt(i));
    110112}
     
    116118const MBadPixelsPix &MBadPixelsCam::operator[](Int_t i) const
    117119{
     120    *fLog << dbg << "B: " << GetSize() << ": " << i << " " << fArray->UncheckedAt(i) << endl;
    118121    return *static_cast<MBadPixelsPix*>(fArray->UncheckedAt(i));
    119122}
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsMerge.cc

    r3068 r3460  
    9292{
    9393    MBadPixelsCam *cam = (MBadPixelsCam*)pList->FindCreateObj("MBadPixelsCam");
     94    *fLog << endl << dbg << "MERGE: " << cam << endl;
    9495    if (!cam)
    9596        return kFALSE;
Note: See TracChangeset for help on using the changeset viewer.