Ignore:
Timestamp:
03/21/03 11:10:36 (22 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHMatrix.cc

    r1831 r1852  
    6868#include "MData.h"
    6969#include "MDataArray.h"
     70#include "MF.h"
     71
    7072
    7173ClassImp(MHMatrix);
     
    600602// --------------------------------------------------------------------------
    601603//
    602 Bool_t MHMatrix::Fill(MParList *plist, MTask *read)
     604Bool_t MHMatrix::Fill(MParList *plist, MTask *read, MF *filter)
    603605{
    604606    //
     
    614616
    615617    tlist.AddToList(read);
     618
     619
     620    if (filter)
     621      {
     622        tlist.AddToList(filter);
     623        fillh.SetFilter(filter);
     624      }
     625
    616626    tlist.AddToList(&fillh);
     627
    617628
    618629    MEvtLoop evtloop;
  • trunk/MagicSoft/Mars/mhist/MHMatrix.h

    r1829 r1852  
    2222class MParList;
    2323class MDataArray;
     24class MF;
    2425
    2526class MHMatrix : public MH
     
    9293    Double_t operator[](Int_t col) { return fM(fRow, col); }
    9394
    94     Bool_t Fill(MParList *plist, MTask *read);
     95    Bool_t Fill(MParList *plist, MTask *read, MF *filter=0);
    9596
    9697    TString GetDataMember() const;
  • trunk/MagicSoft/Mars/mhist/Makefile

    r1821 r1852  
    2323#
    2424INCLUDES = -I. -I../mbase -I../mraw -I../manalysis -I../mmc \
    25            -I../mgui -I../mgeom -I../mdata
     25           -I../mgui -I../mgeom -I../mdata -I../mfilter
    2626
    2727#------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.