Ignore:
Timestamp:
10/16/06 20:09:41 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhbase
Files:
2 edited

Legend:

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

    r7804 r8074  
    8484#include <TCanvas.h>
    8585
    86 #include "MDataChain.h"
     86#include "MDataPhrase.h"
    8787
    8888#include "MLog.h"
     
    292292//
    293293// If the histogram to be filles is a MHArray you can specify a 'rule'
    294 // This rule is used to create an MDataChain. The return value of the chain
     294// This rule is used to create an MDataPhrase. The return value of the chain
    295295// is casted to int. Each int acts as a key. For each (new) key a new
    296296// histogram is created in the array. (eg for the rule
     
    299299void MFillH::SetRuleForIdx(const TString rule)
    300300{
    301     fIndex = new MDataChain(rule);
     301    fIndex = new MDataPhrase(rule);
    302302    fIndex->SetBit(kCanDelete);
    303303}
     
    562562//    if (save && fCanvas)
    563563//        save->cd();
    564     return rc;
     564    return rc==kFALSE ? kCONTINUE : kTRUE;
    565565}
    566566
  • trunk/MagicSoft/Mars/mhbase/MHMatrix.cc

    r7804 r8074  
    3030//
    3131// This is a histogram container which holds a matrix with one column per
    32 // data variable. The data variable can be a complex rule (MDataChain).
     32// data variable. The data variable can be a complex rule (MDataPhrase).
    3333// Each event for wich Fill is called (by MFillH) is added as a new
    3434// row to the matrix.
Note: See TracChangeset for help on using the changeset viewer.