Ignore:
Timestamp:
05/25/05 16:18:11 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mjobs
Files:
2 edited

Legend:

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

    r7071 r7091  
    368368    if (!ismc)
    369369    {
    370         tlist2.AddToList(&rate);
    371         //tlist2.AddToList(&rate1);
    372         tlist2.AddToList(&fillvs);
    373         //tlist2.AddToList(&cont1);
    374         //tlist2.AddToList(&cont2);
    375         tlist2.AddToList(&fill8);
    376         tlist2.AddToList(&fill9);
     370        tlist2.AddToList(&rate,   "Events");
     371        tlist2.AddToList(&fillvs, "Events");
     372        tlist2.AddToList(&fill8,  "Events");
     373        tlist2.AddToList(&fill9,  "Events");
    377374    }
    378375    //tlist2.AddToList(&fillb);
  • trunk/MagicSoft/Mars/mjobs/MJob.cc

    r7013 r7091  
    304304    // empty
    305305    if (fname.IsNull())
    306         return fname;
     306        return "";
    307307
    308308    // Expand path using environment
     
    311311    // Absolute path
    312312    if (fname[0]=='/')
     313    {
     314        gLog << dbg << "MJob::ExpandPath - Path " << fname << " is absolute." << endl;
    313315        return fname;
     316    }
    314317
    315318    // relative path to file and file could be found
    316319    if (!gSystem->AccessPathName(fname, kFileExists))
     320    {
     321        gLog << dbg << "MJob::ExpandPath - Relative path " << fname << " found..." << endl;
    317322        return fname;
     323    }
    318324
    319325    // Now check gEnv and MARSSYS. gEnv can overwrite MARSSYS
     
    330336    path += fname;
    331337
     338    gLog << dbg << "MJob::ExpandPath - Filename expanded to " << path << endl;
     339
    332340    // return new path
    333341    return path;
Note: See TracChangeset for help on using the changeset viewer.