Ignore:
Timestamp:
10/16/06 19:43:37 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MEnergyEstimate.cc

    r7149 r8073  
    3434//             "(4.4*MHillas.fSize*MHillas.fLength) + (5.5*MHillasSrc.fDist*MHillas.fLength)");
    3535//
    36 // For description of rules, see MDataChain.
     36// For description of rules, see MDataPhrase.
    3737//
    3838// The default rule is "MMcEvt.fEnergy"
  • trunk/MagicSoft/Mars/manalysis/MParameterCalc.cc

    r7150 r8073  
    3333//             "(4.4*MHillas.fSize*MHillas.fLength) + (5.5*MHillasSrc.fDist*MHillas.fLength)");
    3434//
    35 // For description of rules, see MDataChain.
     35// For description of rules, see MDataPhrase.
    3636//
    3737// Output:
     
    4343#include "MParList.h"
    4444
    45 #include "MDataChain.h"
     45#include "MDataPhrase.h"
    4646#include "MParameters.h"
    4747
     
    6363    fTitle = title ? title : "Task to calculate a MParameterD";
    6464
    65     fData = new MDataChain(def);
     65    fData = new MDataPhrase(def);
    6666}
    6767
     
    7777// --------------------------------------------------------------------------
    7878//
    79 // Delete fData. Initialize a new MDataChain with rule.
     79// Delete fData. Initialize a new MDataPhrase with rule.
    8080// Returns if fData->IsValid()
    8181//
     
    8383{
    8484    delete fData;
    85     fData = new MDataChain(rule);
     85    fData = new MDataPhrase(rule);
    8686
    8787    return fData->IsValid();
     
    183183//     MyEstimator.1: 5.5
    184184//
    185 // For more details see MDataChain::ReadEnv
     185// For more details see MDataPhrase::ReadEnv
    186186//
    187187Int_t MParameterCalc::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
    188188{
    189     MDataChain *f = new MDataChain;
     189    MDataPhrase *f = new MDataPhrase;
    190190    f->SetName(fName);
    191191
  • trunk/MagicSoft/Mars/manalysis/MParameterCalc.h

    r7150 r8073  
    1212{
    1313private:
    14     MData       *fData;          //-> Input MDataChain with rule
     14    MData       *fData;          //-> Input MDataPhrase with rule
    1515    MParameterD *fParameter;     //!  Output parameter
    1616
Note: See TracChangeset for help on using the changeset viewer.