Changeset 8076 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
10/16/06 20:27:58 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfbase/MFDataChain.cc

    r7804 r8076  
    2828//
    2929// With this filter you can filter in all variables from Mars parameter
    30 // containers using rules (for more details see MDataChain).
     30// containers using rules (for more details see MDataPhrase).
    3131//
    3232// In the constructor you can give the filter variable, like
     
    5252
    5353#include "MDataValue.h"
     54#include "MDataPhrase.h"
    5455
    5556#include "MLog.h"
     
    8687MFDataChain::MFDataChain(const char *rule, const char type, const char *cond,
    8788                         const char *name, const char *title)
    88     : fData(rule), fCond(new MDataChain(cond))
     89    : fData(rule), fCond(new MDataPhrase(cond))
    8990{
    9091    fName  = name  ? name  : "MFDataChain";
  • trunk/MagicSoft/Mars/mfit/MTFitLoop.cc

    r4358 r8076  
    3232//
    3333// The parameters which are optimized must be stored in a MParContainer
    34 // which overwrites SetVariables(). Eg. a MDataChain or MF overwrites
     34// which overwrites SetVariables(). Eg. a MDataPhrase or MF overwrites
    3535// SetVariables(). In a MF all arguments given as [0], [1] are
    3636// set by SetVariables (in MDataValue).
  • trunk/MagicSoft/Mars/mhist/MHCompProb.cc

    r3325 r8076  
    4747#include "MParList.h"
    4848#include "MBinning.h"
    49 #include "MDataChain.h"
     49#include "MDataPhrase.h"
    5050
    5151#include "MMcEvt.hxx"
     
    9797void MHCompProb::Add(const char *rule, Int_t n, Float_t min, Float_t max)
    9898{
    99     MDataChain &chain = *new MDataChain(rule);
     99    MDataPhrase &chain = *new MDataPhrase(rule);
    100100    fData->Add(&chain);
    101101
Note: See TracChangeset for help on using the changeset viewer.