Changeset 4586 for trunk/MagicSoft/Mars/mimage
- Timestamp:
- 08/12/04 08:16:56 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mimage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mimage/MImgCleanStd.cc
r4526 r4586 291 291 const char *name, const char *title) 292 292 : fCleaningMethod(kStandard), fCleanLvl1(lvl1), 293 fCleanLvl2(lvl2), fCleanRings(1)293 fCleanLvl2(lvl2), fCleanRings(1), fNamePedPhotContainer("MPedPhotCam") 294 294 295 295 { … … 510 510 } 511 511 512 fPed = (MPedPhotCam*)pList->FindObject( AddSerialNumber("MPedPhotCam"));512 fPed = (MPedPhotCam*)pList->FindObject(fNamePedPhotContainer, AddSerialNumber("MPedPhotCam")); 513 513 if (!fPed) 514 514 { -
trunk/MagicSoft/Mars/mimage/MImgCleanStd.h
r4452 r4586 38 38 39 39 Float_t fInnerNoise; //! 40 TString fNamePedPhotContainer; // name of the 'MPedPhotCam' container 41 40 42 41 43 void CreateGuiElements(MGGroupFrame *f); … … 65 67 66 68 Bool_t ProcessMessage(Int_t msg, Int_t submsg, Long_t param1, Long_t param2); 69 void SetNamePedPhotContainer(const char *name) { fNamePedPhotContainer = name; } 67 70 68 71 ClassDef(MImgCleanStd, 2) // task doing the image cleaning
Note:
See TracChangeset
for help on using the changeset viewer.