Ignore:
Timestamp:
06/19/07 10:35:33 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mjobs/MJSpectrum.cc

    r8222 r8582  
    13221322
    13231323    // check if output should be written
    1324     if (!fPathOut.IsNull())
    1325         fDisplay->SaveAsRoot(fPathOut);
    1326 
    1327     return kTRUE;
    1328 }
     1324    if (fPathOut.IsNull())
     1325        return kTRUE;
     1326
     1327    // Write the output
     1328    TObjArray cont;
     1329    cont.Add((TObject*)GetEnv());
     1330
     1331    if (fDisplay)
     1332        cont.Add(fDisplay);
     1333
     1334    return WriteContainer(cont, fPathOut, "RECREATE");
     1335}
Note: See TracChangeset for help on using the changeset viewer.