Ignore:
Timestamp:
07/08/02 14:20:52 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1330 r1388  
    5454#include <TCanvas.h>
    5555
     56#include "MLog.h"
     57
    5658#include "MBinning.h"
    5759
     
    7072    fName  = name  ? name  : "MH";
    7173    fTitle = title ? title : "Base class for Mars histograms";
     74}
     75
     76// --------------------------------------------------------------------------
     77//
     78// If you want to use the automatic filling of your derived class you
     79// must overload this function. If it is not overloaded you cannot use
     80// FillH with this class. The argument is a pointer to a container
     81// in your paremeter list which is specified in the MFillH constructor
     82//
     83Bool_t MH::Fill(const MParContainer *par)
     84{
     85    *fLog << GetDescriptor() << ": Fill not overloaded! Can't be used!" << endl;
     86    return kFALSE;
    7287}
    7388
Note: See TracChangeset for help on using the changeset viewer.