Changeset 564f17 for src/Actions
- Timestamp:
- Apr 28, 2021, 10:02:49 PM (5 years ago)
- Branches:
- Candidate_v1.7.0, stable
- Children:
- 5aa337
- Parents:
- e0e77e
- git-author:
- Frederik Heber <frederik.heber@…> (04/18/21 12:23:17)
- git-committer:
- Frederik Heber <frederik.heber@…> (04/28/21 22:02:49)
- Location:
- src/Actions
- Files:
-
- 5 edited
-
FragmentationAction/AnalyseFragmentationResultsAction.cpp (modified) (2 diffs)
-
GraphAction/ChemicalSpaceEvaluatorAction.cpp (modified) (1 diff)
-
PotentialAction/FitCompoundPotentialAction.cpp (modified) (1 diff)
-
PotentialAction/FitPotentialAction.cpp (modified) (1 diff)
-
PotentialAction/ParseHomologiesAction.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/AnalyseFragmentationResultsAction.cpp
re0e77e r564f17 380 380 } 381 381 value.edges = *edgeiter; 382 value.energy = boost::fusion::at_key<MPQCDataFused::energy_total>(energyiter->second.second); // contributions 382 value.contribution = boost::fusion::at_key<MPQCDataFused::energy_total>(energyiter->second.second); // contributions 383 value.fragmentenergy = boost::fusion::at_key<MPQCDataFused::energy_total>(energyiter->second.first); // contributions 383 384 384 385 // only store sampled grids if desired … … 442 443 output << "DEBUG: graph " << iter->first 443 444 << " has Fragment " << iter->second.fragment 444 << ", associated energy " << iter->second.energy;445 << ", associated energy contribution " << iter->second.contribution; 445 446 if (iter->second.containsGrids) 446 447 #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) -
src/Actions/GraphAction/ChemicalSpaceEvaluatorAction.cpp
re0e77e r564f17 535 535 std::max_element(range.first, range.second, HomologyContainer::compareEnergyContribution); 536 536 LOG(2, "INFO: Fragment graph " << nodes_graph << " has energy contributions from " 537 << lowest_contribution_graph->second. energy<< " Ht till "538 << highest_contribution_graph->second. energy<< " Ht, picking lowest.");539 total_energy += lowest_contribution_graph->second. energy;537 << lowest_contribution_graph->second.contribution << " Ht till " 538 << highest_contribution_graph->second.contribution << " Ht, picking lowest."); 539 total_energy += lowest_contribution_graph->second.contribution; 540 540 } 541 541 } -
src/Actions/PotentialAction/FitCompoundPotentialAction.cpp
re0e77e r564f17 78 78 LOG(1, "INFO: graph " << iter->first 79 79 << " has Fragment " << iter->second.fragment 80 << ", associated energy " << iter->second. energy80 << ", associated energy " << iter->second.contribution 81 81 << ", and sampled grid integral " << iter->second.charge_distribution.integral() 82 82 << "."); -
src/Actions/PotentialAction/FitPotentialAction.cpp
re0e77e r564f17 130 130 LOG(1, "INFO: graph " << iter->first 131 131 << " has Fragment " << iter->second.fragment 132 << ", associated energy " << iter->second. energy132 << ", associated energy " << iter->second.contribution 133 133 << ", and sampled grid integral " << iter->second.charge_distribution.integral() 134 134 << "."); -
src/Actions/PotentialAction/ParseHomologiesAction.cpp
re0e77e r564f17 87 87 std::max_element(range.first, range.second, HomologyContainer::compareEnergyContribution); 88 88 LOG(3, "DEBUG: Energy contributions range from " 89 << lowest_contribution_graph->second. energy<< " Ht to "90 << highest_contribution_graph->second. energy<< " Ht.");89 << lowest_contribution_graph->second.contribution << " Ht to " 90 << highest_contribution_graph->second.contribution << " Ht."); 91 91 olditer = iter; 92 92 }
Note:
See TracChangeset
for help on using the changeset viewer.
