Changeset 1549
- Timestamp:
- 10/18/02 08:25:00 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1546 r1549 1 1 -*-*- 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 2 15 3 16 2002/10/16: Abelardo Moralejo … … 10 23 * macros/MagicHillas.C 11 24 - changed accordingly to changes above. 25 26 12 27 13 28 2002/10/16: Thomas Bretz -
trunk/MagicSoft/Mars/mfileio/MWriteRootFile.cc
r1488 r1549 146 146 while ((t=(TTree*)Next())) 147 147 *fLog << t->GetName() << ": \t" << t->GetEntries() << " entries." << endl; 148 *fLog << endl; 148 149 } 149 150 … … 265 266 // And add the tree to the list of trees 266 267 // 268 TDirectory *save = gDirectory; 269 fOut->cd(); 270 267 271 tree = new TTree(tname, ttitle ? ttitle : tname); 268 272 fTrees.AddLast(tree); 273 274 gDirectory = save; 269 275 270 276 *fLog << "Created Tree " << tname << "." << endl;
Note:
See TracChangeset
for help on using the changeset viewer.