Changeset 1192 for trunk/MagicSoft


Ignore:
Timestamp:
01/18/02 11:20:08 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1191 r1192  
    77   * mbase/MWriteAsciiFile.cc:
    88     - fixed a bug: replaced GetSize by GetEntries
     9     
     10   * mbase/MReadTree.cc:
     11     - changed EnableBranch to accept "Master.Sub" also
    912
    1013
  • trunk/MagicSoft/Mars/mbase/MReadTree.cc

    r1159 r1192  
    216216{
    217217    EnableBranchChoosing();
    218     fChain->SetBranchStatus(name, kTRUE);
     218
     219    TNamed branch(name, "");
     220    SetBranchStatus(&branch, kTRUE);
    219221}
    220222
  • trunk/MagicSoft/Mars/mbase/MWriteAsciiFile.cc

    r1189 r1192  
    128128    MParContainer *cont = NULL;
    129129
    130     Int_t num = fContainer.GetEntriesFast();
     130    Int_t num = fContainer.GetEntries();
    131131
    132132    TIter Next(&fContainer);
Note: See TracChangeset for help on using the changeset viewer.