Changeset d8821e for src/Actions
- Timestamp:
- Jul 14, 2014, 11:16:23 AM (11 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:
- 2a03b0
- Parents:
- c73e35 (diff), a61dbb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- src/Actions
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ActionQueue.cpp
rc73e35 rd8821e 58 58 AR(new ActionRegistry()), 59 59 history(new ActionHistory), 60 CurrentAction(0), 60 61 #ifndef HAVE_ACTION_THREAD 61 CurrentAction(0)62 lastActionOk(true) 62 63 #else 63 CurrentAction(0),64 lastActionOk(true), 64 65 run_thread(boost::bind(&ActionQueue::run, this)), 65 66 run_thread_isIdle(true) … … 99 100 try { 100 101 newaction->call(); 102 lastActionOk = true; 101 103 } catch(ActionFailureException &e) { 102 104 std::cerr << "Action " << *boost::get_error_info<ActionNameString>(e) << " has failed." << std::endl; 103 105 World::getInstance().setExitFlag(5); 106 actionqueue.clear(); 107 tempqueue.clear(); 108 lastActionOk = false; 109 std::cerr << "ActionQueue cleared." << std::endl; 104 110 } 105 111 #else … … 157 163 actionqueue[CurrentAction]->call(); 158 164 pushStatus("SUCCESS: Action "+actionqueue[CurrentAction]->getName()+" successful."); 165 lastActionOk = true; 159 166 } catch(ActionFailureException &e) { 160 167 pushStatus("FAIL: Action "+*boost::get_error_info<ActionNameString>(e)+" has failed."); 161 168 World::getInstance().setExitFlag(5); 169 actionqueue.clear(); 170 tempqueue.clear(); 171 lastActionOk = false; 172 std::cerr << "ActionQueue cleared." << std::endl; 173 CurrentAction = (size_t)-1; 162 174 } 163 175 // access actionqueue, hence using mutex -
src/Actions/ActionQueue.hpp
rc73e35 rd8821e 123 123 void redoLast(); 124 124 125 /** Return status of last executed action. 126 * 127 * \return true - action executed correctly, false - else 128 */ 129 bool getLastActionOk() const 130 { return lastActionOk; } 131 125 132 #ifdef HAVE_ACTION_THREAD 126 133 boost::thread &getRunThread() … … 221 228 ActionQueue_t tempqueue; 222 229 230 //!> indicates that the last action has failed 231 bool lastActionOk; 232 223 233 #ifdef HAVE_ACTION_THREAD 224 234 //!> internal thread to call Actions -
src/Actions/CommandAction/ElementDbAction.cpp
rc73e35 rd8821e 41 41 #include "config.hpp" 42 42 #include "Element/element.hpp" // we need element because of serialization! 43 #include "Element/ion.hpp" // we need element because of serialization! 43 44 #include "Element/periodentafel.hpp" 44 45 #include "CodePatterns/Log.hpp" -
src/Actions/FragmentationAction/AnalyseFragmentationResultsAction.cpp
rc73e35 rd8821e 63 63 #include "Descriptors/AtomIdDescriptor.hpp" 64 64 #include "Fragmentation/Summation/Containers/FragmentationChargeDensity.hpp" 65 #include "Fragmentation/Summation/Containers/FragmentationLongRangeResults.hpp"66 65 #include "Fragmentation/Summation/Containers/FragmentationResultContainer.hpp" 67 66 #include "Fragmentation/Summation/Containers/FragmentationShortRangeResults.hpp" … … 78 77 #include "Fragmentation/Summation/writeIndexedTable.hpp" 79 78 #include "Fragmentation/Summation/writeTable.hpp" 80 #ifdef HAVE_VMG 79 #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) 80 #include "Fragmentation/Summation/Containers/FragmentationLongRangeResults.hpp" 81 81 #include "Fragmentation/Summation/Containers/VMGData.hpp" 82 82 #include "Fragmentation/Summation/Containers/VMGDataFused.hpp" … … 232 232 233 233 234 #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) 234 235 /** Print long range energy from received results. 235 236 * … … 261 262 } 262 263 } 264 #endif 263 265 264 266 void appendToHomologies( 265 267 const FragmentationShortRangeResults &shortrangeresults, 268 #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) 266 269 const FragmentationLongRangeResults &longrangeresults, 270 #endif 267 271 const bool storeGrids 268 272 ) … … 311 315 // only store sampled grids if desired 312 316 if (storeGrids) { 317 #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) 313 318 // obtain charge distribution 314 319 std::map<IndexSet::ptr, std::pair< MPQCDataGridMap_t, MPQCDataGridMap_t> >::const_iterator chargeiter … … 338 343 // ++iter) 339 344 // *iter -= offset; 345 #else 346 ELOG(1, "Long-range information in homology desired but long-range analysis capability not compiled in."); 347 #endif 340 348 } 341 349 values.insert( std::make_pair( graph, value) ); … … 362 370 << ", associated energy " << iter->second.energy; 363 371 if (iter->second.containsGrids) 372 #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) 364 373 output << ", and sampled grid integral " << iter->second.charge_distribution.integral(); 374 #else 375 output << ", and there are sampled grids but capability not compiled in"; 376 #endif 365 377 output << "."; 366 378 LOG(2, output.str()); … … 610 622 } 611 623 612 #if def HAVE_VMG624 #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) 613 625 if (DoLongrange) { 614 626 if ( World::getInstance().getAllAtoms().size() == 0) { … … 651 663 } 652 664 #else 653 if (DoLongrange) 665 if (DoLongrange) { 654 666 ELOG(2, "File contains long-range information but long-range analysis capability not compiled in."); 667 } 655 668 656 669 // append all keysets to homology file with short-range info only (without grids) 657 { 658 std::map<JobId_t, VMGData> longrangeData; 659 FragmentationLongRangeResults longrangeresults( 660 shortrangedata,longrangeData,keysets, forcekeysets); 661 appendToHomologies(shortrangeresults, longrangeresults, false); 662 } 670 appendToHomologies(shortrangeresults, false); 663 671 #endif 664 672 -
src/Actions/FragmentationAction/FragmentationAction.cpp
rc73e35 rd8821e 41 41 #include "Descriptors/AtomSelectionDescriptor.hpp" 42 42 #include "Fragmentation/Exporters/ExportGraph_ToFiles.hpp" 43 #ifdef HAVE_JOBMARKET44 43 #include "Fragmentation/Exporters/ExportGraph_ToJobs.hpp" 45 #endif46 44 #include "Fragmentation/Fragmentation.hpp" 47 45 #include "Fragmentation/Graph.hpp" … … 273 271 exporter(); 274 272 } else { 275 #ifdef HAVE_JOBMARKET276 273 // store molecule's fragment in FragmentJobQueue 277 274 ExportGraph_ToJobs exporter(TotalGraph, treatment, saturation); 278 275 exporter.setLevel(params.level.get()); 279 276 exporter(); 280 #else281 STATUS("No output file types specified and JobMarket support is not compiled in.");282 return Action::failure;283 #endif284 277 } 285 278 } -
src/Actions/FragmentationAction/FragmentationAutomationAction.cpp
rc73e35 rd8821e 53 53 #include "CodePatterns/Info.hpp" 54 54 #include "CodePatterns/Log.hpp" 55 56 #ifdef HAVE_JOBMARKET 55 57 #include "JobMarket/Jobs/FragmentJob.hpp" 58 #else 59 #include "Jobs/JobMarket/FragmentJob.hpp" 60 #endif 56 61 57 62 #include "Fragmentation/Automation/FragmentJobQueue.hpp" 63 #ifdef HAVE_JOBMARKET 58 64 #include "Fragmentation/Automation/MPQCFragmentController.hpp" 65 #else 66 #include "Fragmentation/Automation/MPQCCommandFragmentController.hpp" 67 #endif 59 68 #include "Fragmentation/Summation/Containers/FragmentationChargeDensity.hpp" 60 69 #include "Fragmentation/Summation/Containers/FragmentationLongRangeResults.hpp" … … 63 72 #include "Fragmentation/Summation/Containers/MPQCData.hpp" 64 73 #include "Fragmentation/KeySetsContainer.hpp" 65 #if def HAVE_VMG74 #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) 66 75 #include "Fragmentation/Automation/VMGDebugGridFragmentController.hpp" 67 76 #include "Fragmentation/Automation/VMGFragmentController.hpp" … … 99 108 } 100 109 110 #ifdef HAVE_JOBMARKET 101 111 static void updateSteps(Process &p, const size_t step, const size_t total) 102 112 { … … 104 114 p.setCurrStep(step); 105 115 } 116 #endif 106 117 107 118 ActionState::ptr FragmentationFragmentationAutomationAction::performCall() { … … 117 128 size_t Exitflag = 0; 118 129 std::map<JobId_t, MPQCData> shortrangedata; 130 #ifdef HAVE_JOBMARKET 119 131 { 120 132 const size_t NumberJobs = FragmentJobQueue::getInstance().size(); … … 126 138 127 139 // Phase Two: add MPQCJobs and send 128 const size_t NoJobs = mpqccontroller.addJobsFromQueue(140 const bool AddJobsStatus = mpqccontroller.addJobsFromQueue( 129 141 params.DoLongrange.get() ? MPQCData::DoSampleDensity : MPQCData::DontSampleDensity, 130 142 params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly 131 143 ); 132 LOG(1, "INFO: Added " << NoJobs << " from FragmentJobsQueue."); 144 if (AddJobsStatus) 145 LOG(1, "INFO: Added jobs from FragmentJobsQueue."); 146 else { 147 ELOG(1, "Adding jobs failed."); 148 return Action::failure; 149 } 133 150 mpqccontroller.run(); 134 151 … … 148 165 Exitflag += mpqccontroller.getExitflag(); 149 166 } 150 151 #ifdef HAVE_VMG 167 #else 168 { 169 const size_t NumberJobs = FragmentJobQueue::getInstance().size(); 170 MPQCCommandFragmentController mpqccontroller; 171 // Phase One: obtain ids: not needed, we have infinite pool 172 173 // Phase Two: add MPQCJobs and send 174 const size_t NoJobs = mpqccontroller.addJobsFromQueue( 175 params.DoLongrange.get() ? MPQCData::DoSampleDensity : MPQCData::DontSampleDensity, 176 params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly, 177 params.executable.get().string() 178 ); 179 LOG(1, "INFO: Added " << NoJobs << " from FragmentJobsQueue."); 180 mpqccontroller.run(); 181 182 // get back the results and place them in shortrangedata 183 mpqccontroller.getResults(shortrangedata); 184 ASSERT( shortrangedata.size() == NumberJobs, 185 "FragmentationFragmentationAutomationAction::performCall() - number of converted results " 186 +toString(shortrangedata.size())+" and number of jobs "+toString(NumberJobs)+ " differ."); 187 188 Exitflag += mpqccontroller.getExitflag(); 189 } 190 #endif 191 192 #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) 152 193 if (params.DoLongrange.get()) { 153 194 if ( World::getInstance().getAllAtoms().size() == 0) { -
src/Actions/GlobalListOfActions.hpp
rc73e35 rd8821e 122 122 (SelectionNotShapeByName) \ 123 123 (FragmentationAnalyseFragmentationResults) \ 124 (FragmentationFragmentationAutomation) \ 124 125 (FragmentationClearFragmentationResults) \ 125 126 (FragmentationFragmentation) \ 127 (FragmentationMolecularDynamics) \ 128 (FragmentationParseFragmentJobs) \ 126 129 (FragmentationStoreSaturatedFragment) \ 127 130 (PotentialFitParticleCharges) \ … … 137 140 (ShapeTranslateShape) 138 141 139 // we need to append the automation action in case we have the JobMarket 140 #ifdef HAVE_JOBMARKET 141 #define GLOBALLISTOFACTIONS_JOBMARKET \ 142 BOOST_PP_SEQ_PUSH_BACK( \ 143 BOOST_PP_SEQ_PUSH_BACK( \ 144 BOOST_PP_SEQ_PUSH_BACK( \ 145 GLOBALLISTOFACTIONS_initial, \ 146 FragmentationFragmentationAutomation \ 147 ), \ 148 FragmentationMolecularDynamics \ 149 ), \ 150 FragmentationParseFragmentJobs \ 151 ) 152 #else 153 #define GLOBALLISTOFACTIONS_JOBMARKET \ 154 GLOBALLISTOFACTIONS_initial 155 #endif /* HAVE_JOBMARKET */ 156 142 // extend list of actions in case levmar is available 157 143 #ifdef HAVE_LEVMAR 158 144 #define GLOBALLISTOFACTIONS_LEVMAR \ 159 145 BOOST_PP_SEQ_PUSH_BACK( \ 160 GLOBALLISTOFACTIONS_ JOBMARKET, \146 GLOBALLISTOFACTIONS_initial, \ 161 147 PotentialFitPotential \ 162 148 ) 163 149 #else 164 150 #define GLOBALLISTOFACTIONS_LEVMAR \ 165 GLOBALLISTOFACTIONS_ JOBMARKET151 GLOBALLISTOFACTIONS_initial 166 152 #endif /* HAVE_LEVMAR */ 167 153 -
src/Actions/Makefile.am
rc73e35 rd8821e 228 228 Actions/FragmentationAction/ClearFragmentationResultsAction.cpp \ 229 229 Actions/FragmentationAction/FragmentationAction.cpp \ 230 Actions/FragmentationAction/FragmentationAutomationAction.cpp \ 231 Actions/FragmentationAction/MolecularDynamicsAction.cpp \ 232 Actions/FragmentationAction/ParseFragmentJobsAction.cpp \ 230 233 Actions/FragmentationAction/StoreSaturatedFragmentAction.cpp 231 234 FRAGMENTATIONACTIONHEADER = \ … … 233 236 Actions/FragmentationAction/ClearFragmentationResultsAction.hpp \ 234 237 Actions/FragmentationAction/FragmentationAction.hpp \ 238 Actions/FragmentationAction/FragmentationAutomationAction.hpp \ 239 Actions/FragmentationAction/MolecularDynamicsAction.hpp \ 240 Actions/FragmentationAction/ParseFragmentJobsAction.hpp \ 235 241 Actions/FragmentationAction/StoreSaturatedFragmentAction.hpp 236 242 FRAGMENTATIONACTIONDEFS = \ … … 238 244 Actions/FragmentationAction/ClearFragmentationResultsAction.def \ 239 245 Actions/FragmentationAction/FragmentationAction.def \ 240 Actions/FragmentationAction/StoreSaturatedFragmentAction.def241 242 if CONDJOBMARKET243 FRAGMENTATIONACTIONSOURCE += \244 Actions/FragmentationAction/FragmentationAutomationAction.cpp \245 Actions/FragmentationAction/MolecularDynamicsAction.cpp \246 Actions/FragmentationAction/ParseFragmentJobsAction.cpp247 FRAGMENTATIONACTIONHEADER += \248 Actions/FragmentationAction/FragmentationAutomationAction.hpp \249 Actions/FragmentationAction/MolecularDynamicsAction.hpp \250 Actions/FragmentationAction/ParseFragmentJobsAction.hpp251 FRAGMENTATIONACTIONDEFS += \252 246 Actions/FragmentationAction/FragmentationAutomationAction.def \ 253 247 Actions/FragmentationAction/MolecularDynamicsAction.def \ 254 Actions/FragmentationAction/ParseFragmentJobsAction.def 255 endif248 Actions/FragmentationAction/ParseFragmentJobsAction.def \ 249 Actions/FragmentationAction/StoreSaturatedFragmentAction.def 256 250 257 251 GRAPHACTIONSOURCE = \ -
src/Actions/PotentialAction/FitParticleChargesAction.cpp
rc73e35 rd8821e 47 47 #include <boost/foreach.hpp> 48 48 #include <algorithm> 49 #include <functional> 49 50 #include <iostream> 50 51 #include <string> … … 128 129 return Action::failure; 129 130 } 131 132 // average partial charges over all fragments 130 133 HomologyContainer::const_iterator iter = range.first; 131 134 if (!iter->second.containsGrids) { … … 133 136 return Action::failure; 134 137 } 135 const Fragment &fragment = iter->second.fragment; 136 // const double &energy = iter->second.energy; 137 // const SamplingGrid &charge = iter->second.charge_distribution; 138 const SamplingGrid &potential = iter->second.potential_distribution; 139 140 // then we extract positions from fragment 141 PartialNucleiChargeFitter::positions_t positions; 142 Fragment::positions_t fragmentpositions = fragment.getPositions(); 143 positions.reserve(fragmentpositions.size()); 144 BOOST_FOREACH( Fragment::position_t pos, fragmentpositions) { 145 positions.push_back( Vector(pos[0], pos[1], pos[2]) ); 146 } 147 PartialNucleiChargeFitter fitter(potential, positions, params.radius.get()); 148 fitter(); 149 PartialNucleiChargeFitter::charges_t return_charges = fitter.getSolutionAsCharges_t(); 138 PartialNucleiChargeFitter::charges_t averaged_charges; 139 averaged_charges.resize(iter->second.fragment.getCharges().size(), 0.); 140 size_t NoFragments = 0; 141 for (; 142 iter != range.second; ++iter, ++NoFragments) { 143 if (!iter->second.containsGrids) { 144 ELOG(2, "This HomologyGraph does not contain sampled grids,\ndid you forget to add '--store-grids 1' to AnalyseFragmentResults."); 145 return Action::failure; 146 } 147 const Fragment &fragment = iter->second.fragment; 148 // const double &energy = iter->second.energy; 149 // const SamplingGrid &charge = iter->second.charge_distribution; 150 const SamplingGrid &potential = iter->second.potential_distribution; 151 if ((potential.level == 0) 152 || ((potential.begin[0] == potential.end[0]) 153 && (potential.begin[1] == potential.end[1]) 154 && (potential.begin[2] == potential.end[2]))) { 155 ELOG(1, "Sampled grid contains grid made of zero points."); 156 return Action::failure; 157 } 158 159 // then we extract positions from fragment 160 PartialNucleiChargeFitter::positions_t positions; 161 Fragment::positions_t fragmentpositions = fragment.getPositions(); 162 positions.reserve(fragmentpositions.size()); 163 BOOST_FOREACH( Fragment::position_t pos, fragmentpositions) { 164 positions.push_back( Vector(pos[0], pos[1], pos[2]) ); 165 } 166 PartialNucleiChargeFitter fitter(potential, positions, params.radius.get()); 167 fitter(); 168 PartialNucleiChargeFitter::charges_t return_charges = fitter.getSolutionAsCharges_t(); 169 std::transform( 170 return_charges.begin(), return_charges.end(), 171 averaged_charges.begin(), 172 averaged_charges.begin(), 173 std::plus<PartialNucleiChargeFitter::charge_t>()); 174 } 175 std::transform(averaged_charges.begin(),averaged_charges.end(), 176 averaged_charges.begin(), 177 std::bind1st(std::multiplies<PartialNucleiChargeFitter::charge_t>(),1./NoFragments) 178 ); 179 150 180 151 181 // output fitted charges 152 LOG(0, "STATUS: We have fitted the following charges " << return_charges << "."); 182 LOG(0, "STATUS: We have fitted the following charges " << averaged_charges 183 << ", averaged over " << NoFragments << " fragments."); 153 184 154 185 return Action::success; -
src/Actions/PotentialAction/FitPotentialAction.cpp
rc73e35 rd8821e 113 113 } 114 114 115 SerializablePotential::ParticleTypes_t getNumbersFromElements( 116 const std::vector<const element *> &fragment) 117 { 118 SerializablePotential::ParticleTypes_t fragmentnumbers; 119 std::transform(fragment.begin(), fragment.end(), std::back_inserter(fragmentnumbers), 120 boost::bind(&element::getAtomicNumber, _1)); 121 return fragmentnumbers; 122 } 123 124 115 125 ActionState::ptr PotentialFitPotentialAction::performCall() { 116 126 // fragment specifies the homology fragment to use 117 SerializablePotential::ParticleTypes_t fragmentnumbers; 118 { 119 const std::vector<const element *> &fragment = params.fragment.get(); 120 std::transform(fragment.begin(), fragment.end(), std::back_inserter(fragmentnumbers), 121 boost::bind(&element::getAtomicNumber, _1)); 122 } 127 SerializablePotential::ParticleTypes_t fragmentnumbers = 128 getNumbersFromElements(params.fragment.get()); 123 129 124 130 // either charges and a potential is specified or a file … … 158 164 } else { 159 165 // charges specify the potential type 160 SerializablePotential::ParticleTypes_t chargenumbers; 161 { 162 const std::vector<const element *> &charges = params.charges.get(); 163 std::transform(charges.begin(), charges.end(), std::back_inserter(chargenumbers), 164 boost::bind(&element::getAtomicNumber, _1)); 165 } 166 SerializablePotential::ParticleTypes_t chargenumbers = 167 getNumbersFromElements(params.charges.get()); 166 168 167 169 LOG(0, "STATUS: I'm training now a " << params.potentialtype.get() … … 240 242 size_t counter=1; 241 243 if (DoLog(3)) { 242 const FunctionModel::arguments_t &inputs = data.get TrainingInputs()[0];244 const FunctionModel::arguments_t &inputs = data.getAllArguments()[0]; 243 245 for (FunctionModel::arguments_t::const_iterator iter = inputs.begin(); 244 246 iter != inputs.end(); ++iter) { … … 265 267 } 266 268 269 if ((params.threshold.get() < 1) && (params.best_of_howmany.isSet())) 270 ELOG(2, "threshold parameter always overrules max_runs, both are specified."); 267 271 // now perform the function approximation by optimizing the model function 268 272 FunctionApproximation approximator(data, *model); … … 304 308 305 309 // create a map of each fragment with error. 306 typedef std::multimap< double, size_t > WorseFragmentMap_t;307 WorseFragmentMap_t WorseFragmentMap;308 310 HomologyContainer::range_t fragmentrange = homologies.getHomologousGraphs(graph); 309 // fragments make it into the container in reversed order, hence count from top down 310 size_t index= std::distance(fragmentrange.first, fragmentrange.second)-1; 311 for (HomologyContainer::const_iterator iter = fragmentrange.first; 312 iter != fragmentrange.second; 313 ++iter) { 314 const Fragment& fragment = iter->second.fragment; 315 const double &energy = iter->second.energy; 316 317 // create arguments from the fragment 318 FunctionModel::extractor_t extractor = model->getSpecificExtractor(); 319 FunctionModel::arguments_t args = extractor(fragment, 1); 320 321 // calculate value from potential 322 const double fitvalue = (*model)(args)[0]; 323 324 // insert difference into map 325 const double error = fabs(energy - fitvalue); 326 WorseFragmentMap.insert( std::make_pair( error, index-- ) ); 327 328 { 329 // give only the distances in the debugging text 330 std::stringstream streamargs; 331 BOOST_FOREACH (argument_t arg, args) { 332 streamargs << " " << arg.distance*AtomicLengthToAngstroem; 333 } 334 LOG(2, "DEBUG: frag.#" << index+1 << "'s error is |" << energy << " - " << fitvalue 335 << "| = " << error << " for args " << streamargs.str() << "."); 336 } 337 } 311 TrainingData::L2ErrorConfigurationIndexMap_t WorseFragmentMap = 312 data.getWorstFragmentMap(*model, fragmentrange); 338 313 LOG(0, "RESULT: WorstFragmentMap " << WorseFragmentMap << "."); 339 314
Note:
See TracChangeset
for help on using the changeset viewer.