Changeset 1711
- Timestamp:
- 01/16/03 08:22:58 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MHMatrix.cc
r1600 r1711 672 672 } 673 673 */ 674 675 } 674 } 675 676 // -------------------------------------------------------------------------- 677 // 678 // overload TOject member function read 679 // in order to reset the name of the object read 680 // 681 Int_t MHMatrix::Read(const char *name) 682 { 683 Int_t ret = TObject::Read(name); 684 SetName(name); 685 686 return ret; 687 } 688 689 // -------------------------------------------------------------------------- 690 691 692 -
trunk/MagicSoft/Mars/mhist/MHMatrix.h
r1600 r1711 41 41 42 42 Bool_t SetupFill(const MParList *pList); 43 43 44 Bool_t Fill(const MParContainer *par); 44 45 Bool_t Finalize(); … … 91 92 void ReduceNumberOfRows(UInt_t numrows, const TString opt); 92 93 94 Int_t Read(const char *name); 95 93 96 ClassDef(MHMatrix, 1) // Multidimensional Matrix to store events 94 97 }; 95 98 96 99 #endif 100
Note:
See TracChangeset
for help on using the changeset viewer.