Ignore:
Timestamp:
11/21/03 17:51:54 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MFillH.cc

    r2516 r2551  
    470470// --------------------------------------------------------------------------
    471471//
     472// Call the ReInit function of the contained Histogram
     473//
     474Bool_t MFillH::ReInit(MParList *pList)
     475{
     476    return fH->ReInit(pList);
     477}
     478
     479// --------------------------------------------------------------------------
     480//
    472481// Fills the data from the parameter conatiner into the histogram container
    473482//
  • trunk/MagicSoft/Mars/mhist/MFillH.h

    r2416 r2551  
    5959    void SetWeight(const char *name) { fWeightName = name; }
    6060
    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();
    6465
    6566    TCanvas *GetCanvas() { return fCanvas; }
  • trunk/MagicSoft/Mars/mhist/MH.h

    r2525 r2551  
    3131    TString AddSerialNumber(const TString &str) const { return AddSerialNumber((const char*)str); }
    3232
    33 
    3433    Bool_t OverwritesDraw(TClass *cls=NULL) const;
    3534
    3635    virtual Bool_t SetupFill(const MParList *pList) { return kTRUE; }
     36    virtual Bool_t ReInit(MParList *pList) { return kTRUE; }
    3737    virtual Bool_t Fill(const MParContainer *par, const Stat_t weight=1);
    3838    virtual Bool_t Finalize() { return kTRUE; }
Note: See TracChangeset for help on using the changeset viewer.