Changeset 8075 for trunk/MagicSoft


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

Legend:

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

    r7804 r8075  
    5555
    5656#include "MParList.h"
    57 #include "MDataChain.h"
     57//#include "MDataPhrase.h"
    5858#include "MDataArray.h"
    5959
     
    125125    while ((data=Next()))
    126126    {
    127         MDataChain *chain = new MDataChain(data->GetName());
     127        MDataPhrase *chain = new MDataPhrase(data->GetName());
    128128        if (!chain->PreProcess(plist))
    129129        {
  • trunk/MagicSoft/Mars/mfileio/MWriteAsciiFile.cc

    r4889 r8075  
    5454
    5555#include "MDataList.h"   // MDataList
    56 #include "MDataChain.h"  // MDataChain
     56#include "MDataPhrase.h" // MDataPhrase
    5757#include "MDataValue.h"  // MDataValue
    5858#include "MDataMember.h" // MDataMember
     
    247247//
    248248// Add a rule to be written as a column to the ascii file.
    249 // For more information about rules see MDataChain.
     249// For more information about rules see MDataPhrase.
    250250//
    251251//  eg: MWriteAsciiFile::AddColumn("log10(MHillas.fEnergy)/2")
     
    253253void MWriteAsciiFile::AddColumn(const TString rule)
    254254{
    255     MDataChain *chain = new MDataChain(rule);
     255    MDataPhrase *chain = new MDataPhrase(rule);
    256256    fList.Add(chain);
    257257}
  • trunk/MagicSoft/Mars/mhbase/MHMatrix.cc

    r8074 r8075  
    148148// Add a new column to the matrix. This can only be done before the first
    149149// event (row) was filled into the matrix. For the syntax of the rule
    150 // see MDataChain.
     150// see MDataPhrase.
    151151// Returns the index of the new column, -1 in case of failure.
    152152// (0, 1, 2, ... for the 1st, 2nd, 3rd, ...)
Note: See TracChangeset for help on using the changeset viewer.