Changeset 1992 for trunk/MagicSoft/Mars/mhist/MFillH.h
- Timestamp:
- 04/23/03 16:45:19 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MFillH.h
r1965 r1992 9 9 class MMap; 10 10 class MData; 11 class MWeight; 11 12 class MParList; 12 13 … … 21 22 MH* fH; 22 23 TString fHName; 24 25 MWeight *fWeight; 26 TString fWeightName; 23 27 24 28 MData *fIndex; // MData object describing the 'key' to an automatic index for an MHArray … … 42 46 MFillH(MH *hist, const char *par=NULL, const char *name=NULL, const char *title=NULL); 43 47 MFillH(MH *hist, MParContainer *par, const char *name=NULL, const char *title=NULL); 44 45 48 ~MFillH(); 46 49 47 50 void SetRuleForIdx(const TString rule); 48 51 void SetRuleForIdx(MData *rule); 52 53 void SetWeight(MWeight *w) { fWeight = w; } 54 void SetWeight(const char *name) { fWeightName = name; } 49 55 50 56 Bool_t PreProcess(MParList *pList);
Note:
See TracChangeset
for help on using the changeset viewer.