Ignore:
Timestamp:
Oct 18, 2009, 2:51:38 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
77894f
Parents:
b0ee98
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
  • molecuilder/src/molecule.hpp

    rb0ee98 r872b51  
    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.