Changeset 1388 for trunk/MagicSoft/Mars/mhist/MH.cc
- Timestamp:
- 07/08/02 14:20:52 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MH.cc
r1330 r1388 54 54 #include <TCanvas.h> 55 55 56 #include "MLog.h" 57 56 58 #include "MBinning.h" 57 59 … … 70 72 fName = name ? name : "MH"; 71 73 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 // 83 Bool_t MH::Fill(const MParContainer *par) 84 { 85 *fLog << GetDescriptor() << ": Fill not overloaded! Can't be used!" << endl; 86 return kFALSE; 72 87 } 73 88
Note:
See TracChangeset
for help on using the changeset viewer.