Changeset d74077 for src/molecule_template.hpp
- Timestamp:
- Jul 31, 2010, 3:23:10 PM (15 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:
- 8f4df1
- Parents:
- 5fbaeb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/molecule_template.hpp
r5fbaeb rd74077 19 19 /********************************************** declarations *******************************/ 20 20 21 // ================== Acting on all Vectors ========================== //22 23 // zero arguments24 template <typename res> void molecule::ActOnAllVectors( res (Vector::*f)() ) const25 {26 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {27 (((*iter)->node)->*f)();28 }29 };30 template <typename res> void molecule::ActOnAllVectors( res (Vector::*f)() const ) const31 {32 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {33 (((*iter)->node)->*f)();34 }35 };36 // one argument37 template <typename res, typename T> void molecule::ActOnAllVectors( res (Vector::*f)(T), T t ) const38 {39 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {40 (((*iter)->node)->*f)(t);41 }42 };43 template <typename res, typename T> void molecule::ActOnAllVectors( res (Vector::*f)(T) const, T t ) const44 {45 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {46 (((*iter)->node)->*f)(t);47 }48 };49 template <typename res, typename T> void molecule::ActOnAllVectors( res (Vector::*f)(T&), T &t ) const50 {51 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {52 (((*iter)->node)->*f)(t);53 }54 };55 template <typename res, typename T> void molecule::ActOnAllVectors( res (Vector::*f)(T&) const, T &t ) const56 {57 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {58 (((*iter)->node)->*f)(t);59 }60 };61 // two arguments62 template <typename res, typename T, typename U> void molecule::ActOnAllVectors( res (Vector::*f)(T, U), T t, U u ) const63 {64 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {65 (((*iter)->node)->*f)(t, u);66 }67 };68 template <typename res, typename T, typename U> void molecule::ActOnAllVectors( res (Vector::*f)(T, U) const, T t, U u ) const69 {70 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {71 (((*iter)->node)->*f)(t, u);72 }73 };74 // three arguments75 template <typename res, typename T, typename U, typename V> void molecule::ActOnAllVectors( res (Vector::*f)(T, U, V), T t, U u, V v) const76 {77 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {78 (((*iter)->node)->*f)(t, u, v);79 }80 };81 template <typename res, typename T, typename U, typename V> void molecule::ActOnAllVectors( res (Vector::*f)(T, U, V) const, T t, U u, V v) const82 {83 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {84 (((*iter)->node)->*f)(t, u, v);85 }86 };87 21 88 22 // ========================= Summing over each Atoms =================================== // … … 370 304 int inc = 1; 371 305 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 372 (*Setor) (&array[((*iter)-> type->*index)], &inc);306 (*Setor) (&array[((*iter)->getType()->*index)], &inc); 373 307 } 374 308 }; … … 376 310 { 377 311 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 378 (*Setor) (&array[((*iter)-> type->*index)], &value);312 (*Setor) (&array[((*iter)->getType()->*index)], &value); 379 313 } 380 314 }; … … 382 316 { 383 317 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 384 (*Setor) (&array[((*iter)-> type->*index)], value);318 (*Setor) (&array[((*iter)->getType()->*index)], value); 385 319 } 386 320 };
Note:
See TracChangeset
for help on using the changeset viewer.