Changeset 7753 for trunk/MagicSoft/Mars/ganymed.cc
- Timestamp:
- 06/26/06 11:20:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/ganymed.cc
r7444 r7753 264 264 // job.EnableStorageOfResult(); 265 265 266 if (!job.Process(seq)) 266 const Int_t rc = job.Process(seq); 267 if (rc<=0) 267 268 { 268 269 gLog << err << "Calculation of cuts failed." << endl << endl; 269 return 2; 270 } 270 271 //error coding for the automatic analysis (to be filled into the database) 272 switch (rc) 273 { 274 case 0: // MJCut failed 275 return 3; 276 case -1: // Source not found 277 return 4; 278 case -2: // FillRndSrcCam failed 279 return 5; 280 case -3: // Processing off-data failed 281 return 6; 282 case -4: // Processing on-data failed 283 return 7; 284 } 285 return 2; 286 } 287 271 288 if (kDebugEnv>0) 272 289 env.PrintUntouched();
Note:
See TracChangeset
for help on using the changeset viewer.