Ignore:
Timestamp:
Apr 15, 2013, 10:28:22 AM (12 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

FragmentAction creates FragmentJobs if no output-types are given.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Automation/MPQCFragmentController.cpp

    rdd0c8f rac9ca4  
    4545#include "Box.hpp"
    4646#include "Helpers/defs.hpp"
     47#include "Fragmentation/Automation/FragmentJobQueue.hpp"
    4748#include "Jobs/MPQCJob.hpp"
    4849#include "LinearAlgebra/RealSpaceMatrix.hpp"
    4950#include "World.hpp"
    5051
    51 bool MPQCFragmentController::addJobsFromFiles(
    52     const std::string &executable,
    53     const std::vector< boost::filesystem::path > &jobfiles)
     52bool MPQCFragmentController::addJobsFromQueue()
    5453{
    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());
    6860  }
    69   addJobs(jobs);
     61  // add the jobs
     62  addJobs(newjobs);
     63
     64  return (newjobs.size() != 0);
     65}
     66
     67void MPQCFragmentController::run()
     68{
     69  // take jobs from queue and add them
    7070  sendJobs(host, port);
    7171  RunService("Adding MPQCJobs");
    72 
    73   return true;
    7472}
    75 
    76 /** Creates a MPQCCommandJob with argument \a filename.
    77  *
    78  * @param jobs created job is added to this vector
    79  * @param command mpqc command to execute
    80  * @param filename filename being argument to job
    81  * @param nextid id for this job
    82  */
    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 units
    97   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 }
Note: See TracChangeset for help on using the changeset viewer.