Changeset 1457 for trunk/MagicSoft
- Timestamp:
- 07/30/02 16:04:30 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1454 r1457 3 3 2002/07/29: Thomas Bretz 4 4 5 * manalysis/MImgCleanStd. cc:5 * manalysis/MImgCleanStd.[h,cc]: 6 6 - changed ispixused from static size to dynamicly allocated size 7 7 (thanks to Markus Gaug) -
trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc
r1456 r1457 291 291 Bool_t MImgCleanStd::Process() 292 292 { 293 CleanStep1();294 CleanStep2( );293 const Int_t max = CleanStep1(); 294 CleanStep2(max); 295 295 CleanStep3(); 296 296 -
trunk/MagicSoft/Mars/manalysis/MImgCleanStd.h
r1083 r1457 26 26 const char *name=NULL, const char *title=NULL); 27 27 28 voidCleanStep1();29 void CleanStep2();30 void CleanStep3();28 Int_t CleanStep1(); 29 void CleanStep2(Int_t max); 30 void CleanStep3(); 31 31 32 32 Bool_t PreProcess(MParList *pList);
Note:
See TracChangeset
for help on using the changeset viewer.