Changeset 1472 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 08/01/02 15:22:34 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MFillH.cc
r1471 r1472 89 89 fTitle = title ? title : "Task to fill Mars histograms"; 90 90 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 // 100 MFillH::MFillH() 101 { 102 Init(NULL, NULL); 93 103 } 94 104 -
trunk/MagicSoft/Mars/mhist/MFillH.h
r1471 r1472 12 12 { 13 13 private: 14 const MParContainer *fParContainer; 14 const MParContainer *fParContainer; //! 15 15 TString fParContainerName; 16 16 17 MH* fH; 17 MH* fH; //! 18 18 TString fHName; 19 19 … … 24 24 25 25 public: 26 MFillH(); 26 27 MFillH(const char *hist, const char *par=NULL, const char *name=NULL, const char *title=NULL); 27 28 MFillH(const char *hist, const MParContainer *par, const char *name=NULL, const char *title=NULL); … … 35 36 void SavePrimitive(ofstream &out, Option_t *o=""); 36 37 37 ClassDef(MFillH, 0) // Task to fill a histogram with data from a parameter container38 ClassDef(MFillH, 1) // Task to fill a histogram with data from a parameter container 38 39 }; 39 40
Note:
See TracChangeset
for help on using the changeset viewer.