Changeset 266237 for src/molecule.hpp


Ignore:
Timestamp:
Oct 18, 2009, 2:51:38 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:
174e0e
Parents:
b8b75d
git-author:
Frederik Heber <heber@…> (10/18/09 14:15:37)
git-committer:
Frederik Heber <heber@…> (10/18/09 14:51:38)
Message:

Huge refactoring: molecule::ListOfBondsPerAtom and molecule::NumberOfBondsPerAtom removed, atom::ListOfBonds introduced. Unit Test for ListOfBonds manipulation introduced.

  • changes to builder.cpp: removed CreateListOfBondsPerAtom() calls, as the creation of the global arrays is not necessary anymore
  • changes to LinkedCell: LinkedCell::CheckBounds(int[NDIM]) does not admonish out of bonds as this is not desired for the local offset which may become out of bounds.
  • changes to lists.hpp templates: BUGFIX: unlink() now sets ->next and ->previous to NULL, cleanup() uses removedwithoutcheck()
  • new templates for molecule.hpp: SumPerAtom() allows for summation of the return value of atom:...() member fiunctions. This is needed e.g. for atom::CorrectBondDegree()

Signed-off-by: Frederik Heber <heber@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/molecule.hpp

    rb8b75d r266237  
    8686    bond *first;        //!< start of bond list
    8787    bond *last;         //!< end of bond list
    88     bond ***ListOfBondsPerAtom; //!< pointer list for each atom and each bond it has
    8988    int MDSteps;        //!< The number of MD steps in Trajectories
    90     int *NumberOfBondsPerAtom;  //!< Number of Bonds each atom has
    9189    int AtomCount;          //!< number of atoms, brought up-to-date by CountAtoms()
    9290    int BondCount;          //!< number of atoms, brought up-to-date by CountBonds()
     
    190188  template <typename T> void SetAtomValueToIndexedArray ( T *array, int element::*index, T atom::*value );
    191189
     190  template <typename res> res SumPerAtom(res (atom::*f)() );
     191  template <typename res> res SumPerAtom(res (atom::*f)() const );
     192  template <typename res> res SumPerAtom(res (atom::*f)() ) const;
     193  template <typename res> res SumPerAtom(res (atom::*f)() const ) const;
     194  template <typename T, typename res> res SumPerAtom(res (atom::*f)(T) , T t );
     195  template <typename T, typename res> res SumPerAtom(res (atom::*f)(T) const, T t );
     196  template <typename T, typename res> res SumPerAtom(res (atom::*f)(T) , T t ) const;
     197  template <typename T, typename res> res SumPerAtom(res (atom::*f)(T) const, T t ) const;
     198
    192199  /// remove atoms from molecule.
    193200  bool AddAtom(atom *pointer);
     
    199206  atom * AddCopyAtom(atom *pointer);
    200207  bool AddXYZFile(string filename);
    201   bool AddHydrogenReplacementAtom(ofstream *out, bond *Bond, atom *BottomOrigin, atom *TopOrigin, atom *TopReplacement, bond **BondList, int NumBond, bool IsAngstroem);
     208  bool AddHydrogenReplacementAtom(ofstream *out, bond *Bond, atom *BottomOrigin, atom *TopOrigin, atom *TopReplacement, bool IsAngstroem);
    202209  bond * AddBond(atom *first, atom *second, int degree = 1);
    203210  bool RemoveBond(bond *pointer);
     
    247254  void CreateAdjacencyListFromDbondFile(ofstream *out, ifstream *output);
    248255  void CreateAdjacencyList(ofstream *out, double bonddistance, bool IsAngstroem);
    249   void CreateListOfBondsPerAtom(ofstream *out);
    250256  int CorrectBondDegree(ofstream *out);
    251257  void OutputBondsList(ofstream *out);
    252   int CountAtomsBonds(int nr);
     258  void CyclicBondAnalysis();
     259  void OutputGraphInfoPerAtom(ofstream *out);
     260  void OutputGraphInfoPerBond(ofstream *out);
    253261
    254262
     
    260268  void SetNextComponentNumber(atom *vertex, int nr);
    261269  void InitComponentNumbers();
    262   void OutputComponentNumber(ofstream *out, atom *vertex);
    263270  void ResetAllBondsToUnused();
    264271  void ResetAllAtomNumbers();
     
    266273  bool CheckForConnectedSubgraph(ofstream *out, KeySet *Fragment);
    267274  string GetColor(enum Shading color);
     275  bond * CopyBond(atom *left, atom *right, bond *CopyBond);
     276
    268277
    269278  molecule *CopyMolecule();
Note: See TracChangeset for help on using the changeset viewer.