Changeset 1711 for trunk/MagicSoft


Ignore:
Timestamp:
01/16/03 08:22:58 (22 years ago)
Author:
wittek
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
2 edited

Legend:

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

    r1600 r1711  
    672672    }
    673673*/
    674 
    675 }
     674}
     675
     676// --------------------------------------------------------------------------
     677//
     678// overload TOject member function read
     679// in order to reset the name of the object read
     680//
     681Int_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  
    4141
    4242    Bool_t SetupFill(const MParList *pList);
     43
    4344    Bool_t Fill(const MParContainer *par);
    4445    Bool_t Finalize();
     
    9192    void ReduceNumberOfRows(UInt_t numrows, const TString opt);
    9293
     94    Int_t Read(const char *name);
     95
    9396    ClassDef(MHMatrix, 1) // Multidimensional Matrix to store events
    9497};
    9598
    9699#endif
     100
Note: See TracChangeset for help on using the changeset viewer.