From: hristov Date: Fri, 19 Jul 2002 12:46:05 +0000 (+0000) Subject: Write file instead of closing it X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=3c2f4fb26336d399497fde573f214789b990f5b1 Write file instead of closing it --- diff --git a/STEER/AliRunDigitizer.cxx b/STEER/AliRunDigitizer.cxx index 5aa2622e2c2..bcf9ee76bcf 100644 --- a/STEER/AliRunDigitizer.cxx +++ b/STEER/AliRunDigitizer.cxx @@ -15,6 +15,9 @@ /* $Log$ +Revision 1.18 2002/07/17 08:59:39 jchudoba +Do not delete subtasks when AliRunDigitizer is deleted. Owner should delete them itself. + Revision 1.17 2002/07/16 13:47:53 jchudoba Add methods to get access to names of files used in merging. @@ -478,7 +481,7 @@ void AliRunDigitizer::FinishGlobal() fInputFiles[fCopyTreesFromInput]->Get("TE")->Clone()->Write(); gAlice->Write(); } - fOutput->Close(); + fOutput->Write(); }