Changeset ac9ca4 for src/Fragmentation/Automation
- Timestamp:
- Apr 15, 2013, 10:28:22 AM (12 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 4f44ae
- Parents:
- dd0c8f
- git-author:
- Frederik Heber <heber@…> (03/04/13 13:54:11)
- git-committer:
- Frederik Heber <heber@…> (04/15/13 10:28:22)
- Location:
- src/Fragmentation/Automation
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Automation/MPQCFragmentController.cpp
rdd0c8f rac9ca4 45 45 #include "Box.hpp" 46 46 #include "Helpers/defs.hpp" 47 #include "Fragmentation/Automation/FragmentJobQueue.hpp" 47 48 #include "Jobs/MPQCJob.hpp" 48 49 #include "LinearAlgebra/RealSpaceMatrix.hpp" 49 50 #include "World.hpp" 50 51 51 bool MPQCFragmentController::addJobsFromFiles( 52 const std::string &executable, 53 const std::vector< boost::filesystem::path > &jobfiles) 52 bool MPQCFragmentController::addJobsFromQueue() 54 53 { 55 std::vector<FragmentJob::ptr> jobs; 56 for (std::vector< boost::filesystem::path >::const_iterator iter = jobfiles.begin(); 57 iter != jobfiles .end(); ++iter) { 58 const std::string &filename = (*iter).string(); 59 if (boost::filesystem::exists(filename)) { 60 const JobId_t next_id = getAvailableId(); 61 LOG(1, "INFO: Creating MPQCCommandJob with filename'" 62 +filename+"', and id "+toString(next_id)+"."); 63 parsejob(jobs, executable, filename, next_id); 64 } else { 65 ELOG(1, "Fragment job "+filename+" does not exist."); 66 return false; 67 } 54 // give them all valid ids 55 std::vector<FragmentJob::ptr> newjobs = FragmentJobQueue::getInstance().getJobs(); 56 for (std::vector<FragmentJob::ptr>::iterator jobiter = newjobs.begin(); 57 jobiter != newjobs.end(); 58 ++jobiter) { 59 changeJobId((*jobiter), getAvailableId()); 68 60 } 69 addJobs(jobs); 61 // add the jobs 62 addJobs(newjobs); 63 64 return (newjobs.size() != 0); 65 } 66 67 void MPQCFragmentController::run() 68 { 69 // take jobs from queue and add them 70 70 sendJobs(host, port); 71 71 RunService("Adding MPQCJobs"); 72 73 return true;74 72 } 75 76 /** Creates a MPQCCommandJob with argument \a filename.77 *78 * @param jobs created job is added to this vector79 * @param command mpqc command to execute80 * @param filename filename being argument to job81 * @param nextid id for this job82 */83 void MPQCFragmentController::parsejob(84 std::vector<FragmentJob::ptr> &jobs,85 const std::string &command,86 const std::string &filename,87 const JobId_t nextid)88 {89 std::ifstream file;90 file.open(filename.c_str());91 ASSERT( file.good(), "parsejob() - file "+filename+" does not exist.");92 std::string output((std::istreambuf_iterator<char>(file)),93 std::istreambuf_iterator<char>());94 double begin[NDIM] = { 0., 0., 0. };95 RealSpaceMatrix M = World::getInstance().getDomain().getM();96 M *= 1./AtomicLengthToAngstroem; // scale to atomic length units97 const double size = M.at(0,0);98 double end[NDIM] = { size, size, size };99 ASSERT( M.determinant() == size*size*size,100 "parsejob() - current domain matrix "+toString(M)+" is not cubic.");101 FragmentJob::ptr testJob( new MPQCJob(nextid, output, begin, end, level) );102 jobs.push_back(testJob);103 file.close();104 LOG(1, "INFO: Added MPQCCommandJob from file "+filename+".");105 } -
src/Fragmentation/Automation/MPQCFragmentController.hpp
rdd0c8f rac9ca4 34 34 public: 35 35 MPQCFragmentController(boost::asio::io_service &io_service) : 36 SpecificFragmentController(io_service), 37 level(5) 36 SpecificFragmentController(io_service) 38 37 {} 39 38 virtual ~MPQCFragmentController() 40 39 {} 41 40 42 bool addJobsFromFiles( 43 const std::string &executable, 44 const std::vector< boost::filesystem::path > &jobfiles); 41 /** Command Controller to fill its hold of jobs from FragmentJobQueue. 42 * 43 * \return true - jobs obtained, false - queue empty 44 */ 45 bool addJobsFromQueue(); 46 47 /** Get results map of calculated jobs. 48 * 49 * \param fragmentData contains map of results on output 50 */ 45 51 void getResults(std::map<JobId_t, MPQCData> &fragmentData) { 46 52 SpecificFragmentController::getResults<MPQCData>(fragmentData); 47 53 } 48 54 49 void setLevel(const size_t _level) { level = _level; } 50 51 private: 52 void parsejob( 53 std::vector<FragmentJob::ptr> &jobs, 54 const std::string &command, 55 const std::string &filename, 56 const JobId_t nextid); 57 58 private: 59 //!> resolution of sampled electron density as \f$2^{\mathrm{level}}\f$ 60 size_t level; 55 /** Runs the service. 56 * 57 * Here, we finalize each job's id and push them to the server. 58 */ 59 void run(); 61 60 }; 62 61 -
src/Fragmentation/Automation/Makefile.am
rdd0c8f rac9ca4 6 6 Fragmentation/Automation/FragmentationChargeDensity.cpp \ 7 7 Fragmentation/Automation/FragmentationResults.cpp \ 8 Fragmentation/Automation/FragmentJobQueue.cpp \ 8 9 Fragmentation/Automation/MPQCFragmentController.cpp \ 9 10 Fragmentation/Automation/parseKeySetFile.cpp \ … … 21 22 Fragmentation/Automation/FragmentationChargeDensity.hpp \ 22 23 Fragmentation/Automation/FragmentationResults.hpp \ 24 Fragmentation/Automation/FragmentJobQueue.hpp \ 23 25 Fragmentation/Automation/MPQCFragmentController.hpp \ 24 26 Fragmentation/Automation/parseKeySetFile.hpp \
Note:
See TracChangeset
for help on using the changeset viewer.