Changeset 2551 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 11/21/03 17:51:54 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MFillH.cc
r2516 r2551 470 470 // -------------------------------------------------------------------------- 471 471 // 472 // Call the ReInit function of the contained Histogram 473 // 474 Bool_t MFillH::ReInit(MParList *pList) 475 { 476 return fH->ReInit(pList); 477 } 478 479 // -------------------------------------------------------------------------- 480 // 472 481 // Fills the data from the parameter conatiner into the histogram container 473 482 // -
trunk/MagicSoft/Mars/mhist/MFillH.h
r2416 r2551 59 59 void SetWeight(const char *name) { fWeightName = name; } 60 60 61 Int_t PreProcess(MParList *pList); 62 Int_t Process(); 63 Int_t PostProcess(); 61 Int_t PreProcess(MParList *pList); 62 Bool_t ReInit(MParList *pList); 63 Int_t Process(); 64 Int_t PostProcess(); 64 65 65 66 TCanvas *GetCanvas() { return fCanvas; } -
trunk/MagicSoft/Mars/mhist/MH.h
r2525 r2551 31 31 TString AddSerialNumber(const TString &str) const { return AddSerialNumber((const char*)str); } 32 32 33 34 33 Bool_t OverwritesDraw(TClass *cls=NULL) const; 35 34 36 35 virtual Bool_t SetupFill(const MParList *pList) { return kTRUE; } 36 virtual Bool_t ReInit(MParList *pList) { return kTRUE; } 37 37 virtual Bool_t Fill(const MParContainer *par, const Stat_t weight=1); 38 38 virtual Bool_t Finalize() { return kTRUE; }
Note:
See TracChangeset
for help on using the changeset viewer.