Changeset 8140 for trunk/MagicSoft/Mars/mbadpixels
- Timestamp:
- 10/20/06 19:26:01 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/mbadpixels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsIntensityCam.cc
r7804 r8140 234 234 return static_cast<MBadPixelsCam*>(i==-1 ? fCams->Last() : fCams->At(i)); 235 235 } 236 236 /* 237 237 // -------------------------------------------------------------------------- 238 238 // … … 252 252 return static_cast<MBadPixelsCam*>(fCams->FindObject(name)); 253 253 } 254 254 */ 255 255 // -------------------------------------------------------------------------- 256 256 // -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsIntensityCam.h
r7189 r8140 15 15 #endif 16 16 17 class TOrdCollection; 17 #ifndef ROOT_TOrdCollection 18 #include <TOrdCollection.h> 19 #endif 20 18 21 class TGraph; 19 22 class MHCamera; 23 20 24 class MBadPixelsIntensityCam : public MParContainer, public MCamEvent 21 25 { … … 42 46 MBadPixelsCam *GetCam ( Int_t i=-1); 43 47 const MBadPixelsCam *GetCam ( Int_t i=-1) const; 44 48 /* 45 49 MBadPixelsCam *GetCam ( const char *name ); 46 50 const MBadPixelsCam *GetCam ( const char *name ) const; 51 */ 52 53 // The "DeleteOldCam" function must not delete the first entry in 54 // the array because it is a special cam from the MParList. (see above) 55 void DeleteOldCam(MBadPixelsCam *cam) {/* if (fCams->IndexOf(cam)>0) delete fCams->Remove(cam);*/ } 47 56 48 57 MBadPixelsPix &operator[] ( Int_t i );
Note:
See TracChangeset
for help on using the changeset viewer.