Ignore:
Timestamp:
08/01/02 15:22:34 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
2 edited

Legend:

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

    r1471 r1472  
    8989    fTitle = title ? title : "Task to fill Mars histograms";
    9090
    91     fH                = NULL;
    92     fParContainer     = NULL;
     91    fH            = NULL;
     92    fParContainer = NULL;
     93}
     94
     95// --------------------------------------------------------------------------
     96//
     97// Default Constructor. This is to support some root-stuff.
     98// Never try to use it yourself!
     99//
     100MFillH::MFillH()
     101{
     102    Init(NULL, NULL);
    93103}
    94104
  • trunk/MagicSoft/Mars/mhist/MFillH.h

    r1471 r1472  
    1212{
    1313private:
    14     const MParContainer *fParContainer;
     14    const MParContainer *fParContainer; //!
    1515    TString fParContainerName;
    1616
    17     MH* fH;
     17    MH* fH;                             //!
    1818    TString fHName;
    1919
     
    2424
    2525public:
     26    MFillH();
    2627    MFillH(const char *hist, const char *par=NULL,     const char *name=NULL, const char *title=NULL);
    2728    MFillH(const char *hist, const MParContainer *par, const char *name=NULL, const char *title=NULL);
     
    3536    void SavePrimitive(ofstream &out, Option_t *o="");
    3637
    37     ClassDef(MFillH, 0) // Task to fill a histogram with data from a parameter container
     38    ClassDef(MFillH, 1) // Task to fill a histogram with data from a parameter container
    3839};
    3940   
Note: See TracChangeset for help on using the changeset viewer.