Changeset 1852 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 03/21/03 11:10:36 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MHMatrix.cc
r1831 r1852 68 68 #include "MData.h" 69 69 #include "MDataArray.h" 70 #include "MF.h" 71 70 72 71 73 ClassImp(MHMatrix); … … 600 602 // -------------------------------------------------------------------------- 601 603 // 602 Bool_t MHMatrix::Fill(MParList *plist, MTask *read )604 Bool_t MHMatrix::Fill(MParList *plist, MTask *read, MF *filter) 603 605 { 604 606 // … … 614 616 615 617 tlist.AddToList(read); 618 619 620 if (filter) 621 { 622 tlist.AddToList(filter); 623 fillh.SetFilter(filter); 624 } 625 616 626 tlist.AddToList(&fillh); 627 617 628 618 629 MEvtLoop evtloop; -
trunk/MagicSoft/Mars/mhist/MHMatrix.h
r1829 r1852 22 22 class MParList; 23 23 class MDataArray; 24 class MF; 24 25 25 26 class MHMatrix : public MH … … 92 93 Double_t operator[](Int_t col) { return fM(fRow, col); } 93 94 94 Bool_t Fill(MParList *plist, MTask *read );95 Bool_t Fill(MParList *plist, MTask *read, MF *filter=0); 95 96 96 97 TString GetDataMember() const; -
trunk/MagicSoft/Mars/mhist/Makefile
r1821 r1852 23 23 # 24 24 INCLUDES = -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 26 26 27 27 #------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.