Changeset 8539 for trunk/MagicSoft/Mars/mjobs
- Timestamp:
- 05/25/07 13:48:15 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJob.cc
r8518 r8539 83 83 ClearEnv(); 84 84 85 const Bool_t fileexist = !gSystem->AccessPathName(env, kFileExists);86 if (!fileexist)87 {88 *fLog << err << "ERROR - Resource file '" << env << "' not found... no resources applied." << endl;89 return kFALSE;90 }91 92 85 fEnv = new MEnv(env); 93 86 SetBit(kIsOwner); 87 88 if (!fEnv->IsValid()) 89 { 90 ClearEnv(); 91 return kFALSE; 92 } 94 93 95 94 fEnvPrefix = prefix;
Note:
See TracChangeset
for help on using the changeset viewer.