Changeset 8074 for trunk/MagicSoft/Mars/mhbase
- Timestamp:
- 10/16/06 20:09:41 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/mhbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhbase/MFillH.cc
r7804 r8074 84 84 #include <TCanvas.h> 85 85 86 #include "MData Chain.h"86 #include "MDataPhrase.h" 87 87 88 88 #include "MLog.h" … … 292 292 // 293 293 // If the histogram to be filles is a MHArray you can specify a 'rule' 294 // This rule is used to create an MData Chain. The return value of the chain294 // This rule is used to create an MDataPhrase. The return value of the chain 295 295 // is casted to int. Each int acts as a key. For each (new) key a new 296 296 // histogram is created in the array. (eg for the rule … … 299 299 void MFillH::SetRuleForIdx(const TString rule) 300 300 { 301 fIndex = new MData Chain(rule);301 fIndex = new MDataPhrase(rule); 302 302 fIndex->SetBit(kCanDelete); 303 303 } … … 562 562 // if (save && fCanvas) 563 563 // save->cd(); 564 return rc ;564 return rc==kFALSE ? kCONTINUE : kTRUE; 565 565 } 566 566 -
trunk/MagicSoft/Mars/mhbase/MHMatrix.cc
r7804 r8074 30 30 // 31 31 // This is a histogram container which holds a matrix with one column per 32 // data variable. The data variable can be a complex rule (MData Chain).32 // data variable. The data variable can be a complex rule (MDataPhrase). 33 33 // Each event for wich Fill is called (by MFillH) is added as a new 34 34 // row to the matrix.
Note:
See TracChangeset
for help on using the changeset viewer.