Changeset 7091 for trunk/MagicSoft/Mars/mjobs
- Timestamp:
- 05/25/05 16:18:11 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mjobs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJStar.cc
r7071 r7091 368 368 if (!ismc) 369 369 { 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"); 377 374 } 378 375 //tlist2.AddToList(&fillb); -
trunk/MagicSoft/Mars/mjobs/MJob.cc
r7013 r7091 304 304 // empty 305 305 if (fname.IsNull()) 306 return fname;306 return ""; 307 307 308 308 // Expand path using environment … … 311 311 // Absolute path 312 312 if (fname[0]=='/') 313 { 314 gLog << dbg << "MJob::ExpandPath - Path " << fname << " is absolute." << endl; 313 315 return fname; 316 } 314 317 315 318 // relative path to file and file could be found 316 319 if (!gSystem->AccessPathName(fname, kFileExists)) 320 { 321 gLog << dbg << "MJob::ExpandPath - Relative path " << fname << " found..." << endl; 317 322 return fname; 323 } 318 324 319 325 // Now check gEnv and MARSSYS. gEnv can overwrite MARSSYS … … 330 336 path += fname; 331 337 338 gLog << dbg << "MJob::ExpandPath - Filename expanded to " << path << endl; 339 332 340 // return new path 333 341 return path;
Note:
See TracChangeset
for help on using the changeset viewer.