- Timestamp:
 - Sep 17, 2014, 10:34:02 PM (11 years ago)
 - Children:
 - 67a9d5
 - Parents:
 - 365a44
 - git-author:
 - Frederik Heber <heber@…> (05/22/14 16:19:40)
 - git-committer:
 - Frederik Heber <heber@…> (09/17/14 22:34:02)
 - Location:
 - src
 - Files:
 - 
      
- 4 edited
 
- 
          
  Actions/FragmentationAction/FragmentationAutomationAction.cpp (modified) (1 diff)
 - 
          
  Fragmentation/Automation/MPQCCommandFragmentController.cpp (modified) (2 diffs)
 - 
          
  Fragmentation/Automation/MPQCCommandFragmentController.hpp (modified) (2 diffs)
 - 
          
  Jobs/MPQCCommandJob.hpp (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/Actions/FragmentationAction/FragmentationAutomationAction.cpp
r365a44 r019b96 171 171 // Phase Two: add MPQCJobs and send 172 172 const size_t NoJobs = mpqccontroller.addJobsFromQueue( 173 params.executable.get().string(), 173 174 params.DoLongrange.get() ? MPQCData::DoSampleDensity : MPQCData::DontSampleDensity, 174 175 params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly,  - 
      
src/Fragmentation/Automation/MPQCCommandFragmentController.cpp
r365a44 r019b96 60 60 61 61 bool MPQCCommandFragmentController::addJobsFromQueue( 62 const std::string _command, 62 63 const MPQCData::DoLongrange_t _DoLongrange, 63 64 const MPQCData::DoValenceOnly_t _DoValenceOnly, … … 71 72 ++jobiter) { 72 73 MPQCCommandJob *job = boost::polymorphic_downcast<MPQCCommandJob *>(jobiter->get()); 74 job->resetCommand(_command); 73 75 // job->DoLongrange = _DoLongrange; 74 76 // job->DoValenceOnly = _DoValenceOnly;  - 
      
src/Fragmentation/Automation/MPQCCommandFragmentController.hpp
r365a44 r019b96 50 50 /** Command Controller to fill its hold of jobs from FragmentJobQueue. 51 51 * 52 * \param _command command to execute 52 53 * \param _DoSampleDensity whether to actually sample the resulting electronic density 53 54 * \param _DoValenceOnly whether to sample just the valence or the total elctron and nuclei density … … 56 57 */ 57 58 bool addJobsFromQueue( 59 const std::string _command, 58 60 const MPQCData::DoLongrange_t _DoLongrange, 59 61 const MPQCData::DoValenceOnly_t _DoValenceOnly,  - 
      
src/Jobs/MPQCCommandJob.hpp
r365a44 r019b96 51 51 52 52 private: 53 friend class MPQCCommandFragmentController; 53 54 //!> Allow controller access to changing the commands 54 55 void setCommand(const std::string &_command) … … 59 60 { suffix = _suffix; } 60 61 62 private: 61 63 //!> private default cstor only for serializatio 62 64 MPQCCommandJob();  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  