Changeset 3460 for trunk/MagicSoft/Mars/mbadpixels
- Timestamp:
- 03/10/04 17:14:13 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mbadpixels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc
r3420 r3460 27 27 // MBadPixelsCam // 28 28 // 29 // Storage container to store bad pixel of the camera...//29 // Storage container to store bad pixel of the camera... 30 30 // 31 31 ///////////////////////////////////////////////////////////////////////////// … … 73 73 { 74 74 fArray->ExpandCreate(i); 75 *fLog << endl << dbg << "INIT SIZE: " << i << endl; 75 76 } 76 77 … … 107 108 MBadPixelsPix &MBadPixelsCam::operator[](Int_t i) 108 109 { 110 *fLog << dbg << "A: " << GetSize() << ": " << i << " " << fArray->UncheckedAt(i) << endl; 109 111 return *static_cast<MBadPixelsPix*>(fArray->UncheckedAt(i)); 110 112 } … … 116 118 const MBadPixelsPix &MBadPixelsCam::operator[](Int_t i) const 117 119 { 120 *fLog << dbg << "B: " << GetSize() << ": " << i << " " << fArray->UncheckedAt(i) << endl; 118 121 return *static_cast<MBadPixelsPix*>(fArray->UncheckedAt(i)); 119 122 } -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsMerge.cc
r3068 r3460 92 92 { 93 93 MBadPixelsCam *cam = (MBadPixelsCam*)pList->FindCreateObj("MBadPixelsCam"); 94 *fLog << endl << dbg << "MERGE: " << cam << endl; 94 95 if (!cam) 95 96 return kFALSE;
Note:
See TracChangeset
for help on using the changeset viewer.