Ignore:
Timestamp:
Jul 31, 2010, 3:23:10 PM (15 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:
8f4df1
Parents:
5fbaeb
Message:

Member variable Vector and element of class atom are now private.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/molecule_template.hpp

    r5fbaeb rd74077  
    1919/********************************************** declarations *******************************/
    2020
    21 // ================== Acting on all Vectors ========================== //
    22 
    23 // zero arguments
    24 template <typename res> void molecule::ActOnAllVectors( res (Vector::*f)() ) const
    25     {
    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 ) const
    31     {
    32   for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
    33     (((*iter)->node)->*f)();
    34   }
    35 };
    36 // one argument
    37 template <typename res, typename T> void molecule::ActOnAllVectors( res (Vector::*f)(T), T t ) const
    38 {
    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 ) const
    44 {
    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 ) const
    50 {
    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 ) const
    56 {
    57   for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
    58     (((*iter)->node)->*f)(t);
    59   }
    60 };
    61 // two arguments
    62 template <typename res, typename T, typename U> void molecule::ActOnAllVectors( res (Vector::*f)(T, U), T t, U u ) const
    63 {
    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 ) const
    69 {
    70   for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
    71     (((*iter)->node)->*f)(t, u);
    72   }
    73 };
    74 // three arguments
    75 template <typename res, typename T, typename U, typename V> void molecule::ActOnAllVectors( res (Vector::*f)(T, U, V), T t, U u, V v) const
    76 {
    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) const
    82 {
    83   for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
    84     (((*iter)->node)->*f)(t, u, v);
    85   }
    86 };
    8721
    8822// ========================= Summing over each Atoms =================================== //
     
    370304  int inc = 1;
    371305  for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
    372     (*Setor) (&array[((*iter)->type->*index)], &inc);
     306    (*Setor) (&array[((*iter)->getType()->*index)], &inc);
    373307  }
    374308};
     
    376310{
    377311  for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
    378     (*Setor) (&array[((*iter)->type->*index)], &value);
     312    (*Setor) (&array[((*iter)->getType()->*index)], &value);
    379313  }
    380314};
     
    382316{
    383317  for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
    384     (*Setor) (&array[((*iter)->type->*index)], value);
     318    (*Setor) (&array[((*iter)->getType()->*index)], value);
    385319  }
    386320};
Note: See TracChangeset for help on using the changeset viewer.