Changeset 1549


Ignore:
Timestamp:
10/18/02 08:25:00 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1546 r1549  
    11                                                                  -*-*- END -*-*-
     2 2002/10/18: Thomas Bretz
     3
     4   * mfileio/MWriteRootFile.cc
     5     - make sure that the tree is created in the corresponding file
     6
     7
     8
     9 2002/10/17: Thomas Bretz
     10
     11   * mraw/MRawEvtPixelIter.[h,cc]
     12     - added function to get the sum of squares of the samples
     13
     14
    215
    316 2002/10/16: Abelardo Moralejo
     
    1023   * macros/MagicHillas.C
    1124     - changed accordingly to changes above.
     25
     26
    1227
    1328 2002/10/16: Thomas Bretz
  • trunk/MagicSoft/Mars/mfileio/MWriteRootFile.cc

    r1488 r1549  
    146146    while ((t=(TTree*)Next()))
    147147        *fLog << t->GetName() << ": \t" << t->GetEntries() << " entries." << endl;
     148    *fLog << endl;
    148149}
    149150
     
    265266            // And add the tree to the list of trees
    266267            //
     268            TDirectory *save = gDirectory;
     269            fOut->cd();
     270
    267271            tree = new TTree(tname, ttitle ? ttitle : tname);
    268272            fTrees.AddLast(tree);
     273
     274            gDirectory = save;
    269275
    270276            *fLog << "Created Tree " << tname << "." << endl;
Note: See TracChangeset for help on using the changeset viewer.