Ignore:
Timestamp:
08/23/04 09:06:37 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mfileio
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfileio/MReadTree.h

    r3682 r4698  
    7171    virtual Int_t AddFile(const char *fname, Int_t entries=-1);
    7272    virtual Int_t AddFiles(const MReadTree &read);
     73    Int_t AddFiles(MDirIter &dir) { return MRead::AddFiles(dir); }
    7374
    7475    Int_t PreProcess(MParList *pList);
  • trunk/MagicSoft/Mars/mfileio/MWriteRootFile.cc

    r4694 r4698  
    775775// --------------------------------------------------------------------------
    776776//
     777// cd into file. See TFile::cd()
     778//
     779Bool_t MWriteRootFile::cd(const char *path)
     780{
     781    return fOut->cd(path);
     782}
     783
     784// --------------------------------------------------------------------------
     785//
    777786// Implementation of SavePrimitive. Used to write the call to a constructor
    778787// to a macro. In the original root implementation it is used to write
  • trunk/MagicSoft/Mars/mfileio/MWriteRootFile.h

    r4694 r4698  
    128128    void Print(Option_t *t=NULL) const;
    129129
     130    Bool_t cd(const char *path=0);
     131
    130132    ClassDef(MWriteRootFile, 1) // Task to write data into a root file
    131133};
Note: See TracChangeset for help on using the changeset viewer.