Changeset 872b51 for molecuilder/src/molecule.hpp
- Timestamp:
- Oct 18, 2009, 2:51:38 PM (16 years ago)
- 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)
- File:
-
- 1 edited
-
molecuilder/src/molecule.hpp (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/molecule.hpp
rb0ee98 r872b51 86 86 bond *first; //!< start of bond list 87 87 bond *last; //!< end of bond list 88 bond ***ListOfBondsPerAtom; //!< pointer list for each atom and each bond it has89 88 int MDSteps; //!< The number of MD steps in Trajectories 90 int *NumberOfBondsPerAtom; //!< Number of Bonds each atom has91 89 int AtomCount; //!< number of atoms, brought up-to-date by CountAtoms() 92 90 int BondCount; //!< number of atoms, brought up-to-date by CountBonds() … … 190 188 template <typename T> void SetAtomValueToIndexedArray ( T *array, int element::*index, T atom::*value ); 191 189 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 192 199 /// remove atoms from molecule. 193 200 bool AddAtom(atom *pointer); … … 199 206 atom * AddCopyAtom(atom *pointer); 200 207 bool AddXYZFile(string filename); 201 bool AddHydrogenReplacementAtom(ofstream *out, bond *Bond, atom *BottomOrigin, atom *TopOrigin, atom *TopReplacement, bo nd **BondList, int NumBond, bool IsAngstroem);208 bool AddHydrogenReplacementAtom(ofstream *out, bond *Bond, atom *BottomOrigin, atom *TopOrigin, atom *TopReplacement, bool IsAngstroem); 202 209 bond * AddBond(atom *first, atom *second, int degree = 1); 203 210 bool RemoveBond(bond *pointer); … … 247 254 void CreateAdjacencyListFromDbondFile(ofstream *out, ifstream *output); 248 255 void CreateAdjacencyList(ofstream *out, double bonddistance, bool IsAngstroem); 249 void CreateListOfBondsPerAtom(ofstream *out);250 256 int CorrectBondDegree(ofstream *out); 251 257 void OutputBondsList(ofstream *out); 252 int CountAtomsBonds(int nr); 258 void CyclicBondAnalysis(); 259 void OutputGraphInfoPerAtom(ofstream *out); 260 void OutputGraphInfoPerBond(ofstream *out); 253 261 254 262 … … 260 268 void SetNextComponentNumber(atom *vertex, int nr); 261 269 void InitComponentNumbers(); 262 void OutputComponentNumber(ofstream *out, atom *vertex);263 270 void ResetAllBondsToUnused(); 264 271 void ResetAllAtomNumbers(); … … 266 273 bool CheckForConnectedSubgraph(ofstream *out, KeySet *Fragment); 267 274 string GetColor(enum Shading color); 275 bond * CopyBond(atom *left, atom *right, bond *CopyBond); 276 268 277 269 278 molecule *CopyMolecule();
Note:
See TracChangeset
for help on using the changeset viewer.
