Changeset a6c11a
- Timestamp:
- Jun 20, 2018, 8:21:03 AM (7 years ago)
- Branches:
- AutomationFragmentation_failures, Candidate_v1.6.1, ChemicalSpaceEvaluator
- Children:
- 3e334e
- Parents:
- 70caa3
- git-author:
- Frederik Heber <frederik.heber@…> (04/11/18 06:49:08)
- git-committer:
- Frederik Heber <frederik.heber@…> (06/20/18 08:21:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/FragmentationAutomationAction.cpp
r70caa3 ra6c11a 242 242 // Phase One: obtain ids 243 243 mpqccontroller.requestIds(NumberJobs); 244 if (mpqccontroller.getExitflag() != 0) 245 return Action::failure; 244 if (mpqccontroller.getExitflag() != 0) { 245 ELOG(1, "Could not request all ids from Server."); 246 return Action::failure; 247 } 246 248 247 249 // Phase Two: add MPQCJobs and send … … 269 271 wait_thread.join(); 270 272 stop(); 271 if (mpqccontroller.getExitflag() != 0) 272 return Action::failure; 273 if (mpqccontroller.getExitflag() != 0) { 274 ELOG(1, "Could not obtain all results from Server."); 275 return Action::failure; 276 } 273 277 274 278 mpqccontroller.getResults(shortrangedata); … … 439 443 // Phase Six b: calculate result 440 444 vmgcontroller.waitforResults(NoJobs); 441 if (vmgcontroller.getExitflag() != 0) 445 if (vmgcontroller.getExitflag() != 0) { 446 ELOG(1, "VMGFragmentController returned non-zero exit flag before getting results."); 442 447 return Action::failure; 448 } 443 449 vmgcontroller.getResults(longrangedata_both); 444 450 ASSERT( NoJobs == longrangedata_both.size(),
Note:
See TracChangeset
for help on using the changeset viewer.