Changes in / [1024cb:42af9e]
- Files:
-
- 6 added
- 6 deleted
- 55 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/DepthFirstSearchAction.cpp
r1024cb r42af9e 46 46 molecule * const mol = World::getInstance().getMolecule(MoleculeById(0)); 47 47 MoleculeLeafClass *Subgraphs = NULL; // list of subgraphs from DFS analysis 48 int *MinimumRingSize = new int[mol-> getAtomCount()];48 int *MinimumRingSize = new int[mol->AtomCount]; 49 49 atom ***ListOfLocalAtoms = NULL; 50 50 class StackClass<bond *> *BackEdgeStack = NULL; -
src/Actions/TesselationAction/NonConvexEnvelopeAction.cpp
r1024cb r42af9e 65 65 DoLog(0) && (Log() << Verbose(0) << "Evaluating non-convex envelope of molecule." << Boundary->getId() << endl); 66 66 DoLog(1) && (Log() << Verbose(1) << "Using rolling ball of radius " << SphereRadius << " and storing tecplot data in " << filename << "." << endl); 67 DoLog(1) && (Log() << Verbose(1) << "Specified molecule has " << Boundary-> getAtomCount()<< " atoms." << endl);67 DoLog(1) && (Log() << Verbose(1) << "Specified molecule has " << Boundary->AtomCount << " atoms." << endl); 68 68 start = clock(); 69 69 LCList = new LinkedCell(Boundary, SphereRadius*2.); -
src/Actions/WorldAction/RepeatBoxAction.cpp
r1024cb r42af9e 40 40 molecule *mol = NULL; 41 41 int j = 0; 42 atom *Walker = NULL;43 42 44 43 dialog->queryVector(NAME, &Repeater, World::getInstance().getDomain(), false, MapOfActions::getInstance().getDescription(NAME)); … … 55 54 Repeater[axis] = 1; 56 55 } 57 if (mol->getAtomCount() != 0) { // if there is more than none 58 count = mol->getAtomCount(); // is changed becausing of adding, thus has to be stored away beforehand 56 mol->CountAtoms(); // recount atoms 57 if (mol->AtomCount != 0) { // if there is more than none 58 count = mol->AtomCount; // is changed becausing of adding, thus has to be stored away beforehand 59 59 Elements = new const element *[count]; 60 60 vectors = new Vector *[count]; 61 61 j = 0; 62 for(molecule::iterator AtomRunner = mol->begin(); AtomRunner != mol->end(); ++AtomRunner) { 63 Elements[j] = (*AtomRunner)->type; 64 vectors[j] = &(*AtomRunner)->x; 62 atom *first = mol->start; 63 while (first->next != mol->end) { // make a list of all atoms with coordinates and element 64 first = first->next; 65 Elements[j] = first->type; 66 vectors[j] = &first->x; 65 67 j++; 66 68 } … … 73 75 x += y; // per factor one cell width further 74 76 for (int k=count;k--;) { // go through every atom of the original cell 75 Walker= World::getInstance().createAtom(); // create a new body76 Walker->x = (*vectors[k]) + x;77 Walker->type = Elements[k]; // insert original element78 mol->AddAtom( Walker); // and add to the molecule (which increments ElementsInMolecule, AtomCount, ...)77 first = World::getInstance().createAtom(); // create a new body 78 first->x = (*vectors[k]) + x; 79 first->type = Elements[k]; // insert original element 80 mol->AddAtom(first); // and add to the molecule (which increments ElementsInMolecule, AtomCount, ...) 79 81 } 80 82 } -
src/Helpers/Assert.cpp
r1024cb r42af9e 54 54 55 55 56 56 57 bool _my_assert::check(const bool res, 57 58 const char* condition, … … 62 63 { 63 64 if(!res){ 64 cout << "Assertion \"" << condition << "\" failed in file " << filename << " at line " << line << endl;65 cout << "Assertion " << condition << " failed in file " << filename << " at line " << line << endl; 65 66 cout << "Assertion Message: " << message << std::endl; 66 67 while(true){ -
src/Helpers/MemDebug.cpp
r1024cb r42af9e 9 9 #include <cstdlib> 10 10 #include <cstring> 11 #include <boost/thread.hpp>12 11 13 12 using namespace std; 14 15 #ifndef NDBEGUG16 #ifndef NO_MEMDEBUG17 13 18 14 namespace Memory { … … 44 40 }; 45 41 46 boost::mutex memorylock;47 48 42 // start and end of the doubly-linked list 49 43 entry_t *begin=0; … … 133 127 134 128 void *operator new(size_t nbytes,const char* file, int line) throw(std::bad_alloc) { 135 136 // we need to lock, so that no one changes the linked list while we are here137 boost::mutex::scoped_lock guard(Memory::memorylock);138 129 139 130 // to avoid allocations of 0 bytes if someone screws up … … 213 204 214 205 void operator delete(void *ptr) throw() { 215 if(!ptr){216 cerr << "Warning: Deleting NULL pointer" << endl;217 return;218 }219 220 // we need to lock, so the linked list does not changed while we are in here221 boost::mutex::scoped_lock guard(Memory::memorylock);222 223 206 // get the size for the entry, including alignment 224 207 static const size_t entrySpace = Memory::doAlign(sizeof(Memory::entry_t)); … … 229 212 // let's see if the checksum is still matching 230 213 if(Memory::calcChecksum(&entry->info)!=entry->checksum){ 231 c err<< "Possible memory corruption detected!" << endl;232 c err<< "Trying to recover allocation information..." << endl;233 c err<< "Memory was allocated at " << entry->info.file << ":" << entry->info.line << endl;214 cout << "Possible memory corruption detected!" << endl; 215 cout << "Trying to recover allocation information..." << endl; 216 cout << "Memory was allocated at " << entry->info.file << ":" << entry->info.line << endl; 234 217 terminate(); 235 218 } … … 258 241 operator delete(ptr); 259 242 } 260 #endif261 #endif -
src/Helpers/MemDebug.hpp
r1024cb r42af9e 21 21 * your sourcefiles. 22 22 */ 23 #ifndef NDEBUG24 #ifndef NO_MEMDEBUG25 26 #ifndef MEMDEBUG27 #define MEMDEBUG28 #endif29 23 30 24 namespace Memory { … … 62 56 #define new new(__FILE__,__LINE__) 63 57 64 #endif65 #endif66 67 68 #ifndef MEMDEBUG69 // memory debugging was disabled70 71 namespace Memory {72 inline void getState(){}73 74 template <typename T>75 inline T *ignore(T* ptr){76 return ptr;77 }78 }79 80 #endif81 58 #endif /* MEMDEBUG_HPP_ */ -
src/Legacy/oldmenu.cpp
r1024cb r42af9e 424 424 void oldmenu::RemoveAtoms(molecule *mol) 425 425 { 426 atom * second;426 atom *first, *second; 427 427 int axis; 428 428 double tmp1, tmp2; … … 447 447 break; 448 448 case 'b': 449 {450 second = mol->AskAtom("Enter number of atom as reference point: ");451 Log() << Verbose(0) << "Enter radius: ";452 cin >> tmp1;453 molecule::iterator runner;454 for (molecule::iterator iter = mol->begin(); iter != mol->end();) {455 runner = iter++;456 if ((*runner)->x.DistanceSquared((*runner)->x) > tmp1*tmp1) // distance to first above radius ...457 mol->RemoveAtom((*runner));458 }449 second = mol->AskAtom("Enter number of atom as reference point: "); 450 Log() << Verbose(0) << "Enter radius: "; 451 cin >> tmp1; 452 first = mol->start; 453 second = first->next; 454 while(second != mol->end) { 455 first = second; 456 second = first->next; 457 if (first->x.DistanceSquared(second->x) > tmp1*tmp1) // distance to first above radius ... 458 mol->RemoveAtom(first); 459 459 } 460 460 break; … … 466 466 Log() << Verbose(0) << "Upper boundary: "; 467 467 cin >> tmp2; 468 molecule::iterator runner; 469 for (molecule::iterator iter = mol->begin(); iter != mol->end(); ) { 470 runner = iter++; 471 if (((*runner)->x[axis] < tmp1) || ((*runner)->x[axis] > tmp2)) {// out of boundary ... 472 //Log() << Verbose(0) << "Atom " << *(*runner) << " with " << (*runner)->x.x[axis] << " on axis " << axis << " is out of bounds [" << tmp1 << "," << tmp2 << "]." << endl; 473 mol->RemoveAtom((*runner)); 468 first = mol->start; 469 second = first->next; 470 while(second != mol->end) { 471 first = second; 472 second = first->next; 473 if ((first->x[axis] < tmp1) || (first->x[axis] > tmp2)) {// out of boundary ... 474 //Log() << Verbose(0) << "Atom " << *first << " with " << first->x.x[axis] << " on axis " << axis << " is out of bounds [" << tmp1 << "," << tmp2 << "]." << endl; 475 mol->RemoveAtom(first); 474 476 } 475 477 } … … 514 516 min[i] = 0.; 515 517 516 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 517 Z = (*iter)->type->Z; 518 second = mol->start; 519 while ((second->next != mol->end)) { 520 second = second->next; // advance 521 Z = second->type->Z; 518 522 tmp1 = 0.; 519 if (first != (*iter)) {520 x = first->x - (*iter)->x;523 if (first != second) { 524 x = first->x - second->x; 521 525 tmp1 = x.Norm(); 522 526 } 523 527 if ((tmp1 != 0.) && ((min[Z] == 0.) || (tmp1 < min[Z]))) min[Z] = tmp1; 524 //Log() << Verbose(0) << "Bond length between Atom " << first->nr << " and " << ((*iter)->nr << ": " << tmp1 << " a.u." << endl;528 //Log() << Verbose(0) << "Bond length between Atom " << first->nr << " and " << second->nr << ": " << tmp1 << " a.u." << endl; 525 529 } 526 530 for (int i=MAX_ELEMENTS;i--;) … … 751 755 Log() << Verbose(0) << "State the factor: "; 752 756 cin >> faktor; 753 if (mol->getAtomCount() != 0) { // if there is more than none 754 count = mol->getAtomCount(); // is changed becausing of adding, thus has to be stored away beforehand 757 758 mol->CountAtoms(); // recount atoms 759 if (mol->AtomCount != 0) { // if there is more than none 760 count = mol->AtomCount; // is changed becausing of adding, thus has to be stored away beforehand 755 761 Elements = new const element *[count]; 756 762 vectors = new Vector *[count]; 757 763 j = 0; 758 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 759 Elements[j] = (*iter)->type; 760 vectors[j] = &(*iter)->x; 764 first = mol->start; 765 while (first->next != mol->end) { // make a list of all atoms with coordinates and element 766 first = first->next; 767 Elements[j] = first->type; 768 vectors[j] = &first->x; 761 769 j++; 762 770 } … … 1017 1025 return; 1018 1026 } 1027 atom *Walker = mol->start; 1019 1028 1020 1029 // generate some KeySets 1021 1030 Log() << Verbose(0) << "Generating KeySets." << endl; 1022 KeySet TestSets[mol-> getAtomCount()+1];1031 KeySet TestSets[mol->AtomCount+1]; 1023 1032 i=1; 1024 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 1033 while (Walker->next != mol->end) { 1034 Walker = Walker->next; 1025 1035 for (int j=0;j<i;j++) { 1026 TestSets[j].insert( (*iter)->nr);1036 TestSets[j].insert(Walker->nr); 1027 1037 } 1028 1038 i++; … … 1030 1040 Log() << Verbose(0) << "Testing insertion of already present item in KeySets." << endl; 1031 1041 KeySetTestPair test; 1032 molecule::const_iterator iter = mol->begin(); 1033 if (iter != mol->end()) { 1034 test = TestSets[mol->getAtomCount()-1].insert((*iter)->nr); 1035 if (test.second) { 1036 Log() << Verbose(1) << "Insertion worked?!" << endl; 1037 } else { 1038 Log() << Verbose(1) << "Insertion rejected: Present object is " << (*test.first) << "." << endl; 1039 } 1042 test = TestSets[mol->AtomCount-1].insert(Walker->nr); 1043 if (test.second) { 1044 Log() << Verbose(1) << "Insertion worked?!" << endl; 1040 1045 } else { 1041 eLog() << Verbose(1) << "No atoms to test double insertion." << endl; 1042 } 1046 Log() << Verbose(1) << "Insertion rejected: Present object is " << (*test.first) << "." << endl; 1047 } 1048 TestSets[mol->AtomCount].insert(mol->end->previous->nr); 1049 TestSets[mol->AtomCount].insert(mol->end->previous->previous->previous->nr); 1043 1050 1044 1051 // constructing Graph structure … … 1048 1055 // insert KeySets into Subgraphs 1049 1056 Log() << Verbose(0) << "Inserting KeySets into Subgraph class." << endl; 1050 for (int j=0;j<mol-> getAtomCount();j++) {1057 for (int j=0;j<mol->AtomCount;j++) { 1051 1058 Subgraphs.insert(GraphPair (TestSets[j],pair<int, double>(counter++, 1.))); 1052 1059 } 1053 1060 Log() << Verbose(0) << "Testing insertion of already present item in Subgraph." << endl; 1054 1061 GraphTestPair test2; 1055 test2 = Subgraphs.insert(GraphPair (TestSets[mol-> getAtomCount()],pair<int, double>(counter++, 1.)));1062 test2 = Subgraphs.insert(GraphPair (TestSets[mol->AtomCount],pair<int, double>(counter++, 1.))); 1056 1063 if (test2.second) { 1057 1064 Log() << Verbose(1) << "Insertion worked?!" << endl; -
src/Makefile.am
r1024cb r42af9e 115 115 Descriptors/MoleculeIdDescriptor.cpp 116 116 117 117 118 118 DESCRIPTORHEADER = Descriptors/AtomDescriptor.hpp \ 119 119 Descriptors/AtomIdDescriptor.hpp \ … … 157 157 Line.cpp \ 158 158 linkedcell.cpp \ 159 lists.cpp \ 159 160 log.cpp \ 160 161 logger.cpp \ … … 169 170 periodentafel.cpp \ 170 171 Plane.cpp \ 171 Space.cpp \172 172 tesselation.cpp \ 173 173 tesselationhelpers.cpp \ 174 174 triangleintersectionlist.cpp \ 175 ve ctor.cpp \175 verbose.cpp \ 176 176 vector_ops.cpp \ 177 verbose.cpp \178 177 World.cpp 179 178 … … 221 220 # the following files are no longer used: 222 221 # memoryallocator.hpp \ 223 # memoryallocator.cpp \224 222 # memoryusageobserver.hpp \ 225 223 # memoryusageobserver.cpp -
src/Patterns/Cacheable.hpp
r1024cb r42af9e 28 28 owner(_owner) 29 29 {} 30 virtual T &getValue()=0;30 virtual T getValue()=0; 31 31 virtual void invalidate()=0; 32 32 virtual bool isValid()=0; … … 46 46 {} 47 47 48 virtual T &getValue(){48 virtual T getValue(){ 49 49 // set the state to valid 50 50 State::owner->switchState(State::owner->validState); … … 72 72 {} 73 73 74 virtual T &getValue(){74 virtual T getValue(){ 75 75 return content; 76 76 } … … 100 100 {} 101 101 102 virtual T &getValue(){102 virtual T getValue(){ 103 103 ASSERT(0,"Cannot get a value from a Cacheable after it's Observable has died"); 104 104 // we have to return a grossly invalid reference, because no value can be produced anymore … … 134 134 void subjectKilled(Observable *subject); 135 135 private: 136 136 137 void switchState(state_ptr newState); 137 138 … … 143 144 144 145 Observable *owner; 146 145 147 boost::function<T()> recalcMethod; 146 148 … … 219 221 220 222 const bool isValid() const; 221 const T &operator*() const;223 const T operator*() const; 222 224 223 225 // methods implemented for base-class Observer … … 235 237 236 238 template<typename T> 237 const T &Cacheable<T>::operator*() const{239 const T Cacheable<T>::operator*() const{ 238 240 return recalcMethod(); 239 241 } -
src/Patterns/Observer.cpp
r1024cb r42af9e 82 82 Observable::_Observable_protector::_Observable_protector(Observable *_protege) : 83 83 protege(_protege) 84 {85 start_observer_internal(protege);86 }87 88 Observable::_Observable_protector::_Observable_protector(const _Observable_protector &dest) :89 protege(dest.protege)90 84 { 91 85 start_observer_internal(protege); … … 195 189 ASSERT(callTable.count(this),"SignOff called for an Observable without Observers."); 196 190 callees_t &callees = callTable[this]; 197 198 191 callees_t::iterator iter; 199 192 callees_t::iterator deliter; -
src/Patterns/Observer.hpp
r1024cb r42af9e 36 36 typedef Notification *const Notification_ptr; 37 37 38 template<class _Set>39 class ObservedIterator;40 41 38 /** 42 39 * An Observer is notified by all Observed objects, when anything changes. … … 56 53 friend class Observable; 57 54 friend class Notification; 58 template<class> friend class ObservedIterator;59 60 55 public: 61 56 Observer(); … … 157 152 static std::set<Observable*> busyObservables; 158 153 154 159 155 //! @cond 160 156 // Structure for RAII-Style notification … … 168 164 public: 169 165 _Observable_protector(Observable *); 170 _Observable_protector(const _Observable_protector&);171 166 ~_Observable_protector(); 172 167 private: -
src/Plane.cpp
r1024cb r42af9e 91 91 offset = normalVector->ScalarProduct(_offsetVector); 92 92 } 93 94 /**95 * copy constructor96 */97 Plane::Plane(const Plane& plane) :98 normalVector(new Vector(*plane.normalVector)),99 offset(plane.offset)100 {}101 102 93 103 94 Plane::~Plane() -
src/Plane.hpp
r1024cb r42af9e 26 26 Plane(const Vector &_normalVector, double _offset) throw(ZeroVectorException); 27 27 Plane(const Vector &_normalVector, const Vector &_offsetVector) throw(ZeroVectorException); 28 Plane(const Plane& plane);29 28 virtual ~Plane(); 30 29 -
src/analysis_bonds.cpp
r1024cb r42af9e 26 26 Mean = 0.; 27 27 28 atom *Walker = mol->start; 28 29 int AtomCount = 0; 29 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 30 const int count = (*iter)->ListOfBonds.size(); 30 while (Walker->next != mol->end) { 31 Walker = Walker->next; 32 const int count = Walker->ListOfBonds.size(); 31 33 if (Max < count) 32 34 Max = count; … … 56 58 57 59 int AtomNo = 0; 58 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 59 if ((*iter)->type == type1) 60 for (BondList::const_iterator BondRunner = (*iter)->ListOfBonds.begin(); BondRunner != (*iter)->ListOfBonds.end(); BondRunner++) 61 if ((*BondRunner)->GetOtherAtom((*iter))->type == type2) { 60 atom *Walker = mol->start; 61 while (Walker->next != mol->end) { 62 Walker = Walker->next; 63 if (Walker->type == type1) 64 for (BondList::const_iterator BondRunner = Walker->ListOfBonds.begin(); BondRunner != Walker->ListOfBonds.end(); BondRunner++) 65 if ((*BondRunner)->GetOtherAtom(Walker)->type == type2) { 62 66 const double distance = (*BondRunner)->GetDistanceSquared(); 63 67 if (Min > distance) … … 122 126 int CountHydrogenBridgeBonds(MoleculeListClass *molecules, const element * InterfaceElement = NULL) 123 127 { 128 atom *Walker = NULL; 129 atom *Runner = NULL; 124 130 int count = 0; 125 131 int OtherHydrogens = 0; … … 127 133 bool InterfaceFlag = false; 128 134 bool OtherHydrogenFlag = true; 129 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin();MolWalker != molecules->ListOfMolecules.end(); ++MolWalker) { 130 molecule::iterator Walker = (*MolWalker)->begin(); 131 for(;Walker!=(*MolWalker)->end();++Walker){ 132 for (MoleculeList::const_iterator MolRunner = molecules->ListOfMolecules.begin();MolRunner != molecules->ListOfMolecules.end(); ++MolRunner) { 133 molecule::iterator Runner = (*MolRunner)->begin(); 134 for(;Runner!=(*MolRunner)->end();++Runner){ 135 if (((*Walker)->type->Z == 8) && ((*Runner)->type->Z == 8)) { 135 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin();MolWalker != molecules->ListOfMolecules.end(); MolWalker++) { 136 Walker = (*MolWalker)->start; 137 while (Walker->next != (*MolWalker)->end) { 138 Walker = Walker->next; 139 for (MoleculeList::const_iterator MolRunner = molecules->ListOfMolecules.begin();MolRunner != molecules->ListOfMolecules.end(); MolRunner++) { 140 Runner = (*MolRunner)->start; 141 while (Runner->next != (*MolRunner)->end) { 142 Runner = Runner->next; 143 if ((Walker->type->Z == 8) && (Runner->type->Z == 8)) { 136 144 // check distance 137 const double distance = (*Runner)->x.DistanceSquared((*Walker)->x);145 const double distance = Runner->x.DistanceSquared(Walker->x); 138 146 if ((distance > MYEPSILON) && (distance < HBRIDGEDISTANCE*HBRIDGEDISTANCE)) { // distance >0 means different atoms 139 147 // on other atom(Runner) we check for bond to interface element and … … 143 151 OtherHydrogens = 0; 144 152 InterfaceFlag = (InterfaceElement == NULL); 145 for (BondList::const_iterator BondRunner = (*Runner)->ListOfBonds.begin(); BondRunner != (*Runner)->ListOfBonds.end(); BondRunner++) {146 atom * const OtherAtom = (*BondRunner)->GetOtherAtom( *Runner);153 for (BondList::const_iterator BondRunner = Runner->ListOfBonds.begin(); BondRunner != Runner->ListOfBonds.end(); BondRunner++) { 154 atom * const OtherAtom = (*BondRunner)->GetOtherAtom(Runner); 147 155 // if hydrogen, check angle to be greater(!) than 30 degrees 148 156 if (OtherAtom->type->Z == 1) { 149 const double angle = CalculateAngle(&OtherAtom->x, & (*Runner)->x, &(*Walker)->x);157 const double angle = CalculateAngle(&OtherAtom->x, &Runner->x, &Walker->x); 150 158 OtherHydrogenFlag = OtherHydrogenFlag && (angle > M_PI*(30./180.) + MYEPSILON); 151 159 Otherangle += angle; … … 168 176 if (InterfaceFlag && OtherHydrogenFlag) { 169 177 // on this element (Walker) we check for bond to hydrogen, i.e. part of water molecule 170 for (BondList::const_iterator BondRunner = (*Walker)->ListOfBonds.begin(); BondRunner != (*Walker)->ListOfBonds.end(); BondRunner++) {171 atom * const OtherAtom = (*BondRunner)->GetOtherAtom( *Walker);178 for (BondList::const_iterator BondRunner = Walker->ListOfBonds.begin(); BondRunner != Walker->ListOfBonds.end(); BondRunner++) { 179 atom * const OtherAtom = (*BondRunner)->GetOtherAtom(Walker); 172 180 if (OtherAtom->type->Z == 1) { 173 181 // check angle 174 if (CheckHydrogenBridgeBondAngle( *Walker, OtherAtom, *Runner)) {175 DoLog(1) && (Log() << Verbose(1) << (*Walker)->getName() << ", " << OtherAtom->getName() << " and " << (*Runner)->getName() << " has a hydrogen bridge bond with distance " << sqrt(distance) << " and angle " << CalculateAngle(&OtherAtom->x, &(*Walker)->x, &(*Runner)->x)*(180./M_PI) << "." << endl);182 if (CheckHydrogenBridgeBondAngle(Walker, OtherAtom, Runner)) { 183 DoLog(1) && (Log() << Verbose(1) << Walker->getName() << ", " << OtherAtom->getName() << " and " << Runner->getName() << " has a hydrogen bridge bond with distance " << sqrt(distance) << " and angle " << CalculateAngle(&OtherAtom->x, &Walker->x, &Runner->x)*(180./M_PI) << "." << endl); 176 184 count++; 177 185 break; … … 197 205 int CountBondsOfTwo(MoleculeListClass * const molecules, const element * const first, const element * const second) 198 206 { 207 atom *Walker = NULL; 199 208 int count = 0; 200 209 201 210 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin();MolWalker != molecules->ListOfMolecules.end(); MolWalker++) { 202 molecule::iterator Walker = (*MolWalker)->begin();203 for(;Walker!=(*MolWalker)->end();++Walker){204 atom * theAtom = *Walker;205 if (( theAtom->type == first) || (theAtom->type == second)) { // first element matches206 for (BondList::const_iterator BondRunner = theAtom->ListOfBonds.begin(); BondRunner != theAtom->ListOfBonds.end(); BondRunner++) {207 atom * const OtherAtom = (*BondRunner)->GetOtherAtom( theAtom);208 if (((OtherAtom->type == first) || (OtherAtom->type == second)) && ( theAtom->nr < OtherAtom->nr)) {211 Walker = (*MolWalker)->start; 212 while (Walker->next != (*MolWalker)->end) { 213 Walker = Walker->next; 214 if ((Walker->type == first) || (Walker->type == second)) { // first element matches 215 for (BondList::const_iterator BondRunner = Walker->ListOfBonds.begin(); BondRunner != Walker->ListOfBonds.end(); BondRunner++) { 216 atom * const OtherAtom = (*BondRunner)->GetOtherAtom(Walker); 217 if (((OtherAtom->type == first) || (OtherAtom->type == second)) && (Walker->nr < OtherAtom->nr)) { 209 218 count++; 210 219 DoLog(1) && (Log() << Verbose(1) << first->name << "-" << second->name << " bond found between " << *Walker << " and " << *OtherAtom << "." << endl); … … 231 240 bool MatchFlag[2]; 232 241 bool result = false; 242 atom *Walker = NULL; 233 243 const element * ElementArray[2]; 234 244 ElementArray[0] = first; … … 236 246 237 247 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin();MolWalker != molecules->ListOfMolecules.end(); MolWalker++) { 238 molecule::iterator Walker = (*MolWalker)->begin();239 for(;Walker!=(*MolWalker)->end();++Walker){240 atom *theAtom = *Walker;241 if ( theAtom->type == second) { // first element matches248 Walker = (*MolWalker)->start; 249 while (Walker->next != (*MolWalker)->end) { 250 Walker = Walker->next; 251 if (Walker->type == second) { // first element matches 242 252 for (int i=0;i<2;i++) 243 253 MatchFlag[i] = false; 244 for (BondList::const_iterator BondRunner = theAtom->ListOfBonds.begin(); BondRunner != theAtom->ListOfBonds.end(); BondRunner++) {245 atom * const OtherAtom = (*BondRunner)->GetOtherAtom( theAtom);254 for (BondList::const_iterator BondRunner = Walker->ListOfBonds.begin(); BondRunner != Walker->ListOfBonds.end(); BondRunner++) { 255 atom * const OtherAtom = (*BondRunner)->GetOtherAtom(Walker); 246 256 for (int i=0;i<2;i++) 247 257 if ((!MatchFlag[i]) && (OtherAtom->type == ElementArray[i])) { -
src/analysis_correlation.cpp
r1024cb r42af9e 40 40 } 41 41 outmap = new PairCorrelationMap; 42 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++) {42 for (MoleculeList::const_iterator MolWalker = molecules->ListOfMolecules.begin(); MolWalker != molecules->ListOfMolecules.end(); MolWalker++) 43 43 if ((*MolWalker)->ActiveFlag) { 44 44 DoeLog(2) && (eLog()<< Verbose(2) << "Current molecule is " << *MolWalker << "." << endl); 45 eLog() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl; 46 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 47 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl); 48 if ((type1 == NULL) || ((*iter)->type == type1)) { 49 for (MoleculeList::const_iterator MolOtherWalker = MolWalker; MolOtherWalker != molecules->ListOfMolecules.end(); MolOtherWalker++){ 45 atom *Walker = (*MolWalker)->start; 46 while (Walker->next != (*MolWalker)->end) { 47 Walker = Walker->next; 48 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl); 49 if ((type1 == NULL) || (Walker->type == type1)) { 50 for (MoleculeList::const_iterator MolOtherWalker = MolWalker; MolOtherWalker != molecules->ListOfMolecules.end(); MolOtherWalker++) 50 51 if ((*MolOtherWalker)->ActiveFlag) { 51 52 DoLog(2) && (Log() << Verbose(2) << "Current other molecule is " << *MolOtherWalker << "." << endl); 52 for (molecule::const_iterator runner = (*MolOtherWalker)->begin(); runner != (*MolOtherWalker)->end(); ++runner) { 53 DoLog(3) && (Log() << Verbose(3) << "Current otheratom is " << **runner << "." << endl); 54 if ((*iter)->getId() < (*runner)->getId()){ 55 if ((type2 == NULL) || ((*runner)->type == type2)) { 56 distance = (*iter)->node->PeriodicDistance(*(*runner)->node, World::getInstance().getDomain()); 57 //Log() << Verbose(1) <<"Inserting " << *(*iter) << " and " << *(*runner) << endl; 58 outmap->insert ( pair<double, pair <atom *, atom*> > (distance, pair<atom *, atom*> ((*iter), (*runner)) ) ); 53 atom *OtherWalker = (*MolOtherWalker)->start; 54 while (OtherWalker->next != (*MolOtherWalker)->end) { // only go up to Walker 55 OtherWalker = OtherWalker->next; 56 DoLog(3) && (Log() << Verbose(3) << "Current otheratom is " << *OtherWalker << "." << endl); 57 if (Walker->nr < OtherWalker->nr) 58 if ((type2 == NULL) || (OtherWalker->type == type2)) { 59 distance = Walker->node->PeriodicDistance(*OtherWalker->node, World::getInstance().getDomain()); 60 //Log() << Verbose(1) <<"Inserting " << *Walker << " and " << *OtherWalker << endl; 61 outmap->insert ( pair<double, pair <atom *, atom*> > (distance, pair<atom *, atom*> (Walker, OtherWalker) ) ); 59 62 } 60 }61 63 } 62 }63 64 } 64 65 } 65 66 } 66 67 } 67 } 68 68 69 return outmap; 69 70 }; … … 100 101 double * FullInverseMatrix = InverseMatrix(FullMatrix); 101 102 DoeLog(2) && (eLog()<< Verbose(2) << "Current molecule is " << *MolWalker << "." << endl); 102 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 103 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl); 104 if ((type1 == NULL) || ((*iter)->type == type1)) { 105 periodicX = *(*iter)->node; 103 atom *Walker = (*MolWalker)->start; 104 while (Walker->next != (*MolWalker)->end) { 105 Walker = Walker->next; 106 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl); 107 if ((type1 == NULL) || (Walker->type == type1)) { 108 periodicX = *(Walker->node); 106 109 periodicX.MatrixMultiplication(FullInverseMatrix); // x now in [0,1)^3 107 110 // go through every range in xyz and get distance … … 114 117 if ((*MolOtherWalker)->ActiveFlag) { 115 118 DoLog(2) && (Log() << Verbose(2) << "Current other molecule is " << *MolOtherWalker << "." << endl); 116 for (molecule::const_iterator runner = (*MolOtherWalker)->begin(); runner != (*MolOtherWalker)->end(); ++runner) { 117 DoLog(3) && (Log() << Verbose(3) << "Current otheratom is " << **runner << "." << endl); 118 if ((*iter)->nr < (*runner)->nr) 119 if ((type2 == NULL) || ((*runner)->type == type2)) { 120 periodicOtherX = *(*runner)->node; 119 atom *OtherWalker = (*MolOtherWalker)->start; 120 while (OtherWalker->next != (*MolOtherWalker)->end) { // only go up to Walker 121 OtherWalker = OtherWalker->next; 122 DoLog(3) && (Log() << Verbose(3) << "Current otheratom is " << *OtherWalker << "." << endl); 123 if (Walker->nr < OtherWalker->nr) 124 if ((type2 == NULL) || (OtherWalker->type == type2)) { 125 periodicOtherX = *(OtherWalker->node); 121 126 periodicOtherX.MatrixMultiplication(FullInverseMatrix); // x now in [0,1)^3 122 127 // go through every range in xyz and get distance … … 127 132 checkOtherX.MatrixMultiplication(FullMatrix); 128 133 distance = checkX.distance(checkOtherX); 129 //Log() << Verbose(1) <<"Inserting " << * (*iter) << " and " << *(*runner)<< endl;130 outmap->insert ( pair<double, pair <atom *, atom*> > (distance, pair<atom *, atom*> ( (*iter), (*runner)) ) );134 //Log() << Verbose(1) <<"Inserting " << *Walker << " and " << *OtherWalker << endl; 135 outmap->insert ( pair<double, pair <atom *, atom*> > (distance, pair<atom *, atom*> (Walker, OtherWalker) ) ); 131 136 } 132 137 } … … 164 169 if ((*MolWalker)->ActiveFlag) { 165 170 DoLog(2) && (Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl); 166 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 167 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl); 168 if ((type == NULL) || ((*iter)->type == type)) { 169 distance = (*iter)->node->PeriodicDistance(*point, World::getInstance().getDomain()); 171 atom *Walker = (*MolWalker)->start; 172 while (Walker->next != (*MolWalker)->end) { 173 Walker = Walker->next; 174 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl); 175 if ((type == NULL) || (Walker->type == type)) { 176 distance = Walker->node->PeriodicDistance(*point, World::getInstance().getDomain()); 170 177 DoLog(4) && (Log() << Verbose(4) << "Current distance is " << distance << "." << endl); 171 outmap->insert ( pair<double, pair<atom *, const Vector*> >(distance, pair<atom *, const Vector*> ( (*iter), point) ) );178 outmap->insert ( pair<double, pair<atom *, const Vector*> >(distance, pair<atom *, const Vector*> (Walker, point) ) ); 172 179 } 173 180 } … … 204 211 double * FullInverseMatrix = InverseMatrix(FullMatrix); 205 212 DoLog(2) && (Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl); 206 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 207 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl); 208 if ((type == NULL) || ((*iter)->type == type)) { 209 periodicX = *(*iter)->node; 213 atom *Walker = (*MolWalker)->start; 214 while (Walker->next != (*MolWalker)->end) { 215 Walker = Walker->next; 216 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl); 217 if ((type == NULL) || (Walker->type == type)) { 218 periodicX = *(Walker->node); 210 219 periodicX.MatrixMultiplication(FullInverseMatrix); // x now in [0,1)^3 211 220 // go through every range in xyz and get distance … … 217 226 distance = checkX.distance(*point); 218 227 DoLog(4) && (Log() << Verbose(4) << "Current distance is " << distance << "." << endl); 219 outmap->insert ( pair<double, pair<atom *, const Vector*> >(distance, pair<atom *, const Vector*> ( *iter, point) ) );228 outmap->insert ( pair<double, pair<atom *, const Vector*> >(distance, pair<atom *, const Vector*> (Walker, point) ) ); 220 229 } 221 230 } … … 252 261 if ((*MolWalker)->ActiveFlag) { 253 262 DoLog(1) && (Log() << Verbose(1) << "Current molecule is " << (*MolWalker)->name << "." << endl); 254 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 255 //Log() << Verbose(3) << "Current atom is " << *(*iter) << "." << endl; 256 if ((type == NULL) || ((*iter)->type == type)) { 257 TriangleIntersectionList Intersections((*iter)->node,Surface,LC); 263 atom *Walker = (*MolWalker)->start; 264 while (Walker->next != (*MolWalker)->end) { 265 Walker = Walker->next; 266 //Log() << Verbose(1) << "Current atom is " << *Walker << "." << endl; 267 if ((type == NULL) || (Walker->type == type)) { 268 TriangleIntersectionList Intersections(Walker->node,Surface,LC); 258 269 distance = Intersections.GetSmallestDistance(); 259 270 triangle = Intersections.GetClosestTriangle(); 260 outmap->insert ( pair<double, pair<atom *, BoundaryTriangleSet*> >(distance, pair<atom *, BoundaryTriangleSet*> ( (*iter), triangle) ) );271 outmap->insert ( pair<double, pair<atom *, BoundaryTriangleSet*> >(distance, pair<atom *, BoundaryTriangleSet*> (Walker, triangle) ) ); 261 272 } 262 273 } … … 303 314 double * FullInverseMatrix = InverseMatrix(FullMatrix); 304 315 DoLog(2) && (Log() << Verbose(2) << "Current molecule is " << *MolWalker << "." << endl); 305 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 306 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << **iter << "." << endl); 307 if ((type == NULL) || ((*iter)->type == type)) { 308 periodicX = *(*iter)->node; 316 atom *Walker = (*MolWalker)->start; 317 while (Walker->next != (*MolWalker)->end) { 318 Walker = Walker->next; 319 DoLog(3) && (Log() << Verbose(3) << "Current atom is " << *Walker << "." << endl); 320 if ((type == NULL) || (Walker->type == type)) { 321 periodicX = *(Walker->node); 309 322 periodicX.MatrixMultiplication(FullInverseMatrix); // x now in [0,1)^3 310 323 // go through every range in xyz and get distance … … 324 337 } 325 338 // insert 326 outmap->insert ( pair<double, pair<atom *, BoundaryTriangleSet*> >(ShortestDistance, pair<atom *, BoundaryTriangleSet*> ( *iter, ShortestTriangle) ) );339 outmap->insert ( pair<double, pair<atom *, BoundaryTriangleSet*> >(ShortestDistance, pair<atom *, BoundaryTriangleSet*> (Walker, ShortestTriangle) ) ); 327 340 //Log() << Verbose(1) << "INFO: Inserting " << Walker << " with distance " << ShortestDistance << " to " << *ShortestTriangle << "." << endl; 328 341 } -
src/atom.cpp
r1024cb r42af9e 59 59 atom::~atom() 60 60 { 61 unlink(this); 61 62 }; 62 63 -
src/bondgraph.cpp
r1024cb r42af9e 90 90 bool status = true; 91 91 92 if (mol-> empty()) // only construct if molecule is not empty92 if (mol->start->next == mol->end) // only construct if molecule is not empty 93 93 return false; 94 94 … … 124 124 max_distance = 0.; 125 125 126 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 127 if ((*iter)->type->CovalentRadius > max_distance) 128 max_distance = (*iter)->type->CovalentRadius; 126 atom *Runner = mol->start; 127 while (Runner->next != mol->end) { 128 Runner = Runner->next; 129 if (Runner->type->CovalentRadius > max_distance) 130 max_distance = Runner->type->CovalentRadius; 129 131 } 130 132 max_distance *= 2.; -
src/boundary.cpp
r1024cb r42af9e 139 139 { 140 140 Info FunctionInfo(__func__); 141 atom *Walker = NULL; 141 142 PointMap PointsOnBoundary; 142 143 LineMap LinesOnBoundary; … … 164 165 165 166 // 3b. construct set of all points, transformed into cylindrical system and with left and right neighbours 166 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 167 ProjectedVector = (*iter)->x - (*MolCenter); 167 Walker = mol->start; 168 while (Walker->next != mol->end) { 169 Walker = Walker->next; 170 ProjectedVector = Walker->x - (*MolCenter); 168 171 ProjectedVector.ProjectOntoPlane(AxisVector); 169 172 … … 179 182 angle = 2. * M_PI - angle; 180 183 } 181 DoLog(1) && (Log() << Verbose(1) << "Inserting " << **iter << ": (r, alpha) = (" << radius << "," << angle << "): " << ProjectedVector << endl);182 BoundaryTestPair = BoundaryPoints[axis].insert(BoundariesPair(angle, DistancePair (radius, (*iter))));184 DoLog(1) && (Log() << Verbose(1) << "Inserting " << *Walker << ": (r, alpha) = (" << radius << "," << angle << "): " << ProjectedVector << endl); 185 BoundaryTestPair = BoundaryPoints[axis].insert(BoundariesPair(angle, DistancePair (radius, Walker))); 183 186 if (!BoundaryTestPair.second) { // same point exists, check first r, then distance of original vectors to center of gravity 184 187 DoLog(2) && (Log() << Verbose(2) << "Encountered two vectors whose projection onto axis " << axis << " is equal: " << endl); 185 188 DoLog(2) && (Log() << Verbose(2) << "Present vector: " << *BoundaryTestPair.first->second.second << endl); 186 DoLog(2) && (Log() << Verbose(2) << "New vector: " << * *iter << endl);189 DoLog(2) && (Log() << Verbose(2) << "New vector: " << *Walker << endl); 187 190 const double ProjectedVectorNorm = ProjectedVector.NormSquared(); 188 191 if ((ProjectedVectorNorm - BoundaryTestPair.first->second.first) > MYEPSILON) { 189 192 BoundaryTestPair.first->second.first = ProjectedVectorNorm; 190 BoundaryTestPair.first->second.second = (*iter);193 BoundaryTestPair.first->second.second = Walker; 191 194 DoLog(2) && (Log() << Verbose(2) << "Keeping new vector due to larger projected distance " << ProjectedVectorNorm << "." << endl); 192 195 } else if (fabs(ProjectedVectorNorm - BoundaryTestPair.first->second.first) < MYEPSILON) { 193 helper = (*iter)->x; 194 helper -= *MolCenter; 196 helper = Walker->x - (*MolCenter); 195 197 const double oldhelperNorm = helper.NormSquared(); 196 198 helper = BoundaryTestPair.first->second.second->x - (*MolCenter); 197 199 if (helper.NormSquared() < oldhelperNorm) { 198 BoundaryTestPair.first->second.second = (*iter);200 BoundaryTestPair.first->second.second = Walker; 199 201 DoLog(2) && (Log() << Verbose(2) << "Keeping new vector due to larger distance to molecule center " << helper.NormSquared() << "." << endl); 200 202 } else { … … 618 620 for (TriangleMap::iterator runner = TesselStruct->TrianglesOnBoundary.begin(); runner != TesselStruct->TrianglesOnBoundary.end(); runner++) 619 621 { // go through every triangle, calculate volume of its pyramid with CoG as peak 620 x = runner->second->getEndpoint(0) - runner->second->getEndpoint(1);621 y = runner->second->getEndpoint(0) - runner->second->getEndpoint(2);622 const double a = x.Norm();623 const double b = y.Norm();624 const double c = runner->second->getEndpoint(2).distance(runner->second->getEndpoint(1));622 x = (*runner->second->endpoints[0]->node->node) - (*runner->second->endpoints[1]->node->node); 623 y = (*runner->second->endpoints[0]->node->node) - (*runner->second->endpoints[2]->node->node); 624 const double a = sqrt(runner->second->endpoints[0]->node->node->DistanceSquared(*runner->second->endpoints[1]->node->node)); 625 const double b = sqrt(runner->second->endpoints[0]->node->node->DistanceSquared(*runner->second->endpoints[2]->node->node)); 626 const double c = sqrt(runner->second->endpoints[2]->node->node->DistanceSquared(*runner->second->endpoints[1]->node->node)); 625 627 const double G = sqrt(((a + b + c) * (a + b + c) - 2 * (a * a + b * b + c * c)) / 16.); // area of tesselated triangle 626 x = runner->second->getPlane().getNormal(); 627 x.Scale(runner->second->getEndpoint(1).ScalarProduct(x)); 628 x = Plane(*(runner->second->endpoints[0]->node->node), 629 *(runner->second->endpoints[1]->node->node), 630 *(runner->second->endpoints[2]->node->node)).getNormal(); 631 x.Scale(runner->second->endpoints[1]->node->node->ScalarProduct(x)); 628 632 const double h = x.Norm(); // distance of CoG to triangle 629 633 const double PyramidVolume = (1. / 3.) * G * h; // this formula holds for _all_ pyramids (independent of n-edge base or (not) centered peak) … … 693 697 int repetition[NDIM] = { 1, 1, 1 }; 694 698 int TotalNoClusters = 1; 699 atom *Walker = NULL; 695 700 double totalmass = 0.; 696 701 double clustervolume = 0.; … … 716 721 717 722 // sum up the atomic masses 718 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 719 totalmass += (*iter)->type->mass; 723 Walker = mol->start; 724 while (Walker->next != mol->end) { 725 Walker = Walker->next; 726 totalmass += Walker->type->mass; 720 727 } 721 728 DoLog(0) && (Log() << Verbose(0) << "RESULT: The summed mass is " << setprecision(10) << totalmass << " atomicmassunit." << endl); … … 799 806 Vector Inserter; 800 807 double FillIt = false; 808 atom *Walker = NULL; 801 809 bond *Binder = NULL; 802 810 double phi[NDIM]; … … 805 813 806 814 for (MoleculeList::iterator ListRunner = List->ListOfMolecules.begin(); ListRunner != List->ListOfMolecules.end(); ListRunner++) 807 if ((*ListRunner)-> getAtomCount()> 0) {815 if ((*ListRunner)->AtomCount > 0) { 808 816 DoLog(1) && (Log() << Verbose(1) << "Pre-creating linked cell lists for molecule " << *ListRunner << "." << endl); 809 817 LCList[(*ListRunner)] = new LinkedCell((*ListRunner), 10.); // get linked cell list … … 823 831 } 824 832 825 atom * CopyAtoms[filler->getAtomCount()]; 833 filler->CountAtoms(); 834 atom * CopyAtoms[filler->AtomCount]; 826 835 827 836 // calculate filler grid in [0,1]^3 … … 848 857 849 858 // go through all atoms 850 for (int i=0;i<filler-> getAtomCount();i++)859 for (int i=0;i<filler->AtomCount;i++) 851 860 CopyAtoms[i] = NULL; 852 for(molecule::iterator iter = filler->begin(); iter !=filler->end();++filler){ 861 Walker = filler->start; 862 while (Walker->next != filler->end) { 863 Walker = Walker->next; 853 864 854 865 // create atomic random translation vector ... … … 874 885 875 886 // ... and put at new position 876 Inserter = (*iter)->x;887 Inserter = Walker->x; 877 888 if (DoRandomRotation) 878 889 Inserter.MatrixMultiplication(Rotations); … … 898 909 DoLog(1) && (Log() << Verbose(1) << "INFO: Position at " << Inserter << " is outer point." << endl); 899 910 // copy atom ... 900 CopyAtoms[ (*iter)->nr] = (*iter)->clone();901 CopyAtoms[ (*iter)->nr]->x = Inserter;902 Filling->AddAtom(CopyAtoms[ (*iter)->nr]);903 DoLog(4) && (Log() << Verbose(4) << "Filling atom " << * *iter << ", translated to " << AtomTranslations << ", at final position is " << (CopyAtoms[(*iter)->nr]->x) << "." << endl);911 CopyAtoms[Walker->nr] = Walker->clone(); 912 CopyAtoms[Walker->nr]->x = Inserter; 913 Filling->AddAtom(CopyAtoms[Walker->nr]); 914 DoLog(4) && (Log() << Verbose(4) << "Filling atom " << *Walker << ", translated to " << AtomTranslations << ", at final position is " << (CopyAtoms[Walker->nr]->x) << "." << endl); 904 915 } else { 905 916 DoLog(1) && (Log() << Verbose(1) << "INFO: Position at " << Inserter << " is inner point, within boundary or outside of MaxDistance." << endl); 906 CopyAtoms[ (*iter)->nr] = NULL;917 CopyAtoms[Walker->nr] = NULL; 907 918 continue; 908 919 } … … 943 954 bool TesselationFailFlag = false; 944 955 945 mol->getAtomCount();946 947 956 if (TesselStruct == NULL) { 948 957 DoLog(1) && (Log() << Verbose(1) << "Allocating Tesselation struct ..." << endl); … … 1016 1025 // // look whether all points are inside of the convex envelope, otherwise add them via degenerated triangles 1017 1026 // //->InsertStraddlingPoints(mol, LCList); 1018 // for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) {1027 // mol->GoToFirst(); 1019 1028 // class TesselPoint *Runner = NULL; 1020 // Runner = *iter; 1029 // while (!mol->IsEnd()) { 1030 // Runner = mol->GetPoint(); 1021 1031 // Log() << Verbose(1) << "Checking on " << Runner->Name << " ... " << endl; 1022 1032 // if (!->IsInnerPoint(Runner, LCList)) { … … 1026 1036 // Log() << Verbose(2) << Runner->Name << " is inside of or on envelope." << endl; 1027 1037 // } 1038 // mol->GoToNext(); 1028 1039 // } 1029 1040 … … 1034 1045 status = CheckListOfBaselines(TesselStruct); 1035 1046 1036 cout << "before correction" << endl;1037 1038 1047 // store before correction 1039 StoreTrianglesinFile(mol, TesselStruct, filename, "");1048 StoreTrianglesinFile(mol, (const Tesselation *&)TesselStruct, filename, ""); 1040 1049 1041 1050 // // correct degenerated polygons … … 1047 1056 // write final envelope 1048 1057 CalculateConcavityPerBoundaryPoint(TesselStruct); 1049 cout << "after correction" << endl; 1050 StoreTrianglesinFile(mol, TesselStruct, filename, ""); 1058 StoreTrianglesinFile(mol, (const Tesselation *&)TesselStruct, filename, ""); 1051 1059 1052 1060 if (freeLC) -
src/builder.cpp
r1024cb r42af9e 865 865 866 866 mol->CountAtoms(); // recount atoms 867 if (mol-> getAtomCount()!= 0) { // if there is more than none868 count = mol-> getAtomCount(); // is changed becausing of adding, thus has to be stored away beforehand867 if (mol->AtomCount != 0) { // if there is more than none 868 count = mol->AtomCount; // is changed becausing of adding, thus has to be stored away beforehand 869 869 Elements = new element *[count]; 870 870 vectors = new Vector *[count]; … … 1296 1296 // generate some KeySets 1297 1297 DoLog(0) && (Log() << Verbose(0) << "Generating KeySets." << endl); 1298 KeySet TestSets[mol-> getAtomCount()+1];1298 KeySet TestSets[mol->AtomCount+1]; 1299 1299 i=1; 1300 1300 while (Walker->next != mol->end) { … … 1307 1307 DoLog(0) && (Log() << Verbose(0) << "Testing insertion of already present item in KeySets." << endl); 1308 1308 KeySetTestPair test; 1309 test = TestSets[mol-> getAtomCount()-1].insert(Walker->nr);1309 test = TestSets[mol->AtomCount-1].insert(Walker->nr); 1310 1310 if (test.second) { 1311 1311 DoLog(1) && (Log() << Verbose(1) << "Insertion worked?!" << endl); … … 1313 1313 DoLog(1) && (Log() << Verbose(1) << "Insertion rejected: Present object is " << (*test.first) << "." << endl); 1314 1314 } 1315 TestSets[mol-> getAtomCount()].insert(mol->end->previous->nr);1316 TestSets[mol-> getAtomCount()].insert(mol->end->previous->previous->previous->nr);1315 TestSets[mol->AtomCount].insert(mol->end->previous->nr); 1316 TestSets[mol->AtomCount].insert(mol->end->previous->previous->previous->nr); 1317 1317 1318 1318 // constructing Graph structure … … 1322 1322 // insert KeySets into Subgraphs 1323 1323 DoLog(0) && (Log() << Verbose(0) << "Inserting KeySets into Subgraph class." << endl); 1324 for (int j=0;j<mol-> getAtomCount();j++) {1324 for (int j=0;j<mol->AtomCount;j++) { 1325 1325 Subgraphs.insert(GraphPair (TestSets[j],pair<int, double>(counter++, 1.))); 1326 1326 } 1327 1327 DoLog(0) && (Log() << Verbose(0) << "Testing insertion of already present item in Subgraph." << endl); 1328 1328 GraphTestPair test2; 1329 test2 = Subgraphs.insert(GraphPair (TestSets[mol-> getAtomCount()],pair<int, double>(counter++, 1.)));1329 test2 = Subgraphs.insert(GraphPair (TestSets[mol->AtomCount],pair<int, double>(counter++, 1.))); 1330 1330 if (test2.second) { 1331 1331 DoLog(1) && (Log() << Verbose(1) << "Insertion worked?!" << endl); … … 1714 1714 if (first->type != NULL) { 1715 1715 mol->AddAtom(first); // add to molecule 1716 if ((configPresent == empty) && (mol-> getAtomCount()!= 0))1716 if ((configPresent == empty) && (mol->AtomCount != 0)) 1717 1717 configPresent = present; 1718 1718 } else … … 1732 1732 DoLog(1) && (Log() << Verbose(1) << "Depth-First-Search Analysis." << endl); 1733 1733 MoleculeLeafClass *Subgraphs = NULL; // list of subgraphs from DFS analysis 1734 int *MinimumRingSize = new int[mol-> getAtomCount()];1734 int *MinimumRingSize = new int[mol->AtomCount]; 1735 1735 atom ***ListOfLocalAtoms = NULL; 1736 1736 class StackClass<bond *> *BackEdgeStack = NULL; … … 1880 1880 int counter = 0; 1881 1881 for (MoleculeList::iterator BigFinder = molecules->ListOfMolecules.begin(); BigFinder != molecules->ListOfMolecules.end(); BigFinder++) { 1882 if ((Boundary == NULL) || (Boundary-> getAtomCount() < (*BigFinder)->getAtomCount())) {1882 if ((Boundary == NULL) || (Boundary->AtomCount < (*BigFinder)->AtomCount)) { 1883 1883 Boundary = *BigFinder; 1884 1884 } … … 1939 1939 performCriticalExit(); 1940 1940 } else { 1941 mol->getAtomCount();1942 1941 SaveFlag = true; 1943 1942 DoLog(1) && (Log() << Verbose(1) << "Changing atom " << argv[argptr] << " to element " << argv[argptr+1] << "." << endl); … … 2043 2042 int counter = 0; 2044 2043 for (MoleculeList::iterator BigFinder = molecules->ListOfMolecules.begin(); BigFinder != molecules->ListOfMolecules.end(); BigFinder++) { 2045 if ((Boundary == NULL) || (Boundary->getAtomCount() < (*BigFinder)->getAtomCount())) { 2044 (*BigFinder)->CountAtoms(); 2045 if ((Boundary == NULL) || (Boundary->AtomCount < (*BigFinder)->AtomCount)) { 2046 2046 Boundary = *BigFinder; 2047 2047 } 2048 2048 counter++; 2049 2049 } 2050 DoLog(1) && (Log() << Verbose(1) << "Biggest molecule has " << Boundary-> getAtomCount()<< " atoms." << endl);2050 DoLog(1) && (Log() << Verbose(1) << "Biggest molecule has " << Boundary->AtomCount << " atoms." << endl); 2051 2051 start = clock(); 2052 2052 LCList = new LinkedCell(Boundary, atof(argv[argptr])*2.); … … 2115 2115 case 'R': 2116 2116 if (ExitFlag == 0) ExitFlag = 1; 2117 if ((argptr+ 3 >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) || (!IsValidNumber(argv[argptr+3]))) {2117 if ((argptr+1 >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1]))) { 2118 2118 ExitFlag = 255; 2119 DoeLog(0) && (eLog()<< Verbose(0) << "Not enough or invalid arguments given for removing atoms: -R < x> <y> <z> <distance>" << endl);2119 DoeLog(0) && (eLog()<< Verbose(0) << "Not enough or invalid arguments given for removing atoms: -R <id> <distance>" << endl); 2120 2120 performCriticalExit(); 2121 2121 } else { 2122 2122 SaveFlag = true; 2123 const double radius = atof(argv[argptr+3]);2124 Vector point(atof(argv[argptr]),atof(argv[argptr+1]),atof(argv[argptr+2]));2125 DoLog(1) && (Log() << Verbose(1) << "Removing atoms around " << point << " with radius " << radius << "." << endl);2126 atom * Walker = NULL;2127 molecule::iterator advancer = mol->begin();2128 for(molecule::iterator iter = advancer; advancer != mol->end();) {2129 iter = advancer++;2130 if ((*iter)->x.DistanceSquared(point) > radius*radius){ // distance to first above radius ...2131 Walker = (*iter);2132 DoLog(1) && (Log() << Verbose(1) << "Removing atom " << *Walker << "." << endl);2133 mol->RemoveAtom(*(iter));2134 World::getInstance().destroyAtom(Walker);2123 DoLog(1) && (Log() << Verbose(1) << "Removing atoms around " << argv[argptr] << " with radius " << argv[argptr+1] << "." << endl); 2124 double tmp1 = atof(argv[argptr+1]); 2125 atom *third = mol->FindAtom(atoi(argv[argptr])); 2126 atom *first = mol->start; 2127 if ((third != NULL) && (first != mol->end)) { 2128 atom *second = first->next; 2129 while(second != mol->end) { 2130 first = second; 2131 second = first->next; 2132 if (first->x.DistanceSquared(third->x) > tmp1*tmp1) {// distance to first above radius ... 2133 mol->RemoveAtom(first); 2134 } 2135 2135 } 2136 } else { 2137 DoeLog(1) && (eLog()<< Verbose(1) << "Removal failed due to missing atoms on molecule or wrong id." << endl); 2136 2138 } 2137 argptr+= 4;2139 argptr+=2; 2138 2140 } 2139 2141 break; … … 2260 2262 performCriticalExit(); 2261 2263 } else { 2262 mol->getAtomCount();2263 2264 SaveFlag = true; 2264 2265 DoLog(1) && (Log() << Verbose(1) << "Removing atom " << argv[argptr] << "." << endl); … … 2380 2381 faktor = 1; 2381 2382 } 2382 if (mol->getAtomCount() != 0) { // if there is more than none 2383 count = mol->getAtomCount(); // is changed becausing of adding, thus has to be stored away beforehand 2383 mol->CountAtoms(); // recount atoms 2384 if (mol->AtomCount != 0) { // if there is more than none 2385 count = mol->AtomCount; // is changed becausing of adding, thus has to be stored away beforehand 2384 2386 Elements = new const element *[count]; 2385 2387 vectors = new Vector *[count]; 2386 2388 j = 0; 2387 for(molecule::iterator iter = mol->begin();iter!=mol->end();++iter){ 2388 Elements[j] = (*iter)->type; 2389 vectors[j] = &(*iter)->x; 2389 first = mol->start; 2390 while (first->next != mol->end) { // make a list of all atoms with coordinates and element 2391 first = first->next; 2392 Elements[j] = first->type; 2393 vectors[j] = &first->x; 2390 2394 j++; 2391 2395 } … … 2454 2458 { 2455 2459 config *configuration = World::getInstance().getConfig(); 2456 // while we are non interactive, we want to abort from asserts2457 //ASSERT_DO(Assert::Abort);2458 molecule *mol = NULL;2459 2460 Vector x, y, z, n; 2460 2461 ifstream test; … … 2480 2481 // need to init the history before any action is created 2481 2482 ActionHistory::init(); 2482 2483 // In the interactive mode, we can leave the user the choice in case of error2484 ASSERT_DO(Assert::Ask);2485 2483 2486 2484 // from this moment on, we need to be sure to deeinitialize in the correct order -
src/config.cpp
r1024cb r42af9e 1548 1548 int AtomNo = -1; 1549 1549 int MolNo = 0; 1550 atom *Walker = NULL; 1550 1551 FILE *f = NULL; 1551 1552 … … 1560 1561 fprintf(f, "# Created by MoleCuilder\n"); 1561 1562 1562 for (MoleculeList::const_iterator MolRunner = MolList->ListOfMolecules.begin(); MolRunner != MolList->ListOfMolecules.end(); MolRunner++) { 1563 for (MoleculeList::const_iterator Runner = MolList->ListOfMolecules.begin(); Runner != MolList->ListOfMolecules.end(); Runner++) { 1564 Walker = (*Runner)->start; 1563 1565 int *elementNo = new int[MAX_ELEMENTS]; 1564 1566 for (int i=0;i<MAX_ELEMENTS;i++) 1565 1567 elementNo[i] = 0; 1566 1568 AtomNo = 0; 1567 for (molecule::const_iterator iter = (*MolRunner)->begin(); iter != (*MolRunner)->end(); ++iter) { 1568 sprintf(name, "%2s%2d",(*iter)->type->symbol, elementNo[(*iter)->type->Z]); 1569 elementNo[(*iter)->type->Z] = (elementNo[(*iter)->type->Z]+1) % 100; // confine to two digits 1569 while (Walker->next != (*Runner)->end) { 1570 Walker = Walker->next; 1571 sprintf(name, "%2s%2d",Walker->type->symbol, elementNo[Walker->type->Z]); 1572 elementNo[Walker->type->Z] = (elementNo[Walker->type->Z]+1) % 100; // confine to two digits 1570 1573 fprintf(f, 1571 1574 "ATOM %6u %-4s %4s%c%4u %8.3f%8.3f%8.3f%6.2f%6.2f %4s%2s%2s\n", 1572 (*iter)->nr, /* atom serial number */1575 Walker->nr, /* atom serial number */ 1573 1576 name, /* atom name */ 1574 (* MolRunner)->name, /* residue name */1577 (*Runner)->name, /* residue name */ 1575 1578 'a'+(unsigned char)(AtomNo % 26), /* letter for chain */ 1576 1579 MolNo, /* residue sequence number */ 1577 (*iter)->node->at(0), /* position X in Angstroem */1578 (*iter)->node->at(1), /* position Y in Angstroem */1579 (*iter)->node->at(2), /* position Z in Angstroem */1580 (double) (*iter)->type->Valence, /* occupancy */1581 (double) (*iter)->type->NoValenceOrbitals, /* temperature factor */1580 Walker->node->at(0), /* position X in Angstroem */ 1581 Walker->node->at(1), /* position Y in Angstroem */ 1582 Walker->node->at(2), /* position Z in Angstroem */ 1583 (double)Walker->type->Valence, /* occupancy */ 1584 (double)Walker->type->NoValenceOrbitals, /* temperature factor */ 1582 1585 "0", /* segment identifier */ 1583 (*iter)->type->symbol, /* element symbol */1586 Walker->type->symbol, /* element symbol */ 1584 1587 "0"); /* charge */ 1585 1588 AtomNo++; … … 1601 1604 { 1602 1605 int AtomNo = -1; 1606 atom *Walker = NULL; 1603 1607 FILE *f = NULL; 1604 1608 … … 1617 1621 fprintf(f, "# Created by MoleCuilder\n"); 1618 1622 1623 Walker = mol->start; 1619 1624 AtomNo = 0; 1620 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 1621 sprintf(name, "%2s%2d",(*iter)->type->symbol, elementNo[(*iter)->type->Z]); 1622 elementNo[(*iter)->type->Z] = (elementNo[(*iter)->type->Z]+1) % 100; // confine to two digits 1625 while (Walker->next != mol->end) { 1626 Walker = Walker->next; 1627 sprintf(name, "%2s%2d",Walker->type->symbol, elementNo[Walker->type->Z]); 1628 elementNo[Walker->type->Z] = (elementNo[Walker->type->Z]+1) % 100; // confine to two digits 1623 1629 fprintf(f, 1624 1630 "ATOM %6u %-4s %4s%c%4u %8.3f%8.3f%8.3f%6.2f%6.2f %4s%2s%2s\n", 1625 (*iter)->nr, /* atom serial number */1631 Walker->nr, /* atom serial number */ 1626 1632 name, /* atom name */ 1627 1633 mol->name, /* residue name */ 1628 1634 'a'+(unsigned char)(AtomNo % 26), /* letter for chain */ 1629 1635 0, /* residue sequence number */ 1630 (*iter)->node->at(0), /* position X in Angstroem */1631 (*iter)->node->at(1), /* position Y in Angstroem */1632 (*iter)->node->at(2), /* position Z in Angstroem */1633 (double) (*iter)->type->Valence, /* occupancy */1634 (double) (*iter)->type->NoValenceOrbitals, /* temperature factor */1636 Walker->node->at(0), /* position X in Angstroem */ 1637 Walker->node->at(1), /* position Y in Angstroem */ 1638 Walker->node->at(2), /* position Z in Angstroem */ 1639 (double)Walker->type->Valence, /* occupancy */ 1640 (double)Walker->type->NoValenceOrbitals, /* temperature factor */ 1635 1641 "0", /* segment identifier */ 1636 (*iter)->type->symbol, /* element symbol */1642 Walker->type->symbol, /* element symbol */ 1637 1643 "0"); /* charge */ 1638 1644 AtomNo++; … … 1652 1658 bool config::SaveTREMOLO(const char * const filename, const molecule * const mol) const 1653 1659 { 1660 atom *Walker = NULL; 1654 1661 ofstream *output = NULL; 1655 1662 stringstream * const fname = new stringstream; … … 1664 1671 1665 1672 // scan maximum number of neighbours 1673 Walker = mol->start; 1666 1674 int MaxNeighbours = 0; 1667 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 1668 const int count = (*iter)->ListOfBonds.size(); 1675 while (Walker->next != mol->end) { 1676 Walker = Walker->next; 1677 const int count = Walker->ListOfBonds.size(); 1669 1678 if (MaxNeighbours < count) 1670 1679 MaxNeighbours = count; 1671 1680 } 1672 *output << "# ATOMDATA Id name resName resSeq x=3 Charge type neighbors=" << MaxNeighbours << endl; 1673 1674 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 1675 *output << (*iter)->nr << "\t"; 1676 *output << (*iter)->getName() << "\t"; 1681 *output << "# ATOMDATA Id name resName resSeq x=3 charge type neighbors=" << MaxNeighbours << endl; 1682 1683 Walker = mol->start; 1684 while (Walker->next != mol->end) { 1685 Walker = Walker->next; 1686 *output << Walker->nr << "\t"; 1687 *output << Walker->getName() << "\t"; 1677 1688 *output << mol->name << "\t"; 1678 1689 *output << 0 << "\t"; 1679 *output << (*iter)->node->at(0) << "\t" << (*iter)->node->at(1) << "\t" << (*iter)->node->at(2) << "\t";1680 *output << static_cast<double>( (*iter)->type->Valence) << "\t";1681 *output << (*iter)->type->symbol << "\t";1682 for (BondList::iterator runner = (*iter)->ListOfBonds.begin(); runner != (*iter)->ListOfBonds.end(); runner++)1683 *output << (*runner)->GetOtherAtom( *iter)->nr << "\t";1684 for(int i= (*iter)->ListOfBonds.size(); i < MaxNeighbours; i++)1690 *output << Walker->node->at(0) << "\t" << Walker->node->at(1) << "\t" << Walker->node->at(2) << "\t"; 1691 *output << static_cast<double>(Walker->type->Valence) << "\t"; 1692 *output << Walker->type->symbol << "\t"; 1693 for (BondList::iterator runner = Walker->ListOfBonds.begin(); runner != Walker->ListOfBonds.end(); runner++) 1694 *output << (*runner)->GetOtherAtom(Walker)->nr << "\t"; 1695 for(int i=Walker->ListOfBonds.size(); i < MaxNeighbours; i++) 1685 1696 *output << "-\t"; 1686 1697 *output << endl; … … 1703 1714 { 1704 1715 Info FunctionInfo(__func__); 1716 atom *Walker = NULL; 1705 1717 ofstream *output = NULL; 1706 1718 stringstream * const fname = new stringstream; … … 1717 1729 int MaxNeighbours = 0; 1718 1730 for (MoleculeList::const_iterator MolWalker = MolList->ListOfMolecules.begin(); MolWalker != MolList->ListOfMolecules.end(); MolWalker++) { 1719 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 1720 const int count = (*iter)->ListOfBonds.size(); 1731 Walker = (*MolWalker)->start; 1732 while (Walker->next != (*MolWalker)->end) { 1733 Walker = Walker->next; 1734 const int count = Walker->ListOfBonds.size(); 1721 1735 if (MaxNeighbours < count) 1722 1736 MaxNeighbours = count; 1723 1737 } 1724 1738 } 1725 *output << "# ATOMDATA Id name resName resSeq x=3 Charge type neighbors=" << MaxNeighbours << endl;1739 *output << "# ATOMDATA Id name resName resSeq x=3 charge type neighbors=" << MaxNeighbours << endl; 1726 1740 1727 1741 // create global to local id map … … 1731 1745 int AtomNo = 1; 1732 1746 for (MoleculeList::const_iterator MolWalker = MolList->ListOfMolecules.begin(); MolWalker != MolList->ListOfMolecules.end(); MolWalker++) { 1733 for(molecule::iterator AtomRunner = (*MolWalker)->begin(); AtomRunner != (*MolWalker)->end(); ++AtomRunner) { 1734 LocalNotoGlobalNoMap.insert( pair<int,int>((*AtomRunner)->getId(), AtomNo++) ); 1747 atom *Walker = (*MolWalker)->start; 1748 while (Walker->next != (*MolWalker)->end) { 1749 Walker = Walker->next; 1750 LocalNotoGlobalNoMap.insert( pair<int,int>(Walker->getId(), AtomNo++) ); 1735 1751 } 1736 1752 MolCounter++; … … 1744 1760 int AtomNo = 0; 1745 1761 for (MoleculeList::const_iterator MolWalker = MolList->ListOfMolecules.begin(); MolWalker != MolList->ListOfMolecules.end(); MolWalker++) { 1746 for (molecule::const_iterator iter = (*MolWalker)->begin(); iter != (*MolWalker)->end(); ++iter) { 1747 *output << LocalNotoGlobalNoMap[ (*iter)->getId() ] << "\t"; 1748 *output << (*iter)->getName() << "\t"; 1762 Walker = (*MolWalker)->start; 1763 while (Walker->next != (*MolWalker)->end) { 1764 Walker = Walker->next; 1765 *output << LocalNotoGlobalNoMap[ Walker->getId() ] << "\t"; 1766 *output << Walker->getName() << "\t"; 1749 1767 *output << (*MolWalker)->name << "\t"; 1750 1768 *output << MolCounter+1 << "\t"; 1751 *output << (*iter)->node->at(0) << "\t" << (*iter)->node->at(1) << "\t" << (*iter)->node->at(2) << "\t";1752 *output << (double) (*iter)->type->Valence << "\t";1753 *output << (*iter)->type->symbol << "\t";1754 for (BondList::iterator runner = (*iter)->ListOfBonds.begin(); runner != (*iter)->ListOfBonds.end(); runner++)1755 *output << LocalNotoGlobalNoMap[ (*runner)->GetOtherAtom( (*iter))->getId() ] << "\t";1756 for(int i= (*iter)->ListOfBonds.size(); i < MaxNeighbours; i++)1769 *output << Walker->node->at(0) << "\t" << Walker->node->at(1) << "\t" << Walker->node->at(2) << "\t"; 1770 *output << (double)Walker->type->Valence << "\t"; 1771 *output << Walker->type->symbol << "\t"; 1772 for (BondList::iterator runner = Walker->ListOfBonds.begin(); runner != Walker->ListOfBonds.end(); runner++) 1773 *output << LocalNotoGlobalNoMap[ (*runner)->GetOtherAtom(Walker)->getId() ] << "\t"; 1774 for(int i=Walker->ListOfBonds.size(); i < MaxNeighbours; i++) 1757 1775 *output << "-\t"; 1758 1776 *output << endl; … … 1795 1813 if (output == NULL) 1796 1814 strcpy(filename,"main_pcp_linux"); 1797 Log() << Verbose(0) << "Saving as pdb input ... " << endl;1815 Log() << Verbose(0) << "Saving as pdb input "; 1798 1816 if (SavePDB(filename, molecules)) 1799 Log() << Verbose(0) << " \t...done." << endl;1817 Log() << Verbose(0) << "done." << endl; 1800 1818 else 1801 Log() << Verbose(0) << " \t...failed." << endl;1819 Log() << Verbose(0) << "failed." << endl; 1802 1820 1803 1821 // then save as tremolo data file … … 1806 1824 if (output == NULL) 1807 1825 strcpy(filename,"main_pcp_linux"); 1808 Log() << Verbose(0) << "Saving as tremolo data input ... " << endl;1826 Log() << Verbose(0) << "Saving as tremolo data input "; 1809 1827 if (SaveTREMOLO(filename, molecules)) 1810 Log() << Verbose(0) << " \t...done." << endl;1828 Log() << Verbose(0) << "done." << endl; 1811 1829 else 1812 Log() << Verbose(0) << " \t...failed." << endl;1830 Log() << Verbose(0) << "failed." << endl; 1813 1831 1814 1832 // translate each to its center and merge all molecules in MoleculeListClass into this molecule … … 1846 1864 output.close(); 1847 1865 output.clear(); 1848 Log() << Verbose(0) << "Saving of config file ... " << endl;1866 Log() << Verbose(0) << "Saving of config file "; 1849 1867 if (Save(filename, periode, mol)) 1850 Log() << Verbose(0) << " \t...successful." << endl;1868 Log() << Verbose(0) << "successful." << endl; 1851 1869 else 1852 Log() << Verbose(0) << " \t...failed." << endl;1870 Log() << Verbose(0) << "failed." << endl; 1853 1871 1854 1872 // and save to xyz file … … 1863 1881 output.open(filename, ios::trunc); 1864 1882 } 1865 Log() << Verbose(0) << "Saving of XYZ file ... " << endl;1883 Log() << Verbose(0) << "Saving of XYZ file "; 1866 1884 if (mol->MDSteps <= 1) { 1867 1885 if (mol->OutputXYZ(&output)) 1868 Log() << Verbose(0) << " \t...successful." << endl;1886 Log() << Verbose(0) << "successful." << endl; 1869 1887 else 1870 Log() << Verbose(0) << " \t...failed." << endl;1888 Log() << Verbose(0) << "failed." << endl; 1871 1889 } else { 1872 1890 if (mol->OutputTrajectoriesXYZ(&output)) 1873 Log() << Verbose(0) << " \t...successful." << endl;1891 Log() << Verbose(0) << "successful." << endl; 1874 1892 else 1875 Log() << Verbose(0) << " \t...failed." << endl;1893 Log() << Verbose(0) << "failed." << endl; 1876 1894 } 1877 1895 output.close(); … … 1883 1901 if (output == NULL) 1884 1902 strcpy(filename,"main_pcp_linux"); 1885 Log() << Verbose(0) << "Saving as mpqc input .. " << endl;1903 Log() << Verbose(0) << "Saving as mpqc input "; 1886 1904 if (SaveMPQC(filename, mol)) 1887 Log() << Verbose(0) << " \t...done." << endl;1905 Log() << Verbose(0) << "done." << endl; 1888 1906 else 1889 Log() << Verbose(0) << " \t...failed." << endl;1907 Log() << Verbose(0) << "failed." << endl; 1890 1908 1891 1909 if (!strcmp(configpath, GetDefaultPath())) { -
src/helpers.cpp
r1024cb r42af9e 180 180 181 181 182 /** Allocates a memory range using malloc(). 183 * Prints the provided error message in case of a failure. 184 * 185 * \param number of memory slices of type X to allocate 186 * \param failure message which is printed if the allocation fails 187 * \return pointer to the allocated memory range, will be NULL if a failure occurred 188 */ 189 template <> char* Malloc<char>(size_t size, const char* output) 190 { 191 char* buffer = NULL; 192 buffer = (char*) malloc(sizeof(char) * (size + 1)); 193 for (size_t i = size; i--;) 194 buffer[i] = (i % 2 == 0) ? 'p': 'c'; 195 buffer[size] = '\0'; 196 197 if (buffer != NULL) { 198 //MemoryUsageObserver::getInstance()->addMemory(buffer, size); 199 } else { 200 Log() << Verbose(0) << "Malloc for datatype " << typeid(char).name() 201 << " failed - pointer is NULL: " << output << endl; 202 } 203 204 return buffer; 205 }; 206 182 207 /** 183 208 * Calls exit(255). -
src/helpers.hpp
r1024cb r42af9e 139 139 }; 140 140 141 142 141 /** Frees a two-dimensional array. 143 142 * \param *ptr pointer to array -
src/lists.hpp
r1024cb r42af9e 134 134 }; 135 135 136 /** Returns the first marker in a chain list. 137 * \param *me one arbitrary item in chain list 138 * \return poiner to first marker 139 */ 140 template <typename X> X *GetFirst(X *me) 141 { 142 X *Binder = me; 143 while(Binder->previous != 0) 144 Binder = Binder->previous; 145 return Binder; 146 }; 147 148 /** Returns the last marker in a chain list. 149 * \param *me one arbitrary item in chain list 150 * \return poiner to last marker 151 */ 152 template <typename X> X *GetLast(X *me) 153 { 154 X *Binder = me; 155 while(Binder->next != 0) 156 Binder = Binder->next; 157 return Binder; 158 }; 159 136 160 #endif /* LISTS_HPP_ */ -
src/molecule.cpp
r1024cb r42af9e 35 35 * Initialises molecule list with correctly referenced start and end, and sets molecule::last_atom to zero. 36 36 */ 37 molecule::molecule(const periodentafel * const teil) : elemente(teil), 38 first(new bond( 0, 0, 1, -1)), last(new bond(0, 0, 1, -1)), MDSteps(0),37 molecule::molecule(const periodentafel * const teil) : elemente(teil), start(World::getInstance().createAtom()), end(World::getInstance().createAtom()), 38 first(new bond(start, end, 1, -1)), last(new bond(start, end, 1, -1)), MDSteps(0), AtomCount(0), 39 39 BondCount(0), ElementCount(0), NoNonHydrogen(0), NoNonBonds(0), NoCyclicBonds(0), BondDistance(0.), 40 40 ActiveFlag(false), IndexNr(-1), 41 41 formula(this,boost::bind(&molecule::calcFormula,this)), 42 AtomCount(this,boost::bind(&molecule::doCountAtoms,this)), last_atom(0), InternalPointer(begin()) 43 { 42 last_atom(0), 43 InternalPointer(start) 44 { 45 // init atom chain list 46 start->father = NULL; 47 end->father = NULL; 48 link(start,end); 49 44 50 // init bond chain list 45 51 link(first,last); … … 63 69 delete(first); 64 70 delete(last); 71 end->getWorld()->destroyAtom(end); 72 start->getWorld()->destroyAtom(start); 65 73 }; 66 74 … … 75 83 } 76 84 77 int molecule::getAtomCount() const{78 return *AtomCount;79 }80 81 85 void molecule::setName(const std::string _name){ 82 86 OBSERVE; … … 100 104 stringstream sstr; 101 105 periodentafel *periode = World::getInstance().getPeriode(); 102 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {103 counts[ (*iter)->type->getNumber()]++;106 for(atom *Walker = start; Walker != end; Walker = Walker->next) { 107 counts[Walker->type->getNumber()]++; 104 108 } 105 109 std::map<atomicNumber_t,unsigned int>::reverse_iterator iter; … … 111 115 } 112 116 113 /************************** Access to the List of Atoms ****************/114 115 116 molecule::iterator molecule::begin(){117 return molecule::iterator(atoms.begin(),this);118 }119 120 molecule::const_iterator molecule::begin() const{121 return atoms.begin();122 }123 124 molecule::iterator molecule::end(){125 return molecule::iterator(atoms.end(),this);126 }127 128 molecule::const_iterator molecule::end() const{129 return atoms.end();130 }131 132 bool molecule::empty() const133 {134 return (begin() == end());135 }136 137 size_t molecule::size() const138 {139 size_t counter = 0;140 for (molecule::const_iterator iter = begin(); iter != end (); ++iter)141 counter++;142 return counter;143 }144 145 molecule::const_iterator molecule::erase( const_iterator loc )146 {147 molecule::const_iterator iter = loc;148 iter--;149 atoms.erase( loc );150 return iter;151 }152 153 molecule::const_iterator molecule::erase( atom *& key )154 {155 cout << "trying to erase atom" << endl;156 molecule::const_iterator iter = find(key);157 if (iter != end()){158 // remove this position and step forward (post-increment)159 atoms.erase( iter++ );160 }161 return iter;162 }163 164 molecule::const_iterator molecule::find ( atom *& key ) const165 {166 return atoms.find( key );167 }168 169 pair<molecule::iterator,bool> molecule::insert ( atom * const key )170 {171 pair<atomSet::iterator,bool> res = atoms.insert(key);172 return pair<iterator,bool>(iterator(res.first,this),res.second);173 }174 117 175 118 /** Adds given atom \a *pointer from molecule list. … … 180 123 bool molecule::AddAtom(atom *pointer) 181 124 { 125 bool retval = false; 182 126 OBSERVE; 183 127 if (pointer != NULL) { 184 128 pointer->sort = &pointer->nr; 129 pointer->nr = last_atom++; // increase number within molecule 130 AtomCount++; 185 131 if (pointer->type != NULL) { 186 132 if (ElementsInMolecule[pointer->type->Z] == 0) … … 195 141 } 196 142 } 197 insert(pointer);198 } 199 return true;143 retval = add(pointer, end); 144 } 145 return retval; 200 146 }; 201 147 … … 211 157 if (pointer != NULL) { 212 158 atom *walker = pointer->clone(); 213 walker->setName(pointer->getName()); 159 stringstream sstr; 160 sstr << pointer->getName(); 161 walker->setName(sstr.str()); 214 162 walker->nr = last_atom++; // increase number within molecule 215 insert(walker);163 add(walker, end); 216 164 if ((pointer->type != NULL) && (pointer->type->Z != 1)) 217 165 NoNonHydrogen++; 166 AtomCount++; 218 167 retval=walker; 219 168 } … … 626 575 627 576 // copy values 577 copy->CountAtoms(); 628 578 copy->CountElements(); 629 579 if (first->next != last) { // if adjaceny list is present … … 660 610 { 661 611 bond *Binder = NULL; 662 663 // some checks to make sure we are able to create the bond 664 ASSERT(atom1, "First atom in bond-creation was an invalid pointer"); 665 ASSERT(atom2, "Second atom in bond-creation was an invalid pointer"); 666 ASSERT(FindAtom(atom1->nr),"First atom in bond-creation was not part of molecule"); 667 ASSERT(FindAtom(atom2->nr),"Second atom in bond-creation was not parto of molecule"); 668 669 Binder = new bond(atom1, atom2, degree, BondCount++); 670 atom1->RegisterBond(Binder); 671 atom2->RegisterBond(Binder); 672 if ((atom1->type != NULL) && (atom1->type->Z != 1) && (atom2->type != NULL) && (atom2->type->Z != 1)) 673 NoNonBonds++; 674 add(Binder, last); 675 612 if ((atom1 != NULL) && (FindAtom(atom1->nr) != NULL) && (atom2 != NULL) && (FindAtom(atom2->nr) != NULL)) { 613 Binder = new bond(atom1, atom2, degree, BondCount++); 614 atom1->RegisterBond(Binder); 615 atom2->RegisterBond(Binder); 616 if ((atom1->type != NULL) && (atom1->type->Z != 1) && (atom2->type != NULL) && (atom2->type->Z != 1)) 617 NoNonBonds++; 618 add(Binder, last); 619 } else { 620 DoeLog(1) && (eLog()<< Verbose(1) << "Could not add bond between " << atom1->getName() << " and " << atom2->getName() << " as one or both are not present in the molecule." << endl); 621 } 676 622 return Binder; 677 623 }; … … 747 693 bool molecule::RemoveAtom(atom *pointer) 748 694 { 749 ASSERT(pointer, "Null pointer passed to molecule::RemoveAtom().");750 OBSERVE;751 695 if (ElementsInMolecule[pointer->type->Z] != 0) { // this would indicate an error 752 696 ElementsInMolecule[pointer->type->Z]--; // decrease number of atom of this element 697 AtomCount--; 753 698 } else 754 699 DoeLog(1) && (eLog()<< Verbose(1) << "Atom " << pointer->getName() << " is of element " << pointer->type->Z << " but the entry in the table of the molecule is 0!" << endl); … … 756 701 ElementCount--; 757 702 RemoveBonds(pointer); 758 erase(pointer); 759 return true; 703 return remove(pointer, start, end); 760 704 }; 761 705 … … 774 718 if (ElementsInMolecule[pointer->type->Z] == 0) // was last atom of this element? 775 719 ElementCount--; 776 erase(pointer);720 unlink(pointer); 777 721 return true; 778 722 }; … … 783 727 bool molecule::CleanupMolecule() 784 728 { 785 for (molecule::iterator iter = begin(); !empty(); iter = begin()) 786 erase(iter); 787 return (cleanup(first,last)); 729 return (cleanup(first,last) && cleanup(start,end)); 788 730 }; 789 731 … … 792 734 * \return pointer to atom or NULL 793 735 */ 794 atom * molecule::FindAtom(int Nr) const 795 { 796 molecule::const_iterator iter = begin(); 797 for (; iter != end(); ++iter) 798 if ((*iter)->nr == Nr) 799 break; 800 if (iter != end()) { 736 atom * molecule::FindAtom(int Nr) const{ 737 atom * walker = find(&Nr, start,end); 738 if (walker != NULL) { 801 739 //Log() << Verbose(0) << "Found Atom Nr. " << walker->nr << endl; 802 return (*iter);740 return walker; 803 741 } else { 804 742 DoLog(0) && (Log() << Verbose(0) << "Atom not found in list." << endl); … … 930 868 now = time((time_t *)NULL); // Get the system time and put it into 'now' as 'calender time' 931 869 for (int step=0;step<MDSteps;step++) { 932 *output << getAtomCount()<< "\n\tCreated by molecuilder, step " << step << ", on " << ctime(&now);870 *output << AtomCount << "\n\tCreated by molecuilder, step " << step << ", on " << ctime(&now); 933 871 ActOnAllAtoms( &atom::OutputTrajectoryXYZ, output, step ); 934 872 } … … 947 885 if (output != NULL) { 948 886 now = time((time_t *)NULL); // Get the system time and put it into 'now' as 'calender time' 949 *output << getAtomCount()<< "\n\tCreated by molecuilder on " << ctime(&now);887 *output << AtomCount << "\n\tCreated by molecuilder on " << ctime(&now); 950 888 ActOnAllAtoms( &atom::OutputXYZLine, output ); 951 889 return true; … … 957 895 * \param *out output stream for debugging 958 896 */ 959 int molecule::doCountAtoms() 960 { 961 int res = size(); 897 void molecule::CountAtoms() 898 { 962 899 int i = 0; 963 NoNonHydrogen = 0; 964 for (molecule::const_iterator iter = atoms.begin(); iter != atoms.end(); ++iter) { 965 (*iter)->nr = i; // update number in molecule (for easier referencing in FragmentMolecule lateron) 966 if ((*iter)->type->Z != 1) // count non-hydrogen atoms whilst at it 967 NoNonHydrogen++; 968 stringstream sstr; 969 sstr << (*iter)->type->symbol << (*iter)->nr+1; 970 (*iter)->setName(sstr.str()); 971 Log() << Verbose(3) << "Naming atom nr. " << (*iter)->nr << " " << (*iter)->getName() << "." << endl; 900 atom *Walker = start; 901 while (Walker->next != end) { 902 Walker = Walker->next; 972 903 i++; 973 904 } 974 return res; 905 if ((AtomCount == 0) || (i != AtomCount)) { 906 DoLog(3) && (Log() << Verbose(3) << "Mismatch in AtomCount " << AtomCount << " and recounted number " << i << ", renaming all." << endl); 907 AtomCount = i; 908 909 // count NonHydrogen atoms and give each atom a unique name 910 if (AtomCount != 0) { 911 i=0; 912 NoNonHydrogen = 0; 913 Walker = start; 914 while (Walker->next != end) { 915 Walker = Walker->next; 916 Walker->nr = i; // update number in molecule (for easier referencing in FragmentMolecule lateron) 917 if (Walker->type->Z != 1) // count non-hydrogen atoms whilst at it 918 NoNonHydrogen++; 919 stringstream sstr; 920 sstr << Walker->type->symbol << Walker->nr+1; 921 Walker->setName(sstr.str()); 922 DoLog(3) && (Log() << Verbose(3) << "Naming atom nr. " << Walker->nr << " " << Walker->getName() << "." << endl); 923 i++; 924 } 925 } else 926 DoLog(3) && (Log() << Verbose(3) << "AtomCount is still " << AtomCount << ", thus counting nothing." << endl); 927 } 975 928 }; 976 929 … … 1034 987 /// first count both their atoms and elements and update lists thereby ... 1035 988 //Log() << Verbose(0) << "Counting atoms, updating list" << endl; 989 CountAtoms(); 990 OtherMolecule->CountAtoms(); 1036 991 CountElements(); 1037 992 OtherMolecule->CountElements(); … … 1040 995 /// -# AtomCount 1041 996 if (result) { 1042 if ( getAtomCount() != OtherMolecule->getAtomCount()) {1043 DoLog(4) && (Log() << Verbose(4) << "AtomCounts don't match: " << getAtomCount() << " == " << OtherMolecule->getAtomCount()<< endl);997 if (AtomCount != OtherMolecule->AtomCount) { 998 DoLog(4) && (Log() << Verbose(4) << "AtomCounts don't match: " << AtomCount << " == " << OtherMolecule->AtomCount << endl); 1044 999 result = false; 1045 } else Log() << Verbose(4) << "AtomCounts match: " << getAtomCount() << " == " << OtherMolecule->getAtomCount()<< endl;1000 } else Log() << Verbose(4) << "AtomCounts match: " << AtomCount << " == " << OtherMolecule->AtomCount << endl; 1046 1001 } 1047 1002 /// -# ElementCount … … 1080 1035 if (result) { 1081 1036 DoLog(5) && (Log() << Verbose(5) << "Calculating distances" << endl); 1082 Distances = new double[ getAtomCount()];1083 OtherDistances = new double[ getAtomCount()];1037 Distances = new double[AtomCount]; 1038 OtherDistances = new double[AtomCount]; 1084 1039 SetIndexedArrayForEachAtomTo ( Distances, &atom::nr, &atom::DistanceSquaredToVector, (const Vector &)CenterOfGravity); 1085 1040 SetIndexedArrayForEachAtomTo ( OtherDistances, &atom::nr, &atom::DistanceSquaredToVector, (const Vector &)CenterOfGravity); 1086 for(int i=0;i< getAtomCount();i++) {1041 for(int i=0;i<AtomCount;i++) { 1087 1042 Distances[i] = 0.; 1088 1043 OtherDistances[i] = 0.; … … 1091 1046 /// ... sort each list (using heapsort (o(N log N)) from GSL) 1092 1047 DoLog(5) && (Log() << Verbose(5) << "Sorting distances" << endl); 1093 PermMap = new size_t[ getAtomCount()];1094 OtherPermMap = new size_t[ getAtomCount()];1095 for(int i=0;i< getAtomCount();i++) {1048 PermMap = new size_t[AtomCount]; 1049 OtherPermMap = new size_t[AtomCount]; 1050 for(int i=0;i<AtomCount;i++) { 1096 1051 PermMap[i] = 0; 1097 1052 OtherPermMap[i] = 0; 1098 1053 } 1099 gsl_heapsort_index (PermMap, Distances, getAtomCount(), sizeof(double), CompareDoubles);1100 gsl_heapsort_index (OtherPermMap, OtherDistances, getAtomCount(), sizeof(double), CompareDoubles);1101 PermutationMap = new int[ getAtomCount()];1102 for(int i=0;i< getAtomCount();i++)1054 gsl_heapsort_index (PermMap, Distances, AtomCount, sizeof(double), CompareDoubles); 1055 gsl_heapsort_index (OtherPermMap, OtherDistances, AtomCount, sizeof(double), CompareDoubles); 1056 PermutationMap = new int[AtomCount]; 1057 for(int i=0;i<AtomCount;i++) 1103 1058 PermutationMap[i] = 0; 1104 1059 DoLog(5) && (Log() << Verbose(5) << "Combining Permutation Maps" << endl); 1105 for(int i= getAtomCount();i--;)1060 for(int i=AtomCount;i--;) 1106 1061 PermutationMap[PermMap[i]] = (int) OtherPermMap[i]; 1107 1062 … … 1109 1064 DoLog(4) && (Log() << Verbose(4) << "Comparing distances" << endl); 1110 1065 flag = 0; 1111 for (int i=0;i< getAtomCount();i++) {1066 for (int i=0;i<AtomCount;i++) { 1112 1067 DoLog(5) && (Log() << Verbose(5) << "Distances squared: |" << Distances[PermMap[i]] << " - " << OtherDistances[OtherPermMap[i]] << "| = " << fabs(Distances[PermMap[i]] - OtherDistances[OtherPermMap[i]]) << " ?<? " << threshold << endl); 1113 1068 if (fabs(Distances[PermMap[i]] - OtherDistances[OtherPermMap[i]]) > threshold*threshold) … … 1145 1100 int * molecule::GetFatherSonAtomicMap(molecule *OtherMolecule) 1146 1101 { 1102 atom *Walker = NULL, *OtherWalker = NULL; 1147 1103 DoLog(3) && (Log() << Verbose(3) << "Begin of GetFatherAtomicMap." << endl); 1148 int *AtomicMap = new int[ getAtomCount()];1149 for (int i= getAtomCount();i--;)1104 int *AtomicMap = new int[AtomCount]; 1105 for (int i=AtomCount;i--;) 1150 1106 AtomicMap[i] = -1; 1151 1107 if (OtherMolecule == this) { // same molecule 1152 for (int i= getAtomCount();i--;) // no need as -1 means already that there is trivial correspondence1108 for (int i=AtomCount;i--;) // no need as -1 means already that there is trivial correspondence 1153 1109 AtomicMap[i] = i; 1154 1110 DoLog(4) && (Log() << Verbose(4) << "Map is trivial." << endl); 1155 1111 } else { 1156 1112 DoLog(4) && (Log() << Verbose(4) << "Map is "); 1157 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 1158 if ((*iter)->father == NULL) { 1159 AtomicMap[(*iter)->nr] = -2; 1113 Walker = start; 1114 while (Walker->next != end) { 1115 Walker = Walker->next; 1116 if (Walker->father == NULL) { 1117 AtomicMap[Walker->nr] = -2; 1160 1118 } else { 1161 for (molecule::const_iterator runner = OtherMolecule->begin(); runner != OtherMolecule->end(); ++runner) { 1119 OtherWalker = OtherMolecule->start; 1120 while (OtherWalker->next != OtherMolecule->end) { 1121 OtherWalker = OtherWalker->next; 1162 1122 //for (int i=0;i<AtomCount;i++) { // search atom 1163 //for (int j=0;j<OtherMolecule-> getAtomCount();j++) {1164 //Log() << Verbose(4) << "Comparing father " << (*iter)->father << " with the other one " << (*runner)->father << "." << endl;1165 if ( (*iter)->father == (*runner))1166 AtomicMap[ (*iter)->nr] = (*runner)->nr;1123 //for (int j=0;j<OtherMolecule->AtomCount;j++) { 1124 //Log() << Verbose(4) << "Comparing father " << Walker->father << " with the other one " << OtherWalker->father << "." << endl; 1125 if (Walker->father == OtherWalker) 1126 AtomicMap[Walker->nr] = OtherWalker->nr; 1167 1127 } 1168 1128 } 1169 DoLog(0) && (Log() << Verbose(0) << AtomicMap[ (*iter)->nr] << "\t");1129 DoLog(0) && (Log() << Verbose(0) << AtomicMap[Walker->nr] << "\t"); 1170 1130 } 1171 1131 DoLog(0) && (Log() << Verbose(0) << endl); … … 1201 1161 void molecule::SetIndexedArrayForEachAtomTo ( atom **array, int ParticleInfo::*index) const 1202 1162 { 1203 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 1204 array[((*iter)->*index)] = (*iter); 1163 atom *Walker = start; 1164 while (Walker->next != end) { 1165 Walker = Walker->next; 1166 array[(Walker->*index)] = Walker; 1205 1167 } 1206 1168 }; -
src/molecule.hpp
r1024cb r42af9e 34 34 #include "tesselation.hpp" 35 35 #include "Patterns/Observer.hpp" 36 #include "Patterns/ObservedIterator.hpp"37 36 #include "Patterns/Cacheable.hpp" 38 37 … … 91 90 friend molecule *NewMolecule(); 92 91 friend void DeleteMolecule(molecule *); 93 94 92 public: 95 typedef std::set<atom*> atomSet;96 typedef ObservedIterator<atomSet> iterator;97 typedef atomSet::const_iterator const_iterator;98 99 93 const periodentafel * const elemente; //!< periodic table with each element 100 // old deprecated atom handling 101 //atom *start; //!< start of atom list 102 //atom *end; //!< end of atom list 94 atom *start; //!< start of atom list 95 atom *end; //!< end of atom list 103 96 bond *first; //!< start of bond list 104 97 bond *last; //!< end of bond list 105 98 int MDSteps; //!< The number of MD steps in Trajectories 106 //int AtomCount; //!< number of atoms, brought up-to-date by CountAtoms()99 int AtomCount; //!< number of atoms, brought up-to-date by CountAtoms() 107 100 int BondCount; //!< number of atoms, brought up-to-date by CountBonds() 108 101 int ElementCount; //!< how many unique elements are therein … … 119 112 private: 120 113 Cacheable<string> formula; 121 Cacheable<int> AtomCount;122 114 moleculeId_t id; 123 atomSet atoms; //<!set of atoms124 115 protected: 125 //void CountAtoms();126 /**127 * this iterator type should be used for internal variables, \128 * since it will not lock129 */130 typedef atomSet::iterator internal_iterator;131 132 133 116 molecule(const periodentafel * const teil); 134 117 virtual ~molecule(); … … 138 121 //getter and setter 139 122 const std::string getName(); 140 int getAtomCount() const;141 int doCountAtoms();142 123 moleculeId_t getId(); 143 124 void setId(moleculeId_t); … … 146 127 std::string calcFormula(); 147 128 148 iterator begin();149 const_iterator begin() const;150 iterator end();151 const_iterator end() const;152 bool empty() const;153 size_t size() const;154 const_iterator erase( const_iterator loc );155 const_iterator erase( atom *& key );156 const_iterator find ( atom *& key ) const;157 pair<iterator,bool> insert ( atom * const key );158 159 129 160 130 // re-definition of virtual functions from PointCloud … … 162 132 Vector *GetCenter() const ; 163 133 TesselPoint *GetPoint() const ; 134 TesselPoint *GetTerminalPoint() const ; 164 135 int GetMaxId() const; 165 136 void GoToNext() const ; 137 void GoToPrevious() const ; 166 138 void GoToFirst() const ; 139 void GoToLast() const ; 167 140 bool IsEmpty() const ; 168 141 bool IsEnd() const ; … … 259 232 260 233 /// Count and change present atoms' coordination. 234 void CountAtoms(); 261 235 void CountElements(); 262 236 void CalculateOrbitals(class config &configuration); … … 328 302 bool StoreForcesFile(MoleculeListClass *BondFragments, char *path, int *SortIndex); 329 303 bool CreateMappingLabelsToConfigSequence(int *&SortIndex); 330 bool CreateFatherLookupTable(atom **&LookupTable, int count = 0);331 304 void BreadthFirstSearchAdd(molecule *Mol, atom **&AddedAtomList, bond **&AddedBondList, atom *Root, bond *Bond, int BondOrder, bool IsAngstroem); 332 305 /// -# BOSSANOVA … … 357 330 private: 358 331 int last_atom; //!< number given to last atom 359 mutable internal_iteratorInternalPointer; //!< internal pointer for PointCloud332 mutable atom *InternalPointer; //!< internal pointer for PointCloud 360 333 }; 361 334 -
src/molecule_dynamics.cpp
r1024cb r42af9e 29 29 gsl_matrix *A = gsl_matrix_alloc(NDIM,NDIM); 30 30 gsl_vector *x = gsl_vector_alloc(NDIM); 31 atom * Runner = mol->start; 31 32 atom *Sprinter = NULL; 32 33 Vector trajectory1, trajectory2, normal, TestVector; 33 34 double Norm1, Norm2, tmp, result = 0.; 34 35 35 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 36 if ((*iter) == Walker) // hence, we only go up to the Walker, not beyond (similar to i=0; i<j; i++) 36 while (Runner->next != mol->end) { 37 Runner = Runner->next; 38 if (Runner == Walker) // hence, we only go up to the Walker, not beyond (similar to i=0; i<j; i++) 37 39 break; 38 40 // determine normalized trajectories direction vector (n1, n2) … … 41 43 trajectory1.Normalize(); 42 44 Norm1 = trajectory1.Norm(); 43 Sprinter = Params.PermutationMap[ (*iter)->nr]; // find second target point44 trajectory2 = Sprinter->Trajectory.R.at(Params.endstep) - (*iter)->Trajectory.R.at(Params.startstep);45 Sprinter = Params.PermutationMap[Runner->nr]; // find second target point 46 trajectory2 = Sprinter->Trajectory.R.at(Params.endstep) - Runner->Trajectory.R.at(Params.startstep); 45 47 trajectory2.Normalize(); 46 48 Norm2 = trajectory1.Norm(); 47 49 // check whether either is zero() 48 50 if ((Norm1 < MYEPSILON) && (Norm2 < MYEPSILON)) { 49 tmp = Walker->Trajectory.R.at(Params.startstep).distance( (*iter)->Trajectory.R.at(Params.startstep));51 tmp = Walker->Trajectory.R.at(Params.startstep).distance(Runner->Trajectory.R.at(Params.startstep)); 50 52 } else if (Norm1 < MYEPSILON) { 51 53 Sprinter = Params.PermutationMap[Walker->nr]; // find first target point 52 trajectory1 = Sprinter->Trajectory.R.at(Params.endstep) - (*iter)->Trajectory.R.at(Params.startstep);54 trajectory1 = Sprinter->Trajectory.R.at(Params.endstep) - Runner->Trajectory.R.at(Params.startstep); 53 55 trajectory2 *= trajectory1.ScalarProduct(trajectory2); // trajectory2 is scaled to unity, hence we don't need to divide by anything 54 56 trajectory1 -= trajectory2; // project the part in norm direction away 55 57 tmp = trajectory1.Norm(); // remaining norm is distance 56 58 } else if (Norm2 < MYEPSILON) { 57 Sprinter = Params.PermutationMap[ (*iter)->nr]; // find second target point59 Sprinter = Params.PermutationMap[Runner->nr]; // find second target point 58 60 trajectory2 = Sprinter->Trajectory.R.at(Params.endstep) - Walker->Trajectory.R.at(Params.startstep); // copy second offset 59 61 trajectory1 *= trajectory2.ScalarProduct(trajectory1); // trajectory1 is scaled to unity, hence we don't need to divide by anything … … 65 67 // Log() << Verbose(0) << " and "; 66 68 // Log() << Verbose(0) << trajectory2; 67 tmp = Walker->Trajectory.R.at(Params.startstep).distance( (*iter)->Trajectory.R.at(Params.startstep));69 tmp = Walker->Trajectory.R.at(Params.startstep).distance(Runner->Trajectory.R.at(Params.startstep)); 68 70 // Log() << Verbose(0) << " with distance " << tmp << "." << endl; 69 71 } else { // determine distance by finding minimum distance 70 // Log() << Verbose(3) << "Both trajectories of " << *Walker << " and " << * (*iter)<< " are linear independent ";72 // Log() << Verbose(3) << "Both trajectories of " << *Walker << " and " << *Runner << " are linear independent "; 71 73 // Log() << Verbose(0) << endl; 72 74 // Log() << Verbose(0) << "First Trajectory: "; … … 84 86 gsl_matrix_set(A, 1, i, trajectory2[i]); 85 87 gsl_matrix_set(A, 2, i, normal[i]); 86 gsl_vector_set(x,i, (Walker->Trajectory.R.at(Params.startstep)[i] - (*iter)->Trajectory.R.at(Params.startstep)[i]));88 gsl_vector_set(x,i, (Walker->Trajectory.R.at(Params.startstep)[i] - Runner->Trajectory.R.at(Params.startstep)[i])); 87 89 } 88 90 // solve the linear system by Householder transformations … … 95 97 trajectory2.Scale(gsl_vector_get(x,1)); 96 98 normal.Scale(gsl_vector_get(x,2)); 97 TestVector = (*iter)->Trajectory.R.at(Params.startstep) + trajectory2 + normal99 TestVector = Runner->Trajectory.R.at(Params.startstep) + trajectory2 + normal 98 100 - (Walker->Trajectory.R.at(Params.startstep) + trajectory1); 99 101 if (TestVector.Norm() < MYEPSILON) { … … 124 126 { 125 127 double result = 0.; 126 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 127 if ((Params.PermutationMap[Walker->nr] == Params.PermutationMap[(*iter)->nr]) && (Walker->nr < (*iter)->nr)) { 128 atom * Runner = mol->start; 129 while (Runner->next != mol->end) { 130 Runner = Runner->next; 131 if ((Params.PermutationMap[Walker->nr] == Params.PermutationMap[Runner->nr]) && (Walker->nr < Runner->nr)) { 128 132 // atom *Sprinter = PermutationMap[Walker->nr]; 129 // Log() << Verbose(0) << *Walker << " and " << * (*iter)<< " are heading to the same target at ";133 // Log() << Verbose(0) << *Walker << " and " << *Runner << " are heading to the same target at "; 130 134 // Log() << Verbose(0) << Sprinter->Trajectory.R.at(endstep); 131 135 // Log() << Verbose(0) << ", penalting." << endl; … … 158 162 // go through every atom 159 163 atom *Runner = NULL; 160 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 164 atom *Walker = start; 165 while (Walker->next != end) { 166 Walker = Walker->next; 161 167 // first term: distance to target 162 Runner = Params.PermutationMap[ (*iter)->nr]; // find target point163 tmp = ( (*iter)->Trajectory.R.at(Params.startstep).distance(Runner->Trajectory.R.at(Params.endstep)));168 Runner = Params.PermutationMap[Walker->nr]; // find target point 169 tmp = (Walker->Trajectory.R.at(Params.startstep).distance(Runner->Trajectory.R.at(Params.endstep))); 164 170 tmp *= Params.IsAngstroem ? 1. : 1./AtomicLengthToAngstroem; 165 171 result += Params.PenaltyConstants[0] * tmp; … … 167 173 168 174 // second term: sum of distances to other trajectories 169 result += SumDistanceOfTrajectories( (*iter), this, Params);175 result += SumDistanceOfTrajectories(Walker, this, Params); 170 176 171 177 // third term: penalty for equal targets 172 result += PenalizeEqualTargets( (*iter), this, Params);178 result += PenalizeEqualTargets(Walker, this, Params); 173 179 } 174 180 … … 210 216 void FillDistanceList(molecule *mol, struct EvaluatePotential &Params) 211 217 { 212 for (int i=mol-> getAtomCount(); i--;) {218 for (int i=mol->AtomCount; i--;) { 213 219 Params.DistanceList[i] = new DistanceMap; // is the distance sorted target list per atom 214 220 Params.DistanceList[i]->clear(); 215 221 } 216 222 217 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 218 for (molecule::const_iterator runner = mol->begin(); runner != mol->end(); ++runner) { 219 Params.DistanceList[(*iter)->nr]->insert( DistancePair((*iter)->Trajectory.R.at(Params.startstep).distance((*runner)->Trajectory.R.at(Params.endstep)), (*runner)) ); 223 atom *Runner = NULL; 224 atom *Walker = mol->start; 225 while (Walker->next != mol->end) { 226 Walker = Walker->next; 227 Runner = mol->start; 228 while(Runner->next != mol->end) { 229 Runner = Runner->next; 230 Params.DistanceList[Walker->nr]->insert( DistancePair(Walker->Trajectory.R.at(Params.startstep).distance(Runner->Trajectory.R.at(Params.endstep)), Runner) ); 220 231 } 221 232 } … … 229 240 void CreateInitialLists(molecule *mol, struct EvaluatePotential &Params) 230 241 { 231 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 232 Params.StepList[(*iter)->nr] = Params.DistanceList[(*iter)->nr]->begin(); // stores the step to the next iterator that could be a possible next target 233 Params.PermutationMap[(*iter)->nr] = Params.DistanceList[(*iter)->nr]->begin()->second; // always pick target with the smallest distance 234 Params.DoubleList[Params.DistanceList[(*iter)->nr]->begin()->second->nr]++; // increase this target's source count (>1? not injective) 235 Params.DistanceIterators[(*iter)->nr] = Params.DistanceList[(*iter)->nr]->begin(); // and remember which one we picked 236 DoLog(2) && (Log() << Verbose(2) << **iter << " starts with distance " << Params.DistanceList[(*iter)->nr]->begin()->first << "." << endl); 242 atom *Walker = mol->start; 243 while (Walker->next != mol->end) { 244 Walker = Walker->next; 245 Params.StepList[Walker->nr] = Params.DistanceList[Walker->nr]->begin(); // stores the step to the next iterator that could be a possible next target 246 Params.PermutationMap[Walker->nr] = Params.DistanceList[Walker->nr]->begin()->second; // always pick target with the smallest distance 247 Params.DoubleList[Params.DistanceList[Walker->nr]->begin()->second->nr]++; // increase this target's source count (>1? not injective) 248 Params.DistanceIterators[Walker->nr] = Params.DistanceList[Walker->nr]->begin(); // and remember which one we picked 249 DoLog(2) && (Log() << Verbose(2) << *Walker << " starts with distance " << Params.DistanceList[Walker->nr]->begin()->first << "." << endl); 237 250 } 238 251 }; … … 275 288 void MakeInjectivePermutation(molecule *mol, struct EvaluatePotential &Params) 276 289 { 277 molecule::const_iterator iter = mol->begin();290 atom *Walker = mol->start; 278 291 DistanceMap::iterator NewBase; 279 292 double Potential = fabs(mol->ConstrainedPotential(Params)); 280 293 281 if (mol->empty()) {282 eLog() << Verbose(1) << "Molecule is empty." << endl;283 return;284 }285 294 while ((Potential) > Params.PenaltyConstants[2]) { 286 PrintPermutationMap(mol-> getAtomCount(), Params);287 iter++;288 if ( iter == mol->end()) // round-robin at the end289 iter = mol->begin();290 if (Params.DoubleList[Params.DistanceIterators[ (*iter)->nr]->second->nr] <= 1) // no need to make those injective that aren't295 PrintPermutationMap(mol->AtomCount, Params); 296 Walker = Walker->next; 297 if (Walker == mol->end) // round-robin at the end 298 Walker = mol->start->next; 299 if (Params.DoubleList[Params.DistanceIterators[Walker->nr]->second->nr] <= 1) // no need to make those injective that aren't 291 300 continue; 292 301 // now, try finding a new one 293 Potential = TryNextNearestNeighbourForInjectivePermutation(mol, (*iter), Potential, Params);294 } 295 for (int i=mol-> getAtomCount(); i--;) // now each single entry in the DoubleList should be <=1302 Potential = TryNextNearestNeighbourForInjectivePermutation(mol, Walker, Potential, Params); 303 } 304 for (int i=mol->AtomCount; i--;) // now each single entry in the DoubleList should be <=1 296 305 if (Params.DoubleList[i] > 1) { 297 306 DoeLog(0) && (eLog()<< Verbose(0) << "Failed to create an injective PermutationMap!" << endl); … … 332 341 double Potential, OldPotential, OlderPotential; 333 342 struct EvaluatePotential Params; 334 Params.PermutationMap = new atom *[ getAtomCount()];335 Params.DistanceList = new DistanceMap *[ getAtomCount()];336 Params.DistanceIterators = new DistanceMap::iterator[ getAtomCount()];337 Params.DoubleList = new int[ getAtomCount()];338 Params.StepList = new DistanceMap::iterator[ getAtomCount()];343 Params.PermutationMap = new atom *[AtomCount]; 344 Params.DistanceList = new DistanceMap *[AtomCount]; 345 Params.DistanceIterators = new DistanceMap::iterator[AtomCount]; 346 Params.DoubleList = new int[AtomCount]; 347 Params.StepList = new DistanceMap::iterator[AtomCount]; 339 348 int round; 340 atom * Sprinter = NULL;349 atom *Walker = NULL, *Runner = NULL, *Sprinter = NULL; 341 350 DistanceMap::iterator Rider, Strider; 342 351 343 352 // set to zero 344 for (int i=0;i< getAtomCount();i++) {353 for (int i=0;i<AtomCount;i++) { 345 354 Params.PermutationMap[i] = NULL; 346 355 Params.DoubleList[i] = 0; … … 371 380 DoLog(2) && (Log() << Verbose(2) << "Starting round " << ++round << ", at current potential " << OldPotential << " ... " << endl); 372 381 OlderPotential = OldPotential; 373 molecule::const_iterator iter;374 382 do { 375 iter = begin(); 376 for (; iter != end(); ++iter) { 377 PrintPermutationMap(getAtomCount(), Params); 378 Sprinter = Params.DistanceIterators[(*iter)->nr]->second; // store initial partner 379 Strider = Params.DistanceIterators[(*iter)->nr]; //remember old iterator 380 Params.DistanceIterators[(*iter)->nr] = Params.StepList[(*iter)->nr]; 381 if (Params.DistanceIterators[(*iter)->nr] == Params.DistanceList[(*iter)->nr]->end()) {// stop, before we run through the list and still on 382 Params.DistanceIterators[(*iter)->nr] == Params.DistanceList[(*iter)->nr]->begin(); 383 Walker = start; 384 while (Walker->next != end) { // pick one 385 Walker = Walker->next; 386 PrintPermutationMap(AtomCount, Params); 387 Sprinter = Params.DistanceIterators[Walker->nr]->second; // store initial partner 388 Strider = Params.DistanceIterators[Walker->nr]; //remember old iterator 389 Params.DistanceIterators[Walker->nr] = Params.StepList[Walker->nr]; 390 if (Params.DistanceIterators[Walker->nr] == Params.DistanceList[Walker->nr]->end()) {// stop, before we run through the list and still on 391 Params.DistanceIterators[Walker->nr] == Params.DistanceList[Walker->nr]->begin(); 383 392 break; 384 393 } 385 //Log() << Verbose(2) << "Current Walker: " << * (*iter) << " with old/next candidate " << *Sprinter << "/" << *DistanceIterators[(*iter)->nr]->second << "." << endl;394 //Log() << Verbose(2) << "Current Walker: " << *Walker << " with old/next candidate " << *Sprinter << "/" << *DistanceIterators[Walker->nr]->second << "." << endl; 386 395 // find source of the new target 387 molecule::const_iterator runner = begin();388 for (; runner != end(); ++runner) { // find the source whose toes we might be stepping on (Walker's new target should be in use by another already)389 if (Params.PermutationMap[ (*runner)->nr] == Params.DistanceIterators[(*iter)->nr]->second) {390 //Log() << Verbose(2) << "Found the corresponding owner " << * (*runner) << " to " << *PermutationMap[(*runner)->nr] << "." << endl;396 Runner = start->next; 397 while(Runner != end) { // find the source whose toes we might be stepping on (Walker's new target should be in use by another already) 398 if (Params.PermutationMap[Runner->nr] == Params.DistanceIterators[Walker->nr]->second) { 399 //Log() << Verbose(2) << "Found the corresponding owner " << *Runner << " to " << *PermutationMap[Runner->nr] << "." << endl; 391 400 break; 392 401 } 402 Runner = Runner->next; 393 403 } 394 if ( runner != end()) { // we found the other source404 if (Runner != end) { // we found the other source 395 405 // then look in its distance list for Sprinter 396 Rider = Params.DistanceList[ (*runner)->nr]->begin();397 for (; Rider != Params.DistanceList[ (*runner)->nr]->end(); Rider++)406 Rider = Params.DistanceList[Runner->nr]->begin(); 407 for (; Rider != Params.DistanceList[Runner->nr]->end(); Rider++) 398 408 if (Rider->second == Sprinter) 399 409 break; 400 if (Rider != Params.DistanceList[ (*runner)->nr]->end()) { // if we have found one401 //Log() << Verbose(2) << "Current Other: " << * (*runner) << " with old/next candidate " << *PermutationMap[(*runner)->nr] << "/" << *Rider->second << "." << endl;410 if (Rider != Params.DistanceList[Runner->nr]->end()) { // if we have found one 411 //Log() << Verbose(2) << "Current Other: " << *Runner << " with old/next candidate " << *PermutationMap[Runner->nr] << "/" << *Rider->second << "." << endl; 402 412 // exchange both 403 Params.PermutationMap[ (*iter)->nr] = Params.DistanceIterators[(*iter)->nr]->second; // put next farther distance into PermutationMap404 Params.PermutationMap[ (*runner)->nr] = Sprinter; // and hand the old target to its respective owner405 PrintPermutationMap( getAtomCount(), Params);413 Params.PermutationMap[Walker->nr] = Params.DistanceIterators[Walker->nr]->second; // put next farther distance into PermutationMap 414 Params.PermutationMap[Runner->nr] = Sprinter; // and hand the old target to its respective owner 415 PrintPermutationMap(AtomCount, Params); 406 416 // calculate the new potential 407 417 //Log() << Verbose(2) << "Checking new potential ..." << endl; … … 409 419 if (Potential > OldPotential) { // we made everything worse! Undo ... 410 420 //Log() << Verbose(3) << "Nay, made the potential worse: " << Potential << " vs. " << OldPotential << "!" << endl; 411 //Log() << Verbose(3) << "Setting " << * (*runner) << "'s source to " << *Params.DistanceIterators[(*runner)->nr]->second << "." << endl;421 //Log() << Verbose(3) << "Setting " << *Runner << "'s source to " << *Params.DistanceIterators[Runner->nr]->second << "." << endl; 412 422 // Undo for Runner (note, we haven't moved the iteration yet, we may use this) 413 Params.PermutationMap[ (*runner)->nr] = Params.DistanceIterators[(*runner)->nr]->second;423 Params.PermutationMap[Runner->nr] = Params.DistanceIterators[Runner->nr]->second; 414 424 // Undo for Walker 415 Params.DistanceIterators[ (*iter)->nr] = Strider; // take next farther distance target416 //Log() << Verbose(3) << "Setting " << * (*iter) << "'s source to " << *Params.DistanceIterators[(*iter)->nr]->second << "." << endl;417 Params.PermutationMap[ (*iter)->nr] = Params.DistanceIterators[(*iter)->nr]->second;425 Params.DistanceIterators[Walker->nr] = Strider; // take next farther distance target 426 //Log() << Verbose(3) << "Setting " << *Walker << "'s source to " << *Params.DistanceIterators[Walker->nr]->second << "." << endl; 427 Params.PermutationMap[Walker->nr] = Params.DistanceIterators[Walker->nr]->second; 418 428 } else { 419 Params.DistanceIterators[ (*runner)->nr] = Rider; // if successful also move the pointer in the iterator list429 Params.DistanceIterators[Runner->nr] = Rider; // if successful also move the pointer in the iterator list 420 430 DoLog(3) && (Log() << Verbose(3) << "Found a better permutation, new potential is " << Potential << " vs." << OldPotential << "." << endl); 421 431 OldPotential = Potential; … … 427 437 //Log() << Verbose(0) << endl; 428 438 } else { 429 DoeLog(1) && (eLog()<< Verbose(1) << * *runner << " was not the owner of " << *Sprinter << "!" << endl);439 DoeLog(1) && (eLog()<< Verbose(1) << *Runner << " was not the owner of " << *Sprinter << "!" << endl); 430 440 exit(255); 431 441 } 432 442 } else { 433 Params.PermutationMap[ (*iter)->nr] = Params.DistanceIterators[(*iter)->nr]->second; // new target has no source!443 Params.PermutationMap[Walker->nr] = Params.DistanceIterators[Walker->nr]->second; // new target has no source! 434 444 } 435 Params.StepList[ (*iter)->nr]++; // take next farther distance target445 Params.StepList[Walker->nr]++; // take next farther distance target 436 446 } 437 } while ( ++iter != end());447 } while (Walker->next != end); 438 448 } while ((OlderPotential - OldPotential) > 1e-3); 439 449 DoLog(1) && (Log() << Verbose(1) << "done." << endl); … … 441 451 442 452 /// free memory and return with evaluated potential 443 for (int i= getAtomCount(); i--;)453 for (int i=AtomCount; i--;) 444 454 Params.DistanceList[i]->clear(); 445 455 delete[](Params.DistanceList); … … 482 492 // Get the Permutation Map by MinimiseConstrainedPotential 483 493 atom **PermutationMap = NULL; 484 atom * Sprinter = NULL;494 atom *Walker = NULL, *Sprinter = NULL; 485 495 if (!MapByIdentity) 486 496 MinimiseConstrainedPotential(PermutationMap, startstep, endstep, configuration.GetIsAngstroem()); 487 497 else { 488 PermutationMap = new atom *[ getAtomCount()];498 PermutationMap = new atom *[AtomCount]; 489 499 SetIndexedArrayForEachAtomTo( PermutationMap, &atom::nr ); 490 500 } … … 501 511 mol = World::getInstance().createMolecule(); 502 512 MoleculePerStep->insert(mol); 503 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 513 Walker = start; 514 while (Walker->next != end) { 515 Walker = Walker->next; 504 516 // add to molecule list 505 Sprinter = mol->AddCopyAtom( (*iter));517 Sprinter = mol->AddCopyAtom(Walker); 506 518 for (int n=NDIM;n--;) { 507 Sprinter->x[n] = (*iter)->Trajectory.R.at(startstep)[n] + (PermutationMap[(*iter)->nr]->Trajectory.R.at(endstep)[n] - (*iter)->Trajectory.R.at(startstep)[n])*((double)step/(double)MaxSteps);519 Sprinter->x[n] = Walker->Trajectory.R.at(startstep)[n] + (PermutationMap[Walker->nr]->Trajectory.R.at(endstep)[n] - Walker->Trajectory.R.at(startstep)[n])*((double)step/(double)MaxSteps); 508 520 // add to Trajectories 509 521 //Log() << Verbose(3) << step << ">=" << MDSteps-1 << endl; 510 522 if (step < MaxSteps) { 511 (*iter)->Trajectory.R.at(step)[n] = (*iter)->Trajectory.R.at(startstep)[n] + (PermutationMap[(*iter)->nr]->Trajectory.R.at(endstep)[n] - (*iter)->Trajectory.R.at(startstep)[n])*((double)step/(double)MaxSteps);512 (*iter)->Trajectory.U.at(step)[n] = 0.;513 (*iter)->Trajectory.F.at(step)[n] = 0.;523 Walker->Trajectory.R.at(step)[n] = Walker->Trajectory.R.at(startstep)[n] + (PermutationMap[Walker->nr]->Trajectory.R.at(endstep)[n] - Walker->Trajectory.R.at(startstep)[n])*((double)step/(double)MaxSteps); 524 Walker->Trajectory.U.at(step)[n] = 0.; 525 Walker->Trajectory.F.at(step)[n] = 0.; 514 526 } 515 527 } … … 519 531 520 532 // store the list to single step files 521 int *SortIndex = new int[ getAtomCount()];522 for (int i= getAtomCount(); i--; )533 int *SortIndex = new int[AtomCount]; 534 for (int i=AtomCount; i--; ) 523 535 SortIndex[i] = i; 524 536 status = MoleculePerStep->OutputConfigForListOfFragments(&configuration, SortIndex); … … 566 578 return false; 567 579 } 568 if (Force.RowCounter[0] != getAtomCount()) {569 DoeLog(0) && (eLog()<< Verbose(0) << "Mismatch between number of atoms in file " << Force.RowCounter[0] << " and in molecule " << getAtomCount()<< "." << endl);580 if (Force.RowCounter[0] != AtomCount) { 581 DoeLog(0) && (eLog()<< Verbose(0) << "Mismatch between number of atoms in file " << Force.RowCounter[0] << " and in molecule " << AtomCount << "." << endl); 570 582 performCriticalExit(); 571 583 return false; … … 573 585 // correct Forces 574 586 Velocity.Zero(); 575 for(int i=0;i< getAtomCount();i++)587 for(int i=0;i<AtomCount;i++) 576 588 for(int d=0;d<NDIM;d++) { 577 589 Velocity[d] += Force.Matrix[0][i][d+5]; 578 590 } 579 for(int i=0;i< getAtomCount();i++)591 for(int i=0;i<AtomCount;i++) 580 592 for(int d=0;d<NDIM;d++) { 581 Force.Matrix[0][i][d+5] -= Velocity[d]/ static_cast<double>(getAtomCount());593 Force.Matrix[0][i][d+5] -= Velocity[d]/(double)AtomCount; 582 594 } 583 595 // solve a constrained potential if we are meant to … … 682 694 delta_alpha = 0.; 683 695 ActOnAllAtoms( &atom::Thermostat_NoseHoover_init, MDSteps, &delta_alpha ); 684 delta_alpha = (delta_alpha - (3.* getAtomCount()+1.) * configuration.TargetTemp)/(configuration.HooverMass*Units2Electronmass);696 delta_alpha = (delta_alpha - (3.*AtomCount+1.) * configuration.TargetTemp)/(configuration.HooverMass*Units2Electronmass); 685 697 configuration.alpha += delta_alpha*configuration.Deltat; 686 698 DoLog(3) && (Log() << Verbose(3) << "alpha = " << delta_alpha << " * " << configuration.Deltat << " = " << configuration.alpha << "." << endl); -
src/molecule_fragmentation.cpp
r1024cb r42af9e 39 39 int FragmentCount; 40 40 // get maximum bond degree 41 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 42 c = ((*iter)->ListOfBonds.size() > c) ? (*iter)->ListOfBonds.size() : c; 41 atom *Walker = start; 42 while (Walker->next != end) { 43 Walker = Walker->next; 44 c = (Walker->ListOfBonds.size() > c) ? Walker->ListOfBonds.size() : c; 43 45 } 44 46 FragmentCount = NoNonHydrogen*(1 << (c*order)); … … 351 353 map<double, pair<int,int> > * ReMapAdaptiveCriteriaListToValue(map<int, pair<double,int> > *AdaptiveCriteriaList, molecule *mol) 352 354 { 353 atom *Walker = NULL;355 atom *Walker = mol->start; 354 356 map<double, pair<int,int> > *FinalRootCandidates = new map<double, pair<int,int> > ; 355 357 DoLog(1) && (Log() << Verbose(1) << "Root candidate list is: " << endl); … … 383 385 bool MarkUpdateCandidates(bool *AtomMask, map<double, pair<int,int> > &FinalRootCandidates, int Order, molecule *mol) 384 386 { 385 atom *Walker = NULL;387 atom *Walker = mol->start; 386 388 int No = -1; 387 389 bool status = false; … … 427 429 bool molecule::CheckOrderAtSite(bool *AtomMask, Graph *GlobalKeySetList, int Order, int *MinimumRingSize, char *path) 428 430 { 431 atom *Walker = start; 429 432 bool status = false; 430 433 431 434 // initialize mask list 432 for(int i= getAtomCount();i--;)435 for(int i=AtomCount;i--;) 433 436 AtomMask[i] = false; 434 437 435 438 if (Order < 0) { // adaptive increase of BondOrder per site 436 if (AtomMask[ getAtomCount()] == true) // break after one step439 if (AtomMask[AtomCount] == true) // break after one step 437 440 return false; 438 441 … … 448 451 if (AdaptiveCriteriaList->empty()) { 449 452 DoeLog(2) && (eLog()<< Verbose(2) << "Unable to parse file, incrementing all." << endl); 450 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 453 while (Walker->next != end) { 454 Walker = Walker->next; 451 455 #ifdef ADDHYDROGEN 452 if ( (*iter)->type->Z != 1) // skip hydrogen456 if (Walker->type->Z != 1) // skip hydrogen 453 457 #endif 454 458 { 455 AtomMask[ (*iter)->nr] = true; // include all (non-hydrogen) atoms459 AtomMask[Walker->nr] = true; // include all (non-hydrogen) atoms 456 460 status = true; 457 461 } … … 468 472 delete[](FinalRootCandidates); 469 473 } else { // global increase of Bond Order 470 for(molecule::const_iterator iter = begin(); iter != end(); ++iter) { 474 while (Walker->next != end) { 475 Walker = Walker->next; 471 476 #ifdef ADDHYDROGEN 472 if ( (*iter)->type->Z != 1) // skip hydrogen477 if (Walker->type->Z != 1) // skip hydrogen 473 478 #endif 474 479 { 475 AtomMask[ (*iter)->nr] = true; // include all (non-hydrogen) atoms476 if ((Order != 0) && ( (*iter)->AdaptiveOrder < Order)) // && ((*iter)->AdaptiveOrder < MinimumRingSize[(*iter)->nr]))480 AtomMask[Walker->nr] = true; // include all (non-hydrogen) atoms 481 if ((Order != 0) && (Walker->AdaptiveOrder < Order)) // && (Walker->AdaptiveOrder < MinimumRingSize[Walker->nr])) 477 482 status = true; 478 483 } 479 484 } 480 if (( !Order) && (!AtomMask[getAtomCount()])) // single stepping, just check485 if ((Order == 0) && (AtomMask[AtomCount] == false)) // single stepping, just check 481 486 status = true; 482 487 … … 489 494 } 490 495 491 PrintAtomMask(AtomMask, getAtomCount()); // for debugging496 PrintAtomMask(AtomMask, AtomCount); // for debugging 492 497 493 498 return status; … … 505 510 return false; 506 511 } 507 SortIndex = new int[ getAtomCount()];508 for(int i= getAtomCount();i--;)512 SortIndex = new int[AtomCount]; 513 for(int i=AtomCount;i--;) 509 514 SortIndex[i] = -1; 510 515 … … 513 518 514 519 return true; 515 };516 517 518 519 /** Creates a lookup table for true father's Atom::Nr -> atom ptr.520 * \param *start begin of list (STL iterator, i.e. first item)521 * \paran *end end of list (STL iterator, i.e. one past last item)522 * \param **Lookuptable pointer to return allocated lookup table (should be NULL on start)523 * \param count optional predetermined size for table (otherwise we set the count to highest true father id)524 * \return true - success, false - failure525 */526 bool molecule::CreateFatherLookupTable(atom **&LookupTable, int count)527 {528 bool status = true;529 int AtomNo;530 531 if (LookupTable != NULL) {532 Log() << Verbose(0) << "Pointer for Lookup table is not NULL! Aborting ..." <<endl;533 return false;534 }535 536 // count them537 if (count == 0) {538 for (molecule::iterator iter = begin(); iter != end(); ++iter) { // create a lookup table (Atom::nr -> atom) used as a marker table lateron539 count = (count < (*iter)->GetTrueFather()->nr) ? (*iter)->GetTrueFather()->nr : count;540 }541 }542 if (count <= 0) {543 Log() << Verbose(0) << "Count of lookup list is 0 or less." << endl;544 return false;545 }546 547 // allocate and fill548 LookupTable = new atom *[count];549 if (LookupTable == NULL) {550 eLog() << Verbose(0) << "LookupTable memory allocation failed!" << endl;551 performCriticalExit();552 status = false;553 } else {554 for (int i=0;i<count;i++)555 LookupTable[i] = NULL;556 for (molecule::iterator iter = begin(); iter != end(); ++iter) {557 AtomNo = (*iter)->GetTrueFather()->nr;558 if ((AtomNo >= 0) && (AtomNo < count)) {559 //*out << "Setting LookupTable[" << AtomNo << "] to " << *(*iter) << endl;560 LookupTable[AtomNo] = (*iter);561 } else {562 Log() << Verbose(0) << "Walker " << *(*iter) << " exceeded range of nuclear ids [0, " << count << ")." << endl;563 status = false;564 break;565 }566 }567 }568 569 return status;570 520 }; 571 521 … … 591 541 { 592 542 MoleculeListClass *BondFragments = NULL; 593 int *MinimumRingSize = new int[ getAtomCount()];543 int *MinimumRingSize = new int[AtomCount]; 594 544 int FragmentCounter; 595 545 MoleculeLeafClass *MolecularWalker = NULL; … … 619 569 620 570 // create lookup table for Atom::nr 621 FragmentationToDo = FragmentationToDo && CreateFatherLookupTable( ListOfAtoms, getAtomCount());571 FragmentationToDo = FragmentationToDo && CreateFatherLookupTable(start, end, ListOfAtoms, AtomCount); 622 572 623 573 // === compare it with adjacency file === … … 629 579 630 580 // analysis of the cycles (print rings, get minimum cycle length) for each subgraph 631 for(int i= getAtomCount();i--;)632 MinimumRingSize[i] = getAtomCount();581 for(int i=AtomCount;i--;) 582 MinimumRingSize[i] = AtomCount; 633 583 MolecularWalker = Subgraphs; 634 584 FragmentCounter = 0; … … 636 586 MolecularWalker = MolecularWalker->next; 637 587 // fill the bond structure of the individually stored subgraphs 638 588 MolecularWalker->FillBondStructureFromReference(this, FragmentCounter, ListOfLocalAtoms, false); // we want to keep the created ListOfLocalAtoms 639 589 DoLog(0) && (Log() << Verbose(0) << "Analysing the cycles of subgraph " << MolecularWalker->Leaf << " with nr. " << FragmentCounter << "." << endl); 640 590 LocalBackEdgeStack = new StackClass<bond *> (MolecularWalker->Leaf->BondCount); 641 591 // // check the list of local atoms for debugging 642 592 // Log() << Verbose(0) << "ListOfLocalAtoms for this subgraph is:" << endl; 643 // for (int i=0;i< getAtomCount();i++)593 // for (int i=0;i<AtomCount;i++) 644 594 // if (ListOfLocalAtoms[FragmentCounter][i] == NULL) 645 595 // Log() << Verbose(0) << "\tNULL"; … … 667 617 // ===== 6b. prepare and go into the adaptive (Order<0), single-step (Order==0) or incremental (Order>0) cycle 668 618 KeyStack *RootStack = new KeyStack[Subgraphs->next->Count()]; 669 AtomMask = new bool[ getAtomCount()+1];670 AtomMask[ getAtomCount()] = false;619 AtomMask = new bool[AtomCount+1]; 620 AtomMask[AtomCount] = false; 671 621 FragmentationToDo = false; // if CheckOrderAtSite just ones recommends fragmentation, we will save fragments afterwards 672 622 while ((CheckOrder = CheckOrderAtSite(AtomMask, ParsedFragmentList, Order, MinimumRingSize, configuration->configpath))) { 673 623 FragmentationToDo = FragmentationToDo || CheckOrder; 674 AtomMask[ getAtomCount()] = true; // last plus one entry is used as marker that we have been through this loop once already in CheckOrderAtSite()624 AtomMask[AtomCount] = true; // last plus one entry is used as marker that we have been through this loop once already in CheckOrderAtSite() 675 625 // ===== 6b. fill RootStack for each subgraph (second adaptivity check) ===== 676 626 Subgraphs->next->FillRootStackForSubgraphs(RootStack, AtomMask, (FragmentCounter = 0)); … … 812 762 bool molecule::ParseOrderAtSiteFromFile(char *path) 813 763 { 814 unsigned char *OrderArray = new unsigned char[ getAtomCount()];815 bool *MaxArray = new bool[ getAtomCount()];764 unsigned char *OrderArray = new unsigned char[AtomCount]; 765 bool *MaxArray = new bool[AtomCount]; 816 766 bool status; 817 767 int AtomNr, value; … … 819 769 ifstream file; 820 770 821 for(int i=0;i< getAtomCount();i++) {771 for(int i=0;i<AtomCount;i++) { 822 772 OrderArray[i] = 0; 823 773 MaxArray[i] = false; … … 921 871 atom *OtherFather = NULL; 922 872 atom *FatherOfRunner = NULL; 923 924 #ifdef ADDHYDROGEN 925 molecule::const_iterator runner; 926 #endif 927 // we increment the iter just before skipping the hydrogen 928 for (molecule::const_iterator iter = Leaf->begin(); iter != Leaf->end();) { 873 Leaf->CountAtoms(); 874 875 atom *Runner = Leaf->start; 876 while (Runner->next != Leaf->end) { 877 Runner = Runner->next; 929 878 LonelyFlag = true; 930 FatherOfRunner = (*iter)->father; 931 ASSERT(FatherOfRunner,"Atom without father found"); 879 FatherOfRunner = Runner->father; 932 880 if (SonList[FatherOfRunner->nr] != NULL) { // check if this, our father, is present in list 933 881 // create all bonds … … 940 888 // Log() << Verbose(3) << "Adding Bond: "; 941 889 // Log() << Verbose(0) << 942 Leaf->AddBond( (*iter), SonList[OtherFather->nr], (*BondRunner)->BondDegree);890 Leaf->AddBond(Runner, SonList[OtherFather->nr], (*BondRunner)->BondDegree); 943 891 // Log() << Verbose(0) << "." << endl; 944 //NumBonds[ (*iter)->nr]++;892 //NumBonds[Runner->nr]++; 945 893 } else { 946 894 // Log() << Verbose(3) << "Not adding bond, labels in wrong order." << endl; … … 950 898 // Log() << Verbose(0) << ", who has no son in this fragment molecule." << endl; 951 899 #ifdef ADDHYDROGEN 952 //Log() << Verbose(3) << "Adding Hydrogen to " << (*iter)->Name << " and a bond in between." << endl;953 if(!Leaf->AddHydrogenReplacementAtom((*BondRunner), (*iter), FatherOfRunner, OtherFather, IsAngstroem))900 //Log() << Verbose(3) << "Adding Hydrogen to " << Runner->Name << " and a bond in between." << endl; 901 if(!Leaf->AddHydrogenReplacementAtom((*BondRunner), Runner, FatherOfRunner, OtherFather, IsAngstroem)) 954 902 exit(1); 955 903 #endif 956 //NumBonds[ (*iter)->nr] += Binder->BondDegree;904 //NumBonds[Runner->nr] += Binder->BondDegree; 957 905 } 958 906 } 959 907 } else { 960 DoeLog(1) && (eLog()<< Verbose(1) << "Son " << (*iter)->getName() << " has father " << FatherOfRunner->getName() << " but its entry in SonList is " << SonList[FatherOfRunner->nr] << "!" << endl); 961 } 962 if ((LonelyFlag) && (Leaf->getAtomCount() > 1)) { 963 DoLog(0) && (Log() << Verbose(0) << **iter << "has got bonds only to hydrogens!" << endl); 964 } 965 ++iter; 908 DoeLog(1) && (eLog()<< Verbose(1) << "Son " << Runner->getName() << " has father " << FatherOfRunner->getName() << " but its entry in SonList is " << SonList[FatherOfRunner->nr] << "!" << endl); 909 } 910 if ((LonelyFlag) && (Leaf->AtomCount > 1)) { 911 DoLog(0) && (Log() << Verbose(0) << *Runner << "has got bonds only to hydrogens!" << endl); 912 } 966 913 #ifdef ADDHYDROGEN 967 while ((iter != Leaf->end()) && ((*iter)->type->Z == 1)){ // skip added hydrogen 968 iter++; 969 } 914 while ((Runner->next != Leaf->end) && (Runner->next->type->Z == 1)) // skip added hydrogen 915 Runner = Runner->next; 970 916 #endif 971 917 } … … 982 928 molecule * molecule::StoreFragmentFromKeySet(KeySet &Leaflet, bool IsAngstroem) 983 929 { 984 atom **SonList = new atom*[ getAtomCount()];930 atom **SonList = new atom*[AtomCount]; 985 931 molecule *Leaf = World::getInstance().createMolecule(); 986 932 987 for(int i=0;i< getAtomCount();i++)933 for(int i=0;i<AtomCount;i++) 988 934 SonList[i] = NULL; 989 935 … … 1615 1561 FragmentSearch.FragmentSet = new KeySet; 1616 1562 FragmentSearch.Root = FindAtom(RootKeyNr); 1617 FragmentSearch.ShortestPathList = new int[ getAtomCount()];1618 for (int i= getAtomCount();i--;) {1563 FragmentSearch.ShortestPathList = new int[AtomCount]; 1564 for (int i=AtomCount;i--;) { 1619 1565 FragmentSearch.ShortestPathList[i] = -1; 1620 1566 } 1621 1567 1622 1568 // Construct the complete KeySet which we need for topmost level only (but for all Roots) 1569 atom *Walker = start; 1623 1570 KeySet CompleteMolecule; 1624 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 1625 CompleteMolecule.insert((*iter)->GetTrueFather()->nr); 1571 while (Walker->next != end) { 1572 Walker = Walker->next; 1573 CompleteMolecule.insert(Walker->GetTrueFather()->nr); 1626 1574 } 1627 1575 … … 1634 1582 RootKeyNr = RootStack.front(); 1635 1583 RootStack.pop_front(); 1636 atom *Walker = FindAtom(RootKeyNr);1584 Walker = FindAtom(RootKeyNr); 1637 1585 // check cyclic lengths 1638 1586 //if ((MinimumRingSize[Walker->GetTrueFather()->nr] != -1) && (Walker->GetTrueFather()->AdaptiveOrder+1 > MinimumRingSize[Walker->GetTrueFather()->nr])) { … … 1723 1671 Vector Translationvector; 1724 1672 //class StackClass<atom *> *CompStack = NULL; 1725 class StackClass<atom *> *AtomStack = new StackClass<atom *>( getAtomCount());1673 class StackClass<atom *> *AtomStack = new StackClass<atom *>(AtomCount); 1726 1674 bool flag = true; 1727 1675 1728 1676 DoLog(2) && (Log() << Verbose(2) << "Begin of ScanForPeriodicCorrection." << endl); 1729 1677 1730 ColorList = new enum Shading[ getAtomCount()];1731 for (int i=0;i< getAtomCount();i++)1678 ColorList = new enum Shading[AtomCount]; 1679 for (int i=0;i<AtomCount;i++) 1732 1680 ColorList[i] = (enum Shading)0; 1733 1681 while (flag) { 1734 1682 // remove bonds that are beyond bonddistance 1735 Translationvector.Zero(); 1683 for(int i=NDIM;i--;) 1684 Translationvector[i] = 0.; 1736 1685 // scan all bonds 1737 1686 Binder = first; … … 1762 1711 Log() << Verbose(0) << Translationvector << endl; 1763 1712 // apply to all atoms of first component via BFS 1764 for (int i= getAtomCount();i--;)1713 for (int i=AtomCount;i--;) 1765 1714 ColorList[i] = white; 1766 1715 AtomStack->Push(Binder->leftatom); … … 1786 1735 //delete(CompStack); 1787 1736 } 1737 1788 1738 // free allocated space from ReturnFullMatrixforSymmetric() 1789 1739 delete(AtomStack); -
src/molecule_geometry.cpp
r1024cb r42af9e 71 71 72 72 // Log() << Verbose(3) << "Begin of CenterEdge." << endl; 73 molecule::const_iterator iter = begin(); // start at first in list74 if ( iter != end()) {//list not empty?73 atom *ptr = start->next; // start at first in list 74 if (ptr != end) { //list not empty? 75 75 for (int i=NDIM;i--;) { 76 max->at(i) = (*iter)->x[i]; 77 min->at(i) = (*iter)->x[i]; 78 } 79 for (; iter != end(); ++iter) {// continue with second if present 80 //(*iter)->Output(1,1,out); 76 max->at(i) = ptr->x[i]; 77 min->at(i) = ptr->x[i]; 78 } 79 while (ptr->next != end) { // continue with second if present 80 ptr = ptr->next; 81 //ptr->Output(1,1,out); 81 82 for (int i=NDIM;i--;) { 82 max->at(i) = (max->at(i) < (*iter)->x[i]) ? (*iter)->x[i] : max->at(i);83 min->at(i) = (min->at(i) > (*iter)->x[i]) ? (*iter)->x[i] : min->at(i);83 max->at(i) = (max->at(i) < ptr->x[i]) ? ptr->x[i] : max->at(i); 84 min->at(i) = (min->at(i) > ptr->x[i]) ? ptr->x[i] : min->at(i); 84 85 } 85 86 } … … 105 106 { 106 107 int Num = 0; 107 molecule::const_iterator iter = begin(); // start at first in list108 atom *ptr = start; // start at first in list 108 109 109 110 Center.Zero(); 110 111 111 if (iter != end()) { //list not empty? 112 for (; iter != end(); ++iter) { // continue with second if present 112 if (ptr->next != end) { //list not empty? 113 while (ptr->next != end) { 114 ptr = ptr->next; 113 115 Num++; 114 Center += (*iter)->x;116 Center += ptr->x; 115 117 } 116 118 Center.Scale(-1./Num); // divide through total number (and sign for direction) … … 125 127 Vector * molecule::DetermineCenterOfAll() const 126 128 { 127 molecule::const_iterator iter = begin(); // start at first in list129 atom *ptr = start; // start at first in list 128 130 Vector *a = new Vector(); 129 131 double Num = 0; … … 131 133 a->Zero(); 132 134 133 if (iter != end()) { //list not empty? 134 for (; iter != end(); ++iter) { // continue with second if present 135 if (ptr->next != end) { //list not empty? 136 while (ptr->next != end) { 137 ptr = ptr->next; 135 138 Num += 1.; 136 (*a) += (*iter)->x;139 (*a) += ptr->x; 137 140 } 138 141 a->Scale(1./Num); // divide through total mass (and sign for direction) … … 162 165 Vector * molecule::DetermineCenterOfGravity() 163 166 { 164 molecule::const_iterator iter = begin(); // start at first in list167 atom *ptr = start->next; // start at first in list 165 168 Vector *a = new Vector(); 166 169 Vector tmp; … … 169 172 a->Zero(); 170 173 171 if (iter != end()) { //list not empty? 172 for (; iter != end(); ++iter) { // continue with second if present 173 Num += (*iter)->type->mass; 174 tmp = (*iter)->type->mass * (*iter)->x; 174 if (ptr != end) { //list not empty? 175 while (ptr->next != end) { // continue with second if present 176 ptr = ptr->next; 177 Num += ptr->type->mass; 178 tmp = ptr->type->mass * ptr->x; 175 179 (*a) += tmp; 176 180 } … … 213 217 void molecule::Scale(const double ** const factor) 214 218 { 215 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 219 atom *ptr = start; 220 221 while (ptr->next != end) { 222 ptr = ptr->next; 216 223 for (int j=0;j<MDSteps;j++) 217 (*iter)->Trajectory.R.at(j).ScaleAll(*factor);218 (*iter)->x.ScaleAll(*factor);224 ptr->Trajectory.R.at(j).ScaleAll(*factor); 225 ptr->x.ScaleAll(*factor); 219 226 } 220 227 }; … … 225 232 void molecule::Translate(const Vector *trans) 226 233 { 227 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 234 atom *ptr = start; 235 236 while (ptr->next != end) { 237 ptr = ptr->next; 228 238 for (int j=0;j<MDSteps;j++) 229 (*iter)->Trajectory.R.at(j) += (*trans);230 (*iter)->x += (*trans);239 ptr->Trajectory.R.at(j) += (*trans); 240 ptr->x += (*trans); 231 241 } 232 242 }; … … 264 274 void molecule::DeterminePeriodicCenter(Vector ¢er) 265 275 { 276 atom *Walker = start; 266 277 double * const cell_size = World::getInstance().getDomain(); 267 278 double *matrix = ReturnFullMatrixforSymmetric(cell_size); … … 274 285 Center.Zero(); 275 286 flag = true; 276 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 287 while (Walker->next != end) { 288 Walker = Walker->next; 277 289 #ifdef ADDHYDROGEN 278 if ( (*iter)->type->Z != 1) {290 if (Walker->type->Z != 1) { 279 291 #endif 280 Testvector = (*iter)->x;292 Testvector = Walker->x; 281 293 Testvector.MatrixMultiplication(inversematrix); 282 294 Translationvector.Zero(); 283 for (BondList::const_iterator Runner = (*iter)->ListOfBonds.begin(); Runner != (*iter)->ListOfBonds.end(); (++Runner)) {284 if ( (*iter)->nr < (*Runner)->GetOtherAtom((*iter))->nr) // otherwise we shift one to, the other fro and gain nothing295 for (BondList::const_iterator Runner = Walker->ListOfBonds.begin(); Runner != Walker->ListOfBonds.end(); (++Runner)) { 296 if (Walker->nr < (*Runner)->GetOtherAtom(Walker)->nr) // otherwise we shift one to, the other fro and gain nothing 285 297 for (int j=0;j<NDIM;j++) { 286 tmp = (*iter)->x[j] - (*Runner)->GetOtherAtom(*iter)->x[j];298 tmp = Walker->x[j] - (*Runner)->GetOtherAtom(Walker)->x[j]; 287 299 if ((fabs(tmp)) > BondDistance) { 288 300 flag = false; 289 DoLog(0) && (Log() << Verbose(0) << "Hit: atom " << (*iter)->getName() << " in bond " << *(*Runner) << " has to be shifted due to " << tmp << "." << endl);301 DoLog(0) && (Log() << Verbose(0) << "Hit: atom " << Walker->getName() << " in bond " << *(*Runner) << " has to be shifted due to " << tmp << "." << endl); 290 302 if (tmp > 0) 291 303 Translationvector[j] -= 1.; … … 301 313 #ifdef ADDHYDROGEN 302 314 // now also change all hydrogens 303 for (BondList::const_iterator Runner = (*iter)->ListOfBonds.begin(); Runner != (*iter)->ListOfBonds.end(); (++Runner)) {304 if ((*Runner)->GetOtherAtom( (*iter))->type->Z == 1) {305 Testvector = (*Runner)->GetOtherAtom( (*iter))->x;315 for (BondList::const_iterator Runner = Walker->ListOfBonds.begin(); Runner != Walker->ListOfBonds.end(); (++Runner)) { 316 if ((*Runner)->GetOtherAtom(Walker)->type->Z == 1) { 317 Testvector = (*Runner)->GetOtherAtom(Walker)->x; 306 318 Testvector.MatrixMultiplication(inversematrix); 307 319 Testvector += Translationvector; … … 318 330 delete[](inversematrix); 319 331 320 Center.Scale(1./ static_cast<double>(getAtomCount()));332 Center.Scale(1./(double)AtomCount); 321 333 }; 322 334 … … 328 340 void molecule::PrincipalAxisSystem(bool DoRotate) 329 341 { 342 atom *ptr = start; // start at first in list 330 343 double InertiaTensor[NDIM*NDIM]; 331 344 Vector *CenterOfGravity = DetermineCenterOfGravity(); … … 338 351 339 352 // sum up inertia tensor 340 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 341 Vector x = (*iter)->x; 353 while (ptr->next != end) { 354 ptr = ptr->next; 355 Vector x = ptr->x; 342 356 //x.SubtractVector(CenterOfGravity); 343 InertiaTensor[0] += (*iter)->type->mass*(x[1]*x[1] + x[2]*x[2]);344 InertiaTensor[1] += (*iter)->type->mass*(-x[0]*x[1]);345 InertiaTensor[2] += (*iter)->type->mass*(-x[0]*x[2]);346 InertiaTensor[3] += (*iter)->type->mass*(-x[1]*x[0]);347 InertiaTensor[4] += (*iter)->type->mass*(x[0]*x[0] + x[2]*x[2]);348 InertiaTensor[5] += (*iter)->type->mass*(-x[1]*x[2]);349 InertiaTensor[6] += (*iter)->type->mass*(-x[2]*x[0]);350 InertiaTensor[7] += (*iter)->type->mass*(-x[2]*x[1]);351 InertiaTensor[8] += (*iter)->type->mass*(x[0]*x[0] + x[1]*x[1]);357 InertiaTensor[0] += ptr->type->mass*(x[1]*x[1] + x[2]*x[2]); 358 InertiaTensor[1] += ptr->type->mass*(-x[0]*x[1]); 359 InertiaTensor[2] += ptr->type->mass*(-x[0]*x[2]); 360 InertiaTensor[3] += ptr->type->mass*(-x[1]*x[0]); 361 InertiaTensor[4] += ptr->type->mass*(x[0]*x[0] + x[2]*x[2]); 362 InertiaTensor[5] += ptr->type->mass*(-x[1]*x[2]); 363 InertiaTensor[6] += ptr->type->mass*(-x[2]*x[0]); 364 InertiaTensor[7] += ptr->type->mass*(-x[2]*x[1]); 365 InertiaTensor[8] += ptr->type->mass*(x[0]*x[0] + x[1]*x[1]); 352 366 } 353 367 // print InertiaTensor for debugging … … 387 401 388 402 // sum up inertia tensor 389 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 390 Vector x = (*iter)->x; 391 InertiaTensor[0] += (*iter)->type->mass*(x[1]*x[1] + x[2]*x[2]); 392 InertiaTensor[1] += (*iter)->type->mass*(-x[0]*x[1]); 393 InertiaTensor[2] += (*iter)->type->mass*(-x[0]*x[2]); 394 InertiaTensor[3] += (*iter)->type->mass*(-x[1]*x[0]); 395 InertiaTensor[4] += (*iter)->type->mass*(x[0]*x[0] + x[2]*x[2]); 396 InertiaTensor[5] += (*iter)->type->mass*(-x[1]*x[2]); 397 InertiaTensor[6] += (*iter)->type->mass*(-x[2]*x[0]); 398 InertiaTensor[7] += (*iter)->type->mass*(-x[2]*x[1]); 399 InertiaTensor[8] += (*iter)->type->mass*(x[0]*x[0] + x[1]*x[1]); 403 ptr = start; 404 while (ptr->next != end) { 405 ptr = ptr->next; 406 Vector x = ptr->x; 407 //x.SubtractVector(CenterOfGravity); 408 InertiaTensor[0] += ptr->type->mass*(x[1]*x[1] + x[2]*x[2]); 409 InertiaTensor[1] += ptr->type->mass*(-x[0]*x[1]); 410 InertiaTensor[2] += ptr->type->mass*(-x[0]*x[2]); 411 InertiaTensor[3] += ptr->type->mass*(-x[1]*x[0]); 412 InertiaTensor[4] += ptr->type->mass*(x[0]*x[0] + x[2]*x[2]); 413 InertiaTensor[5] += ptr->type->mass*(-x[1]*x[2]); 414 InertiaTensor[6] += ptr->type->mass*(-x[2]*x[0]); 415 InertiaTensor[7] += ptr->type->mass*(-x[2]*x[1]); 416 InertiaTensor[8] += ptr->type->mass*(x[0]*x[0] + x[1]*x[1]); 400 417 } 401 418 // print InertiaTensor for debugging … … 421 438 void molecule::Align(Vector *n) 422 439 { 440 atom *ptr = start; 423 441 double alpha, tmp; 424 442 Vector z_axis; … … 431 449 alpha = atan(-n->at(0)/n->at(2)); 432 450 DoLog(1) && (Log() << Verbose(1) << "Z-X-angle: " << alpha << " ... "); 433 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 434 tmp = (*iter)->x[0]; 435 (*iter)->x[0] = cos(alpha) * tmp + sin(alpha) * (*iter)->x[2]; 436 (*iter)->x[2] = -sin(alpha) * tmp + cos(alpha) * (*iter)->x[2]; 451 while (ptr->next != end) { 452 ptr = ptr->next; 453 tmp = ptr->x[0]; 454 ptr->x[0] = cos(alpha) * tmp + sin(alpha) * ptr->x[2]; 455 ptr->x[2] = -sin(alpha) * tmp + cos(alpha) * ptr->x[2]; 437 456 for (int j=0;j<MDSteps;j++) { 438 tmp = (*iter)->Trajectory.R.at(j)[0];439 (*iter)->Trajectory.R.at(j)[0] = cos(alpha) * tmp + sin(alpha) * (*iter)->Trajectory.R.at(j)[2];440 (*iter)->Trajectory.R.at(j)[2] = -sin(alpha) * tmp + cos(alpha) * (*iter)->Trajectory.R.at(j)[2];457 tmp = ptr->Trajectory.R.at(j)[0]; 458 ptr->Trajectory.R.at(j)[0] = cos(alpha) * tmp + sin(alpha) * ptr->Trajectory.R.at(j)[2]; 459 ptr->Trajectory.R.at(j)[2] = -sin(alpha) * tmp + cos(alpha) * ptr->Trajectory.R.at(j)[2]; 441 460 } 442 461 } … … 448 467 449 468 // rotate on z-y plane 469 ptr = start; 450 470 alpha = atan(-n->at(1)/n->at(2)); 451 471 DoLog(1) && (Log() << Verbose(1) << "Z-Y-angle: " << alpha << " ... "); 452 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 453 tmp = (*iter)->x[1]; 454 (*iter)->x[1] = cos(alpha) * tmp + sin(alpha) * (*iter)->x[2]; 455 (*iter)->x[2] = -sin(alpha) * tmp + cos(alpha) * (*iter)->x[2]; 472 while (ptr->next != end) { 473 ptr = ptr->next; 474 tmp = ptr->x[1]; 475 ptr->x[1] = cos(alpha) * tmp + sin(alpha) * ptr->x[2]; 476 ptr->x[2] = -sin(alpha) * tmp + cos(alpha) * ptr->x[2]; 456 477 for (int j=0;j<MDSteps;j++) { 457 tmp = (*iter)->Trajectory.R.at(j)[1];458 (*iter)->Trajectory.R.at(j)[1] = cos(alpha) * tmp + sin(alpha) * (*iter)->Trajectory.R.at(j)[2];459 (*iter)->Trajectory.R.at(j)[2] = -sin(alpha) * tmp + cos(alpha) * (*iter)->Trajectory.R.at(j)[2];478 tmp = ptr->Trajectory.R.at(j)[1]; 479 ptr->Trajectory.R.at(j)[1] = cos(alpha) * tmp + sin(alpha) * ptr->Trajectory.R.at(j)[2]; 480 ptr->Trajectory.R.at(j)[2] = -sin(alpha) * tmp + cos(alpha) * ptr->Trajectory.R.at(j)[2]; 460 481 } 461 482 } … … 481 502 Vector a,b,c,d; 482 503 struct lsq_params *par = (struct lsq_params *)params; 504 atom *ptr = par->mol->start; 483 505 484 506 // initialize vectors … … 490 512 b[2] = gsl_vector_get(x,5); 491 513 // go through all atoms 492 for (molecule::const_iterator iter = par->mol->begin(); iter != par->mol->end(); ++iter) { 493 if ((*iter)->type == ((struct lsq_params *)params)->type) { // for specific type 494 c = (*iter)->x - a; 514 while (ptr != par->mol->end) { 515 ptr = ptr->next; 516 if (ptr->type == ((struct lsq_params *)params)->type) { // for specific type 517 c = ptr->x - a; 495 518 t = c.ScalarProduct(b); // get direction parameter 496 519 d = t*b; // and create vector -
src/molecule_graph.cpp
r1024cb r42af9e 20 20 #include "World.hpp" 21 21 #include "Helpers/fast_functions.hpp" 22 #include "Helpers/Assert.hpp"23 24 22 25 23 struct BFSAccounting … … 82 80 flip(atom1, atom2); 83 81 Walker = FindAtom(atom1); 84 ASSERT(Walker,"Could not find an atom with the ID given in dbond file");85 82 OtherWalker = FindAtom(atom2); 86 ASSERT(OtherWalker,"Could not find an atom with the ID given in dbond file");87 83 AddBond(Walker, OtherWalker); //Add the bond between the two atoms with respective indices. 88 84 } … … 113 109 atom *Walker = NULL; 114 110 atom *OtherWalker = NULL; 111 atom **AtomMap = NULL; 115 112 int n[NDIM]; 116 113 double MinDistance, MaxDistance; … … 137 134 138 135 // count atoms in molecule = dimension of matrix (also give each unique name and continuous numbering) 139 DoLog(1) && (Log() << Verbose(1) << "AtomCount " << getAtomCount() << " and bonddistance is " << bonddistance << "." << endl); 140 141 if ((getAtomCount() > 1) && (bonddistance > 1.)) { 136 CountAtoms(); 137 DoLog(1) && (Log() << Verbose(1) << "AtomCount " << AtomCount << " and bonddistance is " << bonddistance << "." << endl); 138 139 if ((AtomCount > 1) && (bonddistance > 1.)) { 142 140 DoLog(2) && (Log() << Verbose(2) << "Creating Linked Cell structure ... " << endl); 143 141 LC = new LinkedCell(this, bonddistance); … … 145 143 // create a list to map Tesselpoint::nr to atom * 146 144 DoLog(2) && (Log() << Verbose(2) << "Creating TesselPoint to atom map ... " << endl); 147 148 // set numbers for atoms that can later be used 149 int i=0; 150 for(internal_iterator iter = atoms.begin();iter!= atoms.end(); ++iter){ 151 (*iter)->nr = i++; 145 AtomMap = new atom *[AtomCount]; 146 for (int i=0;i<AtomCount;i++) 147 AtomMap[i] = NULL; 148 Walker = start; 149 while (Walker->next != end) { 150 Walker = Walker->next; 151 AtomMap[Walker->nr] = Walker; 152 152 } 153 153 … … 161 161 if (List != NULL) { 162 162 for (LinkedCell::LinkedNodes::const_iterator Runner = List->begin(); Runner != List->end(); Runner++) { 163 Walker = dynamic_cast<atom*>(*Runner); 164 ASSERT(Walker,"Tesselpoint that was not an atom retrieved from LinkedNode"); 165 //Log() << Verbose(0) << "Current Atom is " << *Walker << "." << endl; 163 Walker = AtomMap[(*Runner)->nr]; 164 // Log() << Verbose(0) << "Current Atom is " << *Walker << "." << endl; 166 165 // 3c. check for possible bond between each atom in this and every one in the 27 cells 167 166 for (n[0] = -1; n[0] <= 1; n[0]++) … … 173 172 for (LinkedCell::LinkedNodes::const_iterator OtherRunner = OtherList->begin(); OtherRunner != OtherList->end(); OtherRunner++) { 174 173 if ((*OtherRunner)->nr > Walker->nr) { 175 OtherWalker = dynamic_cast<atom*>(*OtherRunner); 176 ASSERT(OtherWalker,"TesselPoint that was not an atom retrieved from LinkedNode"); 177 //Log() << Verbose(1) << "Checking distance " << OtherWalker->x.PeriodicDistanceSquared(&(Walker->x), cell_size) << " against typical bond length of " << bonddistance*bonddistance << "." << endl; 174 OtherWalker = AtomMap[(*OtherRunner)->nr]; 175 // Log() << Verbose(0) << "Current other Atom is " << *OtherWalker << "." << endl; 176 const double distance = OtherWalker->x.PeriodicDistanceSquared(Walker->x, cell_size); 177 // Log() << Verbose(1) << "Checking distance " << distance << " against typical bond length of " << bonddistance*bonddistance << "." << endl; 178 178 (BG->*minmaxdistance)(Walker, OtherWalker, MinDistance, MaxDistance, IsAngstroem); 179 const double distance = OtherWalker->x.PeriodicDistanceSquared(Walker->x,cell_size);180 179 const bool status = (distance <= MaxDistance * MaxDistance) && (distance >= MinDistance * MinDistance); 181 180 // Log() << Verbose(1) << "MinDistance is " << MinDistance << " and MaxDistance is " << MaxDistance << "." << endl; … … 197 196 } 198 197 } 198 delete[](AtomMap); 199 199 delete (LC); 200 200 DoLog(1) && (Log() << Verbose(1) << "I detected " << BondCount << " bonds in the molecule with distance " << BondDistance << "." << endl); … … 207 207 ActOnAllAtoms( &atom::OutputBondOfAtom ); 208 208 } else 209 DoLog(1) && (Log() << Verbose(1) << "AtomCount is " << getAtomCount()<< ", thus no bonds, no connections!." << endl);209 DoLog(1) && (Log() << Verbose(1) << "AtomCount is " << AtomCount << ", thus no bonds, no connections!." << endl); 210 210 DoLog(0) && (Log() << Verbose(0) << "End of CreateAdjacencyList." << endl); 211 211 if (free_BG) … … 249 249 DoLog(0) && (Log() << Verbose(0) << " done." << endl); 250 250 } else { 251 DoLog(1) && (Log() << Verbose(1) << "BondCount is " << BondCount << ", no bonds between any of the " << getAtomCount()<< " atoms." << endl);251 DoLog(1) && (Log() << Verbose(1) << "BondCount is " << BondCount << ", no bonds between any of the " << AtomCount << " atoms." << endl); 252 252 } 253 253 DoLog(0) && (Log() << Verbose(0) << No << " bonds could not be corrected." << endl); … … 469 469 void DepthFirstSearchAnalysis_Init(struct DFSAccounting &DFS, const molecule * const mol) 470 470 { 471 DFS.AtomStack = new StackClass<atom *> (mol-> getAtomCount());471 DFS.AtomStack = new StackClass<atom *> (mol->AtomCount); 472 472 DFS.CurrentGraphNr = 0; 473 473 DFS.ComponentNumber = 0; … … 510 510 bond *Binder = NULL; 511 511 512 if ( getAtomCount()== 0)512 if (AtomCount == 0) 513 513 return SubGraphs; 514 514 DoLog(0) && (Log() << Verbose(0) << "Begin of DepthFirstSearchAnalysis" << endl); 515 515 DepthFirstSearchAnalysis_Init(DFS, this); 516 516 517 for (molecule::const_iterator iter = begin(); iter != end();) {518 DFS.Root = *iter;517 DFS.Root = start->next; 518 while (DFS.Root != end) { // if there any atoms at all 519 519 // (1) mark all edges unused, empty stack, set atom->GraphNr = -1 for all 520 520 DFS.AtomStack->ClearStack(); … … 556 556 557 557 // step on to next root 558 while (( iter != end()) && ((*iter)->GraphNr != -1)) {559 //Log() << Verbose(1) << "Current next subgraph root candidate is " << (*iter)->Name << "." << endl;560 if ( (*iter)->GraphNr != -1) // if already discovered, step on561 iter++;558 while ((DFS.Root != end) && (DFS.Root->GraphNr != -1)) { 559 //Log() << Verbose(1) << "Current next subgraph root candidate is " << Root->Name << "." << endl; 560 if (DFS.Root->GraphNr != -1) // if already discovered, step on 561 DFS.Root = DFS.Root->next; 562 562 } 563 563 } … … 864 864 if (MinRingSize != -1) { // if rings are present 865 865 // go over all atoms 866 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 867 Root = *iter; 868 869 if (MinimumRingSize[Root->GetTrueFather()->nr] == mol->getAtomCount()) { // check whether MinimumRingSize is set, if not BFS to next where it is 866 Root = mol->start; 867 while (Root->next != mol->end) { 868 Root = Root->next; 869 870 if (MinimumRingSize[Root->GetTrueFather()->nr] == mol->AtomCount) { // check whether MinimumRingSize is set, if not BFS to next where it is 870 871 Walker = Root; 871 872 872 873 //Log() << Verbose(1) << "---------------------------------------------------------------------------------------------------------" << endl; 873 CyclicStructureAnalysis_BFSToNextCycle(Root, Walker, MinimumRingSize, mol-> getAtomCount());874 CyclicStructureAnalysis_BFSToNextCycle(Root, Walker, MinimumRingSize, mol->AtomCount); 874 875 875 876 } … … 901 902 int MinRingSize = -1; 902 903 903 InitializeBFSAccounting(BFS, getAtomCount());904 InitializeBFSAccounting(BFS, AtomCount); 904 905 905 906 //Log() << Verbose(1) << "Back edge list - "; … … 1144 1145 CurrentBondsOfAtom = -1; // we count one too far due to line end 1145 1146 // parse into structure 1146 if ((AtomNr >= 0) && (AtomNr < getAtomCount())) {1147 if ((AtomNr >= 0) && (AtomNr < AtomCount)) { 1147 1148 Walker = ListOfAtoms[AtomNr]; 1148 1149 while (!line.eof()) … … 1323 1324 AddedAtomList[Root->nr] = Mol->AddCopyAtom(Root); 1324 1325 1325 BreadthFirstSearchAdd_Init(BFS, Root, BondOrder, getAtomCount(), AddedAtomList);1326 BreadthFirstSearchAdd_Init(BFS, Root, BondOrder, AtomCount, AddedAtomList); 1326 1327 1327 1328 // and go on ... Queue always contains all lightgray vertices … … 1381 1382 // fill parent list with sons 1382 1383 DoLog(3) && (Log() << Verbose(3) << "Filling Parent List." << endl); 1383 for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) { 1384 ParentList[(*iter)->father->nr] = (*iter); 1384 atom *Walker = mol->start; 1385 while (Walker->next != mol->end) { 1386 Walker = Walker->next; 1387 ParentList[Walker->father->nr] = Walker; 1385 1388 // Outputting List for debugging 1386 DoLog(4) && (Log() << Verbose(4) << "Son[" << (*iter)->father->nr << "] of " << (*iter)->father << " is " << ParentList[(*iter)->father->nr] << "." << endl); 1387 } 1388 }; 1389 DoLog(4) && (Log() << Verbose(4) << "Son[" << Walker->father->nr << "] of " << Walker->father << " is " << ParentList[Walker->father->nr] << "." << endl); 1390 } 1391 1392 } 1393 ; 1389 1394 1390 1395 void BuildInducedSubgraph_Finalize(atom **&ParentList) … … 1397 1402 { 1398 1403 bool status = true; 1404 atom *Walker = NULL; 1399 1405 atom *OtherAtom = NULL; 1400 1406 // check each entry of parent list and if ok (one-to-and-onto matching) create bonds 1401 1407 DoLog(3) && (Log() << Verbose(3) << "Creating bonds." << endl); 1402 for (molecule::const_iterator iter = Father->begin(); iter != Father->end(); ++iter) { 1403 if (ParentList[(*iter)->nr] != NULL) { 1404 if (ParentList[(*iter)->nr]->father != (*iter)) { 1408 Walker = Father->start; 1409 while (Walker->next != Father->end) { 1410 Walker = Walker->next; 1411 if (ParentList[Walker->nr] != NULL) { 1412 if (ParentList[Walker->nr]->father != Walker) { 1405 1413 status = false; 1406 1414 } else { 1407 for (BondList::const_iterator Runner = (*iter)->ListOfBonds.begin(); Runner != (*iter)->ListOfBonds.end(); (++Runner)) {1408 OtherAtom = (*Runner)->GetOtherAtom( (*iter));1415 for (BondList::const_iterator Runner = Walker->ListOfBonds.begin(); Runner != Walker->ListOfBonds.end(); (++Runner)) { 1416 OtherAtom = (*Runner)->GetOtherAtom(Walker); 1409 1417 if (ParentList[OtherAtom->nr] != NULL) { // if otheratom is also a father of an atom on this molecule, create the bond 1410 DoLog(4) && (Log() << Verbose(4) << "Endpoints of Bond " << (*Runner) << " are both present: " << ParentList[ (*iter)->nr]->getName() << " and " << ParentList[OtherAtom->nr]->getName() << "." << endl);1411 mol->AddBond(ParentList[ (*iter)->nr], ParentList[OtherAtom->nr], (*Runner)->BondDegree);1418 DoLog(4) && (Log() << Verbose(4) << "Endpoints of Bond " << (*Runner) << " are both present: " << ParentList[Walker->nr]->getName() << " and " << ParentList[OtherAtom->nr]->getName() << "." << endl); 1419 mol->AddBond(ParentList[Walker->nr], ParentList[OtherAtom->nr], (*Runner)->BondDegree); 1412 1420 } 1413 1421 } … … 1432 1440 bool status = true; 1433 1441 atom **ParentList = NULL; 1442 1434 1443 DoLog(2) && (Log() << Verbose(2) << "Begin of BuildInducedSubgraph." << endl); 1435 BuildInducedSubgraph_Init(ParentList, Father-> getAtomCount());1444 BuildInducedSubgraph_Init(ParentList, Father->AtomCount); 1436 1445 BuildInducedSubgraph_FillParentList(this, Father, ParentList); 1437 1446 status = BuildInducedSubgraph_CreateBondsFromParent(this, Father, ParentList); -
src/molecule_pointcloud.cpp
r1024cb r42af9e 8 8 #include "atom.hpp" 9 9 #include "config.hpp" 10 #include "info.hpp"11 10 #include "memoryallocator.hpp" 12 11 #include "molecule.hpp" … … 32 31 }; 33 32 34 35 /** PointCloud implementation of GoPoint 36 * Uses atoms and STL stuff. 33 /** Return current atom in the list. 34 * \return pointer to atom or NULL if none present 37 35 */ 38 TesselPoint *molecule::GetPoint() const36 TesselPoint *molecule::GetPoint() const 39 37 { 40 Info FunctionInfo(__func__); 41 return (*InternalPointer); 38 if ((InternalPointer != start) && (InternalPointer != end)) 39 return InternalPointer; 40 else 41 return NULL; 42 42 }; 43 43 44 /** PointCloud implementation of GoToNext. 45 * Uses atoms and STL stuff. 44 /** Return pointer to one after last atom in the list. 45 * \return pointer to end marker 46 */ 47 TesselPoint *molecule::GetTerminalPoint() const 48 { 49 return end; 50 }; 51 52 /** Return the greatest index of all atoms in the list. 53 * \return greatest index 54 */ 55 int molecule::GetMaxId() const 56 { 57 return last_atom; 58 }; 59 60 /** Go to next atom. 61 * Stops at last one. 46 62 */ 47 63 void molecule::GoToNext() const 48 64 { 49 Info FunctionInfo(__func__); 50 if (InternalPointer != atoms.end()) 51 InternalPointer++; 65 if (InternalPointer != end) 66 InternalPointer = InternalPointer->next; 52 67 }; 53 68 54 /** PointCloud implementation of GoToFirst. 55 * Uses atoms and STL stuff. 69 /** Go to previous atom. 70 * Stops at first one. 71 */ 72 void molecule::GoToPrevious() const 73 { 74 if (InternalPointer->previous != start) 75 InternalPointer = InternalPointer->previous; 76 }; 77 78 /** Goes to first atom. 56 79 */ 57 80 void molecule::GoToFirst() const 58 81 { 59 Info FunctionInfo(__func__); 60 InternalPointer = atoms.begin(); 82 InternalPointer = start->next; 61 83 }; 62 84 63 /** PointCloud implementation of IsEmpty. 64 * Uses atoms and STL stuff. 85 /** Goes to last atom. 86 */ 87 void molecule::GoToLast() const 88 { 89 InternalPointer = end->previous; 90 }; 91 92 /** Checks whether we have any atoms in molecule. 93 * \return true - no atoms, false - not empty 65 94 */ 66 95 bool molecule::IsEmpty() const 67 96 { 68 Info FunctionInfo(__func__); 69 return (empty()); 97 return (start->next == end); 70 98 }; 71 99 72 /** PointCloud implementation of IsLast.73 * Uses atoms and STL stuff.100 /** Checks whether we are at the last atom 101 * \return true - current atom is last one, false - is not last one 74 102 */ 75 103 bool molecule::IsEnd() const 76 104 { 77 Info FunctionInfo(__func__); 78 return (InternalPointer == atoms.end()); 105 return (InternalPointer == end); 79 106 }; 80 81 int molecule::GetMaxId() const {82 return getAtomCount();83 } -
src/molecule_template.hpp
r1024cb r42af9e 24 24 template <typename res> void molecule::ActOnAllVectors( res (Vector::*f)() ) const 25 25 { 26 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 27 (((*iter)->node)->*f)(); 26 atom *Walker = start; 27 while (Walker->next != end) { 28 Walker = Walker->next; 29 ((Walker->node)->*f)(); 28 30 } 29 31 }; 30 32 template <typename res> void molecule::ActOnAllVectors( res (Vector::*f)() const ) const 31 33 { 32 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 33 (((*iter)->node)->*f)(); 34 atom *Walker = start; 35 while (Walker->next != end) { 36 Walker = Walker->next; 37 ((Walker->node)->*f)(); 34 38 } 35 39 }; … … 37 41 template <typename res, typename T> void molecule::ActOnAllVectors( res (Vector::*f)(T), T t ) const 38 42 { 39 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 40 (((*iter)->node)->*f)(t); 43 atom *Walker = start; 44 while (Walker->next != end) { 45 Walker = Walker->next; 46 ((Walker->node)->*f)(t); 41 47 } 42 48 }; 43 49 template <typename res, typename T> void molecule::ActOnAllVectors( res (Vector::*f)(T) const, T t ) const 44 50 { 45 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 46 (((*iter)->node)->*f)(t); 51 atom *Walker = start; 52 while (Walker->next != end) { 53 Walker = Walker->next; 54 ((Walker->node)->*f)(t); 47 55 } 48 56 }; 49 57 template <typename res, typename T> void molecule::ActOnAllVectors( res (Vector::*f)(T&), T &t ) const 50 58 { 51 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 52 (((*iter)->node)->*f)(t); 59 atom *Walker = start; 60 while (Walker->next != end) { 61 Walker = Walker->next; 62 ((Walker->node)->*f)(t); 53 63 } 54 64 }; 55 65 template <typename res, typename T> void molecule::ActOnAllVectors( res (Vector::*f)(T&) const, T &t ) const 56 66 { 57 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 58 (((*iter)->node)->*f)(t); 67 atom *Walker = start; 68 while (Walker->next != end) { 69 Walker = Walker->next; 70 ((Walker->node)->*f)(t); 59 71 } 60 72 }; … … 62 74 template <typename res, typename T, typename U> void molecule::ActOnAllVectors( res (Vector::*f)(T, U), T t, U u ) const 63 75 { 64 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 65 (((*iter)->node)->*f)(t, u); 76 atom *Walker = start; 77 while (Walker->next != end) { 78 Walker = Walker->next; 79 ((Walker->node)->*f)(t, u); 66 80 } 67 81 }; 68 82 template <typename res, typename T, typename U> void molecule::ActOnAllVectors( res (Vector::*f)(T, U) const, T t, U u ) const 69 83 { 70 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 71 (((*iter)->node)->*f)(t, u); 84 atom *Walker = start; 85 while (Walker->next != end) { 86 Walker = Walker->next; 87 ((Walker->node)->*f)(t, u); 72 88 } 73 89 }; … … 75 91 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 92 { 77 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 78 (((*iter)->node)->*f)(t, u, v); 93 atom *Walker = start; 94 while (Walker->next != end) { 95 Walker = Walker->next; 96 ((Walker->node)->*f)(t, u, v); 79 97 } 80 98 }; 81 99 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 100 { 83 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 84 (((*iter)->node)->*f)(t, u, v); 101 atom *Walker = start; 102 while (Walker->next != end) { 103 Walker = Walker->next; 104 ((Walker->node)->*f)(t, u, v); 85 105 } 86 106 }; … … 92 112 { 93 113 res result = 0; 94 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 95 result += ((*iter)->*f)(); 114 atom *Walker = start; 115 while (Walker->next != end) { 116 Walker = Walker->next; 117 result += (Walker->*f)(); 96 118 } 97 119 return result; … … 100 122 { 101 123 res result = 0; 102 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 103 result += ((*iter)->*f)(); 124 atom *Walker = start; 125 while (Walker->next != end) { 126 Walker = Walker->next; 127 result += (Walker->*f)(); 104 128 } 105 129 return result; … … 109 133 { 110 134 res result = 0; 111 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 112 result += ((*iter)->*f)(t); 135 atom *Walker = start; 136 while (Walker->next != end) { 137 Walker = Walker->next; 138 result += (Walker->*f)(t); 113 139 } 114 140 return result; … … 117 143 { 118 144 res result = 0; 119 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 120 result += ((*iter)->*f)(t); 145 atom *Walker = start; 146 while (Walker->next != end) { 147 Walker = Walker->next; 148 result += (Walker->*f)(t); 121 149 } 122 150 return result; … … 129 157 template <typename res> void molecule::ActWithEachAtom( res (molecule::*f)(atom *)) const 130 158 { 131 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 132 (*f)((*iter)); 159 atom *Walker = start; 160 while (Walker->next != end) { 161 Walker = Walker->next; 162 (*f)(Walker); 133 163 } 134 164 }; 135 165 template <typename res> void molecule::ActWithEachAtom( res (molecule::*f)(atom *) const) const 136 166 { 137 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 138 (*f)((*iter)); 167 atom *Walker = start; 168 while (Walker->next != end) { 169 Walker = Walker->next; 170 (*f)(Walker); 139 171 } 140 172 }; … … 145 177 template <typename res> void molecule::ActOnCopyWithEachAtom( res (molecule::*f)(atom *) , molecule *copy) const 146 178 { 147 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 148 (copy->*f)((*iter)); 179 atom *Walker = start; 180 while (Walker->next != end) { 181 Walker = Walker->next; 182 (copy->*f)(Walker); 149 183 } 150 184 }; 151 185 template <typename res> void molecule::ActOnCopyWithEachAtom( res (molecule::*f)(atom *) const, molecule *copy) const 152 186 { 153 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 154 (copy->*f)((*iter)); 187 atom *Walker = start; 188 while (Walker->next != end) { 189 Walker = Walker->next; 190 (copy->*f)(Walker); 155 191 } 156 192 }; … … 161 197 template <typename res> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) () ) const 162 198 { 163 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 164 if (((*iter)->*condition)()) 165 (copy->*f)((*iter)); 199 atom *Walker = start; 200 while (Walker->next != end) { 201 Walker = Walker->next; 202 if ((Walker->*condition)()) 203 (copy->*f)(Walker); 166 204 } 167 205 }; 168 206 template <typename res> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) () const ) const 169 207 { 170 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 171 if (((*iter)->*condition)()) 172 (copy->*f)((*iter)); 208 atom *Walker = start; 209 while (Walker->next != end) { 210 Walker = Walker->next; 211 if ((Walker->*condition)()) 212 (copy->*f)(Walker); 173 213 } 174 214 }; 175 215 template <typename res> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const , molecule *copy, bool (atom::*condition) () ) const 176 216 { 177 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 178 if (((*iter)->*condition)()) 179 (copy->*f)((*iter)); 217 atom *Walker = start; 218 while (Walker->next != end) { 219 Walker = Walker->next; 220 if ((Walker->*condition)()) 221 (copy->*f)(Walker); 180 222 } 181 223 }; 182 224 template <typename res> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const, molecule *copy, bool (atom::*condition) () const ) const 183 225 { 184 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 185 if (((*iter)->*condition)()) 186 (copy->*f)((*iter)); 226 atom *Walker = start; 227 while (Walker->next != end) { 228 Walker = Walker->next; 229 if ((Walker->*condition)()) 230 (copy->*f)(Walker); 187 231 } 188 232 }; … … 190 234 template <typename res, typename T> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T), T t ) const 191 235 { 192 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 193 if (((*iter)->*condition)(t)) 194 (copy->*f)((*iter)); 236 atom *Walker = start; 237 while (Walker->next != end) { 238 Walker = Walker->next; 239 if ((Walker->*condition)(t)) 240 (copy->*f)(Walker); 195 241 } 196 242 }; 197 243 template <typename res, typename T> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T) const, T t ) const 198 244 { 199 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 200 if (((*iter)->*condition)(t)) 201 (copy->*f)((*iter)); 245 atom *Walker = start; 246 while (Walker->next != end) { 247 Walker = Walker->next; 248 if ((Walker->*condition)(t)) 249 (copy->*f)(Walker); 202 250 } 203 251 }; 204 252 template <typename res, typename T> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const, molecule *copy, bool (atom::*condition) (T), T t ) const 205 253 { 206 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 207 if (((*iter)->*condition)(t)) 208 (copy->*f)((*iter)); 254 atom *Walker = start; 255 while (Walker->next != end) { 256 Walker = Walker->next; 257 if ((Walker->*condition)(t)) 258 (copy->*f)(Walker); 209 259 } 210 260 }; 211 261 template <typename res, typename T> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const, molecule *copy, bool (atom::*condition) (T) const, T t ) const 212 262 { 213 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 214 if (((*iter)->*condition)(t)) 215 (copy->*f)((*iter)); 263 atom *Walker = start; 264 while (Walker->next != end) { 265 Walker = Walker->next; 266 if ((Walker->*condition)(t)) 267 (copy->*f)(Walker); 216 268 } 217 269 }; … … 219 271 template <typename res, typename T, typename U> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T, U), T t, U u ) const 220 272 { 221 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 222 if (((*iter)->*condition)(t,u)) 223 (copy->*f)((*iter)); 273 atom *Walker = start; 274 while (Walker->next != end) { 275 Walker = Walker->next; 276 if ((Walker->*condition)(t,u)) 277 (copy->*f)(Walker); 224 278 } 225 279 }; 226 280 template <typename res, typename T, typename U> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T, U) const, T t, U u ) const 227 281 { 228 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 229 if (((*iter)->*condition)(t,u)) 230 (copy->*f)((*iter)); 282 atom *Walker = start; 283 while (Walker->next != end) { 284 Walker = Walker->next; 285 if ((Walker->*condition)(t,u)) 286 (copy->*f)(Walker); 231 287 } 232 288 }; 233 289 template <typename res, typename T, typename U> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const, molecule *copy, bool (atom::*condition) (T, U), T t, U u ) const 234 290 { 235 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 236 if (((*iter)->*condition)(t,u)) 237 (copy->*f)((*iter)); 291 atom *Walker = start; 292 while (Walker->next != end) { 293 Walker = Walker->next; 294 if ((Walker->*condition)(t,u)) 295 (copy->*f)(Walker); 238 296 } 239 297 }; 240 298 template <typename res, typename T, typename U> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const, molecule *copy, bool (atom::*condition) (T, U) const, T t, U u ) const 241 299 { 242 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 243 if (((*iter)->*condition)(t,u)) 244 (copy->*f)((*iter)); 300 atom *Walker = start; 301 while (Walker->next != end) { 302 Walker = Walker->next; 303 if ((Walker->*condition)(t,u)) 304 (copy->*f)(Walker); 245 305 } 246 306 }; … … 248 308 template <typename res, typename T, typename U, typename V> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T, U, V), T t, U u, V v ) const 249 309 { 250 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 251 if (((*iter)->*condition)(t,u,v)) 252 (copy->*f)((*iter)); 310 atom *Walker = start; 311 while (Walker->next != end) { 312 Walker = Walker->next; 313 if ((Walker->*condition)(t,u,v)) 314 (copy->*f)(Walker); 253 315 } 254 316 }; 255 317 template <typename res, typename T, typename U, typename V> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T, U, V) const, T t, U u, V v ) const 256 318 { 257 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 258 if (((*iter)->*condition)(t,u,v)) 259 (copy->*f)((*iter)); 319 atom *Walker = start; 320 while (Walker->next != end) { 321 Walker = Walker->next; 322 if ((Walker->*condition)(t,u,v)) 323 (copy->*f)(Walker); 260 324 } 261 325 }; 262 326 template <typename res, typename T, typename U, typename V> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const, molecule *copy, bool (atom::*condition) (T, U, V), T t, U u, V v ) const 263 327 { 264 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 265 if (((*iter)->*condition)(t,u,v)) 266 (copy->*f)((*iter)); 328 atom *Walker = start; 329 while (Walker->next != end) { 330 Walker = Walker->next; 331 if ((Walker->*condition)(t,u,v)) 332 (copy->*f)(Walker); 267 333 } 268 334 }; 269 335 template <typename res, typename T, typename U, typename V> void molecule::ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const, molecule *copy, bool (atom::*condition) (T, U, V) const, T t, U u, V v ) const 270 336 { 271 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 272 if (((*iter)->*condition)(t,u,v)) 273 (copy->*f)((*iter)); 337 atom *Walker = start; 338 while (Walker->next != end) { 339 Walker = Walker->next; 340 if ((Walker->*condition)(t,u,v)) 341 (copy->*f)(Walker); 274 342 } 275 343 }; … … 280 348 template <typename res, typename typ> void molecule::ActOnAllAtoms( res (typ::*f)()) const 281 349 { 282 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 283 ((*iter)->*f)(); 350 atom *Walker = start; 351 while (Walker->next != end) { 352 Walker = Walker->next; 353 (Walker->*f)(); 284 354 } 285 355 }; 286 356 template <typename res, typename typ> void molecule::ActOnAllAtoms( res (typ::*f)() const) const 287 357 { 288 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 289 ((*iter)->*f)(); 358 atom *Walker = start; 359 while (Walker->next != end) { 360 Walker = Walker->next; 361 (Walker->*f)(); 290 362 } 291 363 }; … … 293 365 template <typename res, typename typ, typename T> void molecule::ActOnAllAtoms( res (typ::*f)(T), T t ) const 294 366 { 295 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 296 ((*iter)->*f)(t); 367 atom *Walker = start; 368 while (Walker->next != end) { 369 Walker = Walker->next; 370 (Walker->*f)(t); 297 371 } 298 372 }; 299 373 template <typename res, typename typ, typename T> void molecule::ActOnAllAtoms( res (typ::*f)(T) const, T t ) const 300 374 { 301 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 302 ((*iter)->*f)(t); 375 atom *Walker = start; 376 while (Walker->next != end) { 377 Walker = Walker->next; 378 (Walker->*f)(t); 303 379 } 304 380 }; … … 306 382 template <typename res, typename typ, typename T, typename U> void molecule::ActOnAllAtoms( res (typ::*f)(T, U), T t, U u ) const 307 383 { 308 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 309 ((*iter)->*f)(t, u); 384 atom *Walker = start; 385 while (Walker->next != end) { 386 Walker = Walker->next; 387 (Walker->*f)(t, u); 310 388 } 311 389 }; 312 390 template <typename res, typename typ, typename T, typename U> void molecule::ActOnAllAtoms( res (typ::*f)(T, U) const, T t, U u ) const 313 391 { 314 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 315 ((*iter)->*f)(t, u); 392 atom *Walker = start; 393 while (Walker->next != end) { 394 Walker = Walker->next; 395 (Walker->*f)(t, u); 316 396 } 317 397 }; … … 319 399 template <typename res, typename typ, typename T, typename U, typename V> void molecule::ActOnAllAtoms( res (typ::*f)(T, U, V), T t, U u, V v) const 320 400 { 321 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 322 ((*iter)->*f)(t, u, v); 401 atom *Walker = start; 402 while (Walker->next != end) { 403 Walker = Walker->next; 404 (Walker->*f)(t, u, v); 323 405 } 324 406 }; 325 407 template <typename res, typename typ, typename T, typename U, typename V> void molecule::ActOnAllAtoms( res (typ::*f)(T, U, V) const, T t, U u, V v) const 326 408 { 327 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 328 ((*iter)->*f)(t, u, v); 409 atom *Walker = start; 410 while (Walker->next != end) { 411 Walker = Walker->next; 412 (Walker->*f)(t, u, v); 329 413 } 330 414 }; … … 332 416 template <typename res, typename typ, typename T, typename U, typename V, typename W> void molecule::ActOnAllAtoms( res (typ::*f)(T, U, V, W), T t, U u, V v, W w) const 333 417 { 334 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 335 ((*iter)->*f)(t, u, v, w); 418 atom *Walker = start; 419 while (Walker->next != end) { 420 Walker = Walker->next; 421 (Walker->*f)(t, u, v, w); 336 422 } 337 423 }; 338 424 template <typename res, typename typ, typename T, typename U, typename V, typename W> void molecule::ActOnAllAtoms( res (typ::*f)(T, U, V, W) const, T t, U u, V v, W w) const 339 425 { 340 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 341 ((*iter)->*f)(t, u, v, w); 426 atom *Walker = start; 427 while (Walker->next != end) { 428 Walker = Walker->next; 429 (Walker->*f)(t, u, v, w); 342 430 } 343 431 }; … … 348 436 template <typename T> void molecule::SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, void (*Setor)(T *, T *) ) const 349 437 { 438 atom *Walker = start; 350 439 int inc = 1; 351 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 352 (*Setor) (&array[((*iter)->*index)], &inc); 440 while (Walker->next != end) { 441 Walker = Walker->next; 442 (*Setor) (&array[(Walker->*index)], &inc); 353 443 } 354 444 }; 355 445 template <typename T> void molecule::SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, void (*Setor)(T *, T *), T value ) const 356 446 { 357 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 358 (*Setor) (&array[((*iter)->*index)], &value); 447 atom *Walker = start; 448 while (Walker->next != end) { 449 Walker = Walker->next; 450 (*Setor) (&array[(Walker->*index)], &value); 359 451 } 360 452 }; 361 453 template <typename T> void molecule::SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, void (*Setor)(T *, T *), T *value ) const 362 454 { 363 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 364 (*Setor) (&array[((*iter)->*index)], value); 455 atom *Walker = start; 456 while (Walker->next != end) { 457 Walker = Walker->next; 458 (*Setor) (&array[(Walker->*index)], value); 365 459 } 366 460 }; … … 368 462 template <typename T> void molecule::SetIndexedArrayForEachAtomTo ( T *array, int element::*index, void (*Setor)(T *, T *) ) const 369 463 { 464 atom *Walker = start; 370 465 int inc = 1; 371 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 372 (*Setor) (&array[((*iter)->type->*index)], &inc); 466 while (Walker->next != end) { 467 Walker = Walker->next; 468 (*Setor) (&array[(Walker->type->*index)], &inc); 373 469 } 374 470 }; 375 471 template <typename T> void molecule::SetIndexedArrayForEachAtomTo ( T *array, int element::*index, void (*Setor)(T *, T *), T value ) const 376 472 { 377 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 378 (*Setor) (&array[((*iter)->type->*index)], &value); 473 atom *Walker = start; 474 while (Walker->next != end) { 475 Walker = Walker->next; 476 (*Setor) (&array[(Walker->type->*index)], &value); 379 477 } 380 478 }; 381 479 template <typename T> void molecule::SetIndexedArrayForEachAtomTo ( T *array, int element::*index, void (*Setor)(T *, T *), T *value ) const 382 480 { 383 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 384 (*Setor) (&array[((*iter)->type->*index)], value); 481 atom *Walker = start; 482 while (Walker->next != end) { 483 Walker = Walker->next; 484 (*Setor) (&array[(Walker->type->*index)], value); 385 485 } 386 486 }; … … 388 488 template <typename T, typename typ> void molecule::SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, T (atom::*Setor)(typ &), typ atom::*value ) const 389 489 { 390 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 391 array[((*iter)->*index)] = ((*iter)->*Setor) ((*iter)->*value); 490 atom *Walker = start; 491 while (Walker->next != end) { 492 Walker = Walker->next; 493 array[(Walker->*index)] = (Walker->*Setor) (Walker->*value); 392 494 } 393 495 }; 394 496 template <typename T, typename typ> void molecule::SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, T (atom::*Setor)(typ &) const, typ atom::*value ) const 395 497 { 396 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 397 array[((*iter)->*index)] = ((*iter)->*Setor) ((*iter)->*value); 498 atom *Walker = start; 499 while (Walker->next != end) { 500 Walker = Walker->next; 501 array[(Walker->*index)] = (Walker->*Setor) (Walker->*value); 398 502 } 399 503 }; 400 504 template <typename T, typename typ> void molecule::SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, T (atom::*Setor)(typ &), typ &vect ) const 401 505 { 402 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 403 array[((*iter)->*index)] = ((*iter)->*Setor) (vect); 506 atom *Walker = start; 507 while (Walker->next != end) { 508 Walker = Walker->next; 509 array[(Walker->*index)] = (Walker->*Setor) (vect); 404 510 } 405 511 }; 406 512 template <typename T, typename typ> void molecule::SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, T (atom::*Setor)(typ &) const, typ &vect ) const 407 513 { 408 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 409 array[((*iter)->*index)] = ((*iter)->*Setor) (vect); 514 atom *Walker = start; 515 while (Walker->next != end) { 516 Walker = Walker->next; 517 array[(Walker->*index)] = (Walker->*Setor) (vect); 410 518 } 411 519 }; 412 520 template <typename T, typename typ, typename typ2> void molecule::SetAtomValueToIndexedArray ( T *array, int typ::*index, T typ2::*value ) const 413 521 { 414 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 415 (*iter)->*value = array[((*iter)->*index)]; 416 //Log() << Verbose(2) << *(*iter) << " gets " << ((*iter)->*value); << endl; 522 atom *Walker = start; 523 while (Walker->next != end) { 524 Walker = Walker->next; 525 Walker->*value = array[(Walker->*index)]; 526 //Log() << Verbose(2) << *Walker << " gets " << (Walker->*value); << endl; 417 527 } 418 528 }; … … 420 530 template <typename T, typename typ> void molecule::SetAtomValueToValue ( T value, T typ::*ptr ) const 421 531 { 422 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 423 (*iter)->*ptr = value; 424 //Log() << Verbose(2) << *(*iter) << " gets " << ((*iter)->*ptr) << endl; 532 atom *Walker = start; 533 while (Walker->next != end) { 534 Walker = Walker->next; 535 Walker->*ptr = value; 536 //Log() << Verbose(2) << *Walker << " gets " << (Walker->*ptr) << endl; 425 537 } 426 538 }; -
src/moleculelist.cpp
r1024cb r42af9e 20 20 #include "memoryallocator.hpp" 21 21 #include "periodentafel.hpp" 22 #include " Helpers/Assert.hpp"22 #include "World.hpp" 23 23 24 24 #include "Helpers/Assert.hpp" … … 71 71 int Count, Counter, aCounter, bCounter; 72 72 int flag; 73 atom *aWalker = NULL; 74 atom *bWalker = NULL; 73 75 74 76 // sort each atom list and put the numbers into a list, then go through 75 77 //Log() << Verbose(0) << "Comparing fragment no. " << *(molecule **)a << " to " << *(molecule **)b << "." << endl; 76 // Yes those types are awkward... but check it for yourself it checks out this way 77 molecule *const *mol1_ptr= static_cast<molecule *const *>(a); 78 molecule *mol1 = *mol1_ptr; 79 molecule *const *mol2_ptr= static_cast<molecule *const *>(b); 80 molecule *mol2 = *mol2_ptr; 81 if (mol1->getAtomCount() < mol2->getAtomCount()) { 78 if ((**(molecule **) a).AtomCount < (**(molecule **) b).AtomCount) { 82 79 return -1; 83 80 } else { 84 if ( mol1->getAtomCount() > mol2->getAtomCount())81 if ((**(molecule **) a).AtomCount > (**(molecule **) b).AtomCount) 85 82 return +1; 86 83 else { 87 Count = mol1->getAtomCount();84 Count = (**(molecule **) a).AtomCount; 88 85 aList = new int[Count]; 89 86 bList = new int[Count]; 90 87 91 88 // fill the lists 89 aWalker = (**(molecule **) a).start; 90 bWalker = (**(molecule **) b).start; 92 91 Counter = 0; 93 92 aCounter = 0; 94 93 bCounter = 0; 95 molecule::const_iterator aiter = mol1->begin(); 96 molecule::const_iterator biter = mol2->begin(); 97 for (;(aiter != mol1->end()) && (biter != mol2->end()); 98 ++aiter, ++biter) { 99 if ((*aiter)->GetTrueFather() == NULL) 94 while ((aWalker->next != (**(molecule **) a).end) && (bWalker->next != (**(molecule **) b).end)) { 95 aWalker = aWalker->next; 96 bWalker = bWalker->next; 97 if (aWalker->GetTrueFather() == NULL) 100 98 aList[Counter] = Count + (aCounter++); 101 99 else 102 aList[Counter] = (*aiter)->GetTrueFather()->nr;103 if ( (*biter)->GetTrueFather() == NULL)100 aList[Counter] = aWalker->GetTrueFather()->nr; 101 if (bWalker->GetTrueFather() == NULL) 104 102 bList[Counter] = Count + (bCounter++); 105 103 else 106 bList[Counter] = (*biter)->GetTrueFather()->nr;104 bList[Counter] = bWalker->GetTrueFather()->nr; 107 105 Counter++; 108 106 } 109 107 // check if AtomCount was for real 110 108 flag = 0; 111 if ((a iter == mol1->end()) && (biter != mol2->end())) {109 if ((aWalker->next == (**(molecule **) a).end) && (bWalker->next != (**(molecule **) b).end)) { 112 110 flag = -1; 113 111 } else { 114 if ((a iter != mol1->end()) && (biter == mol2->end()))112 if ((aWalker->next != (**(molecule **) a).end) && (bWalker->next == (**(molecule **) b).end)) 115 113 flag = 1; 116 114 } … … 146 144 void MoleculeListClass::Enumerate(ostream *out) 147 145 { 146 atom *Walker = NULL; 148 147 periodentafel *periode = World::getInstance().getPeriode(); 149 148 std::map<atomicNumber_t,unsigned int> counts; … … 161 160 // count atoms per element and determine size of bounding sphere 162 161 size=0.; 163 for (molecule::const_iterator iter = (*ListRunner)->begin(); iter != (*ListRunner)->end(); ++iter) { 164 counts[(*iter)->type->getNumber()]++; 165 if ((*iter)->x.DistanceSquared(Origin) > size) 166 size = (*iter)->x.DistanceSquared(Origin); 162 Walker = (*ListRunner)->start; 163 while (Walker->next != (*ListRunner)->end) { 164 Walker = Walker->next; 165 counts[Walker->type->getNumber()]++; 166 if (Walker->x.DistanceSquared(Origin) > size) 167 size = Walker->x.DistanceSquared(Origin); 167 168 } 168 169 // output Index, Name, number of atoms, chemical formula 169 (*out) << ((*ListRunner)->ActiveFlag ? "*" : " ") << (*ListRunner)->IndexNr << "\t" << (*ListRunner)->name << "\t\t" << (*ListRunner)-> getAtomCount()<< "\t";170 (*out) << ((*ListRunner)->ActiveFlag ? "*" : " ") << (*ListRunner)->IndexNr << "\t" << (*ListRunner)->name << "\t\t" << (*ListRunner)->AtomCount << "\t"; 170 171 171 172 std::map<atomicNumber_t,unsigned int>::reverse_iterator iter; … … 203 204 204 205 // put all molecules of src into mol 205 molecule::iterator runner; 206 for (molecule::iterator iter = srcmol->begin(); iter != srcmol->end(); ++iter) { 207 runner = iter++; 208 srcmol->UnlinkAtom((*runner)); 209 mol->AddAtom((*runner)); 206 atom *Walker = srcmol->start; 207 atom *NextAtom = Walker->next; 208 while (NextAtom != srcmol->end) { 209 Walker = NextAtom; 210 NextAtom = Walker->next; 211 srcmol->UnlinkAtom(Walker); 212 mol->AddAtom(Walker); 210 213 } 211 214 … … 227 230 228 231 // put all molecules of src into mol 229 atom *Walker = NULL; 230 for (molecule::iterator iter = srcmol->begin(); iter != srcmol->end(); ++iter) { 231 Walker = mol->AddCopyAtom((*iter)); 232 atom *Walker = srcmol->start; 233 atom *NextAtom = Walker->next; 234 while (NextAtom != srcmol->end) { 235 Walker = NextAtom; 236 NextAtom = Walker->next; 237 Walker = mol->AddCopyAtom(Walker); 232 238 Walker->father = Walker; 233 239 } … … 326 332 327 333 // prepare index list for bonds 328 atom ** CopyAtoms = new atom*[srcmol->getAtomCount()]; 329 for(int i=0;i<srcmol->getAtomCount();i++) 334 srcmol->CountAtoms(); 335 atom ** CopyAtoms = new atom*[srcmol->AtomCount]; 336 for(int i=0;i<srcmol->AtomCount;i++) 330 337 CopyAtoms[i] = NULL; 331 338 332 339 // for each of the source atoms check whether we are in- or outside and add copy atom 340 atom *Walker = srcmol->start; 333 341 int nr=0; 334 for (molecule::const_iterator iter = srcmol->begin(); iter != srcmol->end(); ++iter) { 335 DoLog(2) && (Log() << Verbose(2) << "INFO: Current Walker is " << **iter << "." << endl); 336 if (!TesselStruct->IsInnerPoint((*iter)->x, LCList)) { 337 CopyAtoms[(*iter)->nr] = (*iter)->clone(); 338 mol->AddAtom(CopyAtoms[(*iter)->nr]); 342 while (Walker->next != srcmol->end) { 343 Walker = Walker->next; 344 DoLog(2) && (Log() << Verbose(2) << "INFO: Current Walker is " << *Walker << "." << endl); 345 if (!TesselStruct->IsInnerPoint(Walker->x, LCList)) { 346 CopyAtoms[Walker->nr] = Walker->clone(); 347 mol->AddAtom(CopyAtoms[Walker->nr]); 339 348 nr++; 340 349 } else { … … 342 351 } 343 352 } 344 DoLog(1) && (Log() << Verbose(1) << nr << " of " << srcmol-> getAtomCount()<< " atoms have been merged.");353 DoLog(1) && (Log() << Verbose(1) << nr << " of " << srcmol->AtomCount << " atoms have been merged."); 345 354 346 355 // go through all bonds and add as well … … 375 384 bool MoleculeListClass::AddHydrogenCorrection(char *path) 376 385 { 386 atom *Walker = NULL; 387 atom *Runner = NULL; 377 388 bond *Binder = NULL; 378 389 double ***FitConstant = NULL, **correction = NULL; … … 482 493 correction[k][j] = 0.; 483 494 // 2. take every hydrogen that is a saturated one 484 for (molecule::const_iterator iter = (*ListRunner)->begin(); iter != (*ListRunner)->end(); ++iter) { 485 //Log() << Verbose(1) << "(*iter): " << *(*iter) << " with first bond " << *((*iter)->ListOfBonds.begin()) << "." << endl; 486 if (((*iter)->type->Z == 1) && (((*iter)->father == NULL) 487 || ((*iter)->father->type->Z != 1))) { // if it's a hydrogen 488 for (molecule::const_iterator runner = (*ListRunner)->begin(); runner != (*ListRunner)->end(); ++runner) { 489 //Log() << Verbose(2) << "Runner: " << *(*runner) << " with first bond " << *((*iter)->ListOfBonds.begin()) << "." << endl; 495 Walker = (*ListRunner)->start; 496 while (Walker->next != (*ListRunner)->end) { 497 Walker = Walker->next; 498 //Log() << Verbose(1) << "Walker: " << *Walker << " with first bond " << *(Walker->ListOfBonds.begin()) << "." << endl; 499 if ((Walker->type->Z == 1) && ((Walker->father == NULL) 500 || (Walker->father->type->Z != 1))) { // if it's a hydrogen 501 Runner = (*ListRunner)->start; 502 while (Runner->next != (*ListRunner)->end) { 503 Runner = Runner->next; 504 //Log() << Verbose(2) << "Runner: " << *Runner << " with first bond " << *(Walker->ListOfBonds.begin()) << "." << endl; 490 505 // 3. take every other hydrogen that is the not the first and not bound to same bonding partner 491 Binder = *( (*runner)->ListOfBonds.begin());492 if (( (*runner)->type->Z == 1) && ((*runner)->nr > (*iter)->nr) && (Binder->GetOtherAtom((*runner)) != Binder->GetOtherAtom((*iter)))) { // (hydrogens have only one bonding partner!)506 Binder = *(Runner->ListOfBonds.begin()); 507 if ((Runner->type->Z == 1) && (Runner->nr > Walker->nr) && (Binder->GetOtherAtom(Runner) != Binder->GetOtherAtom(Walker))) { // (hydrogens have only one bonding partner!) 493 508 // 4. evaluate the morse potential for each matrix component and add up 494 distance = (*runner)->x.distance((*iter)->x);495 //Log() << Verbose(0) << "Fragment " << (*ListRunner)->name << ": " << * (*runner) << "<= " << distance << "=>" << *(*iter)<< ":" << endl;509 distance = Runner->x.distance(Walker->x); 510 //Log() << Verbose(0) << "Fragment " << (*ListRunner)->name << ": " << *Runner << "<= " << distance << "=>" << *Walker << ":" << endl; 496 511 for (int k = 0; k < a; k++) { 497 512 for (int j = 0; j < b; j++) { … … 571 586 ofstream ForcesFile; 572 587 stringstream line; 588 atom *Walker = NULL; 573 589 periodentafel *periode=World::getInstance().getPeriode(); 574 590 … … 583 599 periodentafel::const_iterator elemIter; 584 600 for(elemIter=periode->begin();elemIter!=periode->end();++elemIter){ 585 if ((*ListRunner)->ElementsInMolecule[(*elemIter).first]) { // if this element got atoms 586 for(molecule::iterator atomIter = (*ListRunner)->begin(); atomIter !=(*ListRunner)->end();++atomIter){ 587 if ((*atomIter)->type->getNumber() == (*elemIter).first) { 588 if (((*atomIter)->GetTrueFather() != NULL) && ((*atomIter)->GetTrueFather() != (*atomIter))) {// if there is a rea 601 if ((*ListRunner)->ElementsInMolecule[(*elemIter).first]) { // if this element got atoms 602 Walker = (*ListRunner)->start; 603 while (Walker->next != (*ListRunner)->end) { // go through every atom of this element 604 Walker = Walker->next; 605 if (Walker->type->getNumber() == (*elemIter).first) { 606 if ((Walker->GetTrueFather() != NULL) && (Walker->GetTrueFather() != Walker)) {// if there is a rea 589 607 //Log() << Verbose(0) << "Walker is " << *Walker << " with true father " << *( Walker->GetTrueFather()) << ", it 590 ForcesFile << SortIndex[ (*atomIter)->GetTrueFather()->nr] << "\t";608 ForcesFile << SortIndex[Walker->GetTrueFather()->nr] << "\t"; 591 609 } else 592 610 // otherwise a -1 to indicate an added saturation hydrogen … … 622 640 bool result = true; 623 641 bool intermediateResult = true; 642 atom *Walker = NULL; 624 643 Vector BoxDimension; 625 644 char *FragmentNumber = NULL; … … 662 681 // list atoms in fragment for debugging 663 682 DoLog(2) && (Log() << Verbose(2) << "Contained atoms: "); 664 for (molecule::const_iterator iter = (*ListRunner)->begin(); iter != (*ListRunner)->end(); ++iter) { 665 DoLog(0) && (Log() << Verbose(0) << (*iter)->getName() << " "); 683 Walker = (*ListRunner)->start; 684 while (Walker->next != (*ListRunner)->end) { 685 Walker = Walker->next; 686 DoLog(0) && (Log() << Verbose(0) << Walker->getName() << " "); 666 687 } 667 688 DoLog(0) && (Log() << Verbose(0) << endl); … … 743 764 { 744 765 molecule *mol = World::getInstance().createMolecule(); 766 atom *Walker = NULL; 767 atom *Advancer = NULL; 745 768 bond *Binder = NULL; 746 769 bond *Stepper = NULL; … … 748 771 for (MoleculeList::iterator MolRunner = ListOfMolecules.begin(); !ListOfMolecules.empty(); MolRunner = ListOfMolecules.begin()) { 749 772 // shift all atoms to new molecule 750 for (molecule::iterator iter = (*MolRunner)->begin(); (*MolRunner)->empty(); iter = (*MolRunner)->begin()) { 751 DoLog(3) && (Log() << Verbose(3) << "Re-linking " << (*iter) << "..." << endl); 752 (*iter)->father = (*iter); 753 mol->AddAtom((*iter)); // counting starts at 1 754 (*MolRunner)->erase(iter); 773 Advancer = (*MolRunner)->start->next; 774 while (Advancer != (*MolRunner)->end) { 775 Walker = Advancer; 776 Advancer = Advancer->next; 777 DoLog(3) && (Log() << Verbose(3) << "Re-linking " << *Walker << "..." << endl); 778 unlink(Walker); 779 Walker->father = Walker; 780 mol->AddAtom(Walker); // counting starts at 1 755 781 } 756 782 // remove all bonds … … 806 832 // 4b. create and fill map of which atom is associated to which connected molecule (note, counting starts at 1) 807 833 int FragmentCounter = 0; 808 int *MolMap = new int[mol-> getAtomCount()];809 for (int i=0;i<mol-> getAtomCount();i++)834 int *MolMap = new int[mol->AtomCount]; 835 for (int i=0;i<mol->AtomCount;i++) 810 836 MolMap[i] = 0; 811 837 MoleculeLeafClass *MolecularWalker = Subgraphs; 838 Walker = NULL; 812 839 while (MolecularWalker->next != NULL) { 813 840 MolecularWalker = MolecularWalker->next; 814 for (molecule::const_iterator iter = MolecularWalker->Leaf->begin(); iter != MolecularWalker->Leaf->end(); ++iter) { 815 MolMap[(*iter)->GetTrueFather()->nr] = FragmentCounter+1; 841 Walker = MolecularWalker->Leaf->start; 842 while (Walker->next != MolecularWalker->Leaf->end) { 843 Walker = Walker->next; 844 MolMap[Walker->GetTrueFather()->nr] = FragmentCounter+1; 816 845 } 817 846 FragmentCounter++; … … 819 848 820 849 // 4c. relocate atoms to new molecules and remove from Leafs 821 for (molecule::iterator iter = mol->begin(); !mol->empty(); iter = mol->begin()) { 822 if (((*iter)->nr <0) || ((*iter)->nr >= mol->getAtomCount())) { 823 DoeLog(0) && (eLog()<< Verbose(0) << "Index of atom " << **iter << " is invalid!" << endl); 850 Walker = NULL; 851 while (mol->start->next != mol->end) { 852 Walker = mol->start->next; 853 if ((Walker->nr <0) || (Walker->nr >= mol->AtomCount)) { 854 DoeLog(0) && (eLog()<< Verbose(0) << "Index of atom " << *Walker << " is invalid!" << endl); 824 855 performCriticalExit(); 825 856 } 826 FragmentCounter = MolMap[ (*iter)->nr];857 FragmentCounter = MolMap[Walker->nr]; 827 858 if (FragmentCounter != 0) { 828 DoLog(3) && (Log() << Verbose(3) << "Re-linking " << * *iter << "..." << endl);829 molecules[FragmentCounter-1]->AddAtom((*iter)); // counting starts at 1830 mol ->erase(iter);859 DoLog(3) && (Log() << Verbose(3) << "Re-linking " << *Walker << "..." << endl); 860 unlink(Walker); 861 molecules[FragmentCounter-1]->AddAtom(Walker); // counting starts at 1 831 862 } else { 832 DoeLog(0) && (eLog()<< Verbose(0) << "Atom " << * *iter << " not associated to molecule!" << endl);863 DoeLog(0) && (eLog()<< Verbose(0) << "Atom " << *Walker << " not associated to molecule!" << endl); 833 864 performCriticalExit(); 834 865 } … … 838 869 while (mol->first->next != mol->last) { 839 870 Binder = mol->first->next; 840 const atom * constWalker = Binder->leftatom;871 Walker = Binder->leftatom; 841 872 unlink(Binder); 842 873 link(Binder,molecules[MolMap[Walker->nr]-1]->last); // counting starts at 1 … … 860 891 int MoleculeListClass::CountAllAtoms() const 861 892 { 893 atom *Walker = NULL; 862 894 int AtomNo = 0; 863 895 for (MoleculeList::const_iterator MolWalker = ListOfMolecules.begin(); MolWalker != ListOfMolecules.end(); MolWalker++) { 864 AtomNo += (*MolWalker)->size(); 896 Walker = (*MolWalker)->start; 897 while (Walker->next != (*MolWalker)->end) { 898 Walker = Walker->next; 899 AtomNo++; 900 } 865 901 } 866 902 return AtomNo; … … 1037 1073 bool MoleculeLeafClass::FillBondStructureFromReference(const molecule * const reference, int &FragmentCounter, atom ***&ListOfLocalAtoms, bool FreeList) 1038 1074 { 1075 atom *Walker = NULL; 1039 1076 atom *OtherWalker = NULL; 1040 1077 atom *Father = NULL; … … 1044 1081 DoLog(1) && (Log() << Verbose(1) << "Begin of FillBondStructureFromReference." << endl); 1045 1082 // fill ListOfLocalAtoms if NULL was given 1046 if (!FillListOfLocalAtoms(ListOfLocalAtoms, FragmentCounter, reference-> getAtomCount(), FreeList)) {1083 if (!FillListOfLocalAtoms(ListOfLocalAtoms, FragmentCounter, reference->AtomCount, FreeList)) { 1047 1084 DoLog(1) && (Log() << Verbose(1) << "Filling of ListOfLocalAtoms failed." << endl); 1048 1085 return false; … … 1060 1097 } 1061 1098 1062 for(molecule::const_iterator iter = Leaf->begin(); iter != Leaf->end(); ++iter) { 1063 Father = (*iter)->GetTrueFather(); 1099 Walker = Leaf->start; 1100 while (Walker->next != Leaf->end) { 1101 Walker = Walker->next; 1102 Father = Walker->GetTrueFather(); 1064 1103 AtomNo = Father->nr; // global id of the current walker 1065 1104 for (BondList::const_iterator Runner = Father->ListOfBonds.begin(); Runner != Father->ListOfBonds.end(); (++Runner)) { 1066 OtherWalker = ListOfLocalAtoms[FragmentCounter][(*Runner)->GetOtherAtom( (*iter)->GetTrueFather())->nr]; // local copy of current bond partner of walker1105 OtherWalker = ListOfLocalAtoms[FragmentCounter][(*Runner)->GetOtherAtom(Walker->GetTrueFather())->nr]; // local copy of current bond partner of walker 1067 1106 if (OtherWalker != NULL) { 1068 if (OtherWalker->nr > (*iter)->nr)1069 Leaf->AddBond( (*iter), OtherWalker, (*Runner)->BondDegree);1107 if (OtherWalker->nr > Walker->nr) 1108 Leaf->AddBond(Walker, OtherWalker, (*Runner)->BondDegree); 1070 1109 } else { 1071 DoLog(1) && (Log() << Verbose(1) << "OtherWalker = ListOfLocalAtoms[" << FragmentCounter << "][" << (*Runner)->GetOtherAtom( (*iter)->GetTrueFather())->nr << "] is NULL!" << endl);1110 DoLog(1) && (Log() << Verbose(1) << "OtherWalker = ListOfLocalAtoms[" << FragmentCounter << "][" << (*Runner)->GetOtherAtom(Walker->GetTrueFather())->nr << "] is NULL!" << endl); 1072 1111 status = false; 1073 1112 } … … 1096 1135 bool MoleculeLeafClass::FillRootStackForSubgraphs(KeyStack *&RootStack, bool *AtomMask, int &FragmentCounter) 1097 1136 { 1098 atom * Father = NULL;1137 atom *Walker = NULL, *Father = NULL; 1099 1138 1100 1139 if (RootStack != NULL) { … … 1102 1141 if (&(RootStack[FragmentCounter]) != NULL) { 1103 1142 RootStack[FragmentCounter].clear(); 1104 for(molecule::const_iterator iter = Leaf->begin(); iter != Leaf->end(); ++iter) { 1105 Father = (*iter)->GetTrueFather(); 1143 Walker = Leaf->start; 1144 while (Walker->next != Leaf->end) { // go through all (non-hydrogen) atoms 1145 Walker = Walker->next; 1146 Father = Walker->GetTrueFather(); 1106 1147 if (AtomMask[Father->nr]) // apply mask 1107 1148 #ifdef ADDHYDROGEN 1108 if ( (*iter)->type->Z != 1) // skip hydrogen1149 if (Walker->type->Z != 1) // skip hydrogen 1109 1150 #endif 1110 RootStack[FragmentCounter].push_front( (*iter)->nr);1151 RootStack[FragmentCounter].push_front(Walker->nr); 1111 1152 } 1112 1153 if (next != NULL) … … 1150 1191 1151 1192 if ((ListOfLocalAtoms != NULL) && (ListOfLocalAtoms[FragmentCounter] == NULL)) { // allocate and fill list of this fragment/subgraph 1152 status = status && Leaf->CreateFatherLookupTable(ListOfLocalAtoms[FragmentCounter], GlobalAtomCount);1193 status = status && CreateFatherLookupTable(Leaf->start, Leaf->end, ListOfLocalAtoms[FragmentCounter], GlobalAtomCount); 1153 1194 FreeList = FreeList && true; 1154 1195 } … … 1174 1215 DoLog(1) && (Log() << Verbose(1) << "Begin of AssignKeySetsToFragment." << endl); 1175 1216 // fill ListOfLocalAtoms if NULL was given 1176 if (!FillListOfLocalAtoms(ListOfLocalAtoms, FragmentCounter, reference-> getAtomCount(), FreeList)) {1217 if (!FillListOfLocalAtoms(ListOfLocalAtoms, FragmentCounter, reference->AtomCount, FreeList)) { 1177 1218 DoLog(1) && (Log() << Verbose(1) << "Filling of ListOfLocalAtoms failed." << endl); 1178 1219 return false; -
src/tesselation.cpp
r1024cb r42af9e 21 21 #include "Plane.hpp" 22 22 #include "Exceptions/LinearDependenceException.hpp" 23 #include "Helpers/Assert.hpp"24 25 #include "Helpers/Assert.hpp"26 23 27 24 class molecule; … … 360 357 // get ascending order of endpoints 361 358 PointMap OrderMap; 362 for (int i = 0; i < 3; i++) {359 for (int i = 0; i < 3; i++) 363 360 // for all three lines 364 361 for (int j = 0; j < 2; j++) { // for both endpoints … … 366 363 // and we don't care whether insertion fails 367 364 } 368 }369 365 // set endpoints 370 366 int Counter = 0; … … 375 371 Counter++; 376 372 } 377 ASSERT(Counter >= 3,"We have a triangle with only two distinct endpoints!"); 378 }; 379 373 if (Counter < 3) { 374 DoeLog(0) && (eLog() << Verbose(0) << "We have a triangle with only two distinct endpoints!" << endl); 375 performCriticalExit(); 376 } 377 } 378 ; 380 379 381 380 /** Destructor of BoundaryTriangleSet. … … 683 682 } 684 683 685 /**686 * gets the Plane defined by the three triangle Basepoints687 */688 Plane BoundaryTriangleSet::getPlane() const{689 ASSERT(endpoints[0] && endpoints[1] && endpoints[2], "Triangle not fully defined");690 691 return Plane(*endpoints[0]->node->node,692 *endpoints[1]->node->node,693 *endpoints[2]->node->node);694 }695 696 Vector BoundaryTriangleSet::getEndpoint(int i) const{697 ASSERT(i>=0 && i<3,"Index of Endpoint out of Range");698 699 return *endpoints[i]->node->node;700 }701 702 string BoundaryTriangleSet::getEndpointName(int i) const{703 ASSERT(i>=0 && i<3,"Index of Endpoint out of Range");704 705 return endpoints[i]->node->getName();706 }707 708 684 /** output operator for BoundaryTriangleSet. 709 685 * \param &ost output stream … … 712 688 ostream &operator <<(ostream &ost, const BoundaryTriangleSet &a) 713 689 { 714 ost << "[" << a.Nr << "|" << a. getEndpointName(0) << "," << a.getEndpointName(1) << "," << a.getEndpointName(2) << "]";690 ost << "[" << a.Nr << "|" << a.endpoints[0]->node->getName() << "," << a.endpoints[1]->node->getName() << "," << a.endpoints[2]->node->getName() << "]"; 715 691 // ost << "[" << a.Nr << "|" << a.endpoints[0]->node->Name << " at " << *a.endpoints[0]->node->node << "," 716 692 // << a.endpoints[1]->node->Name << " at " << *a.endpoints[1]->node->node << "," << a.endpoints[2]->node->Name << " at " << *a.endpoints[2]->node->node << "]"; … … 1232 1208 ; 1233 1209 1210 /** PointCloud implementation of GetTerminalPoint. 1211 * Uses PointsOnBoundary and STL stuff. 1212 */ 1213 TesselPoint * Tesselation::GetTerminalPoint() const 1214 { 1215 Info FunctionInfo(__func__); 1216 PointMap::const_iterator Runner = PointsOnBoundary.end(); 1217 Runner--; 1218 return (Runner->second->node); 1219 } 1220 ; 1221 1234 1222 /** PointCloud implementation of GoToNext. 1235 1223 * Uses PointsOnBoundary and STL stuff. … … 1243 1231 ; 1244 1232 1233 /** PointCloud implementation of GoToPrevious. 1234 * Uses PointsOnBoundary and STL stuff. 1235 */ 1236 void Tesselation::GoToPrevious() const 1237 { 1238 Info FunctionInfo(__func__); 1239 if (InternalPointer != PointsOnBoundary.begin()) 1240 InternalPointer--; 1241 } 1242 ; 1243 1245 1244 /** PointCloud implementation of GoToFirst. 1246 1245 * Uses PointsOnBoundary and STL stuff. … … 1250 1249 Info FunctionInfo(__func__); 1251 1250 InternalPointer = PointsOnBoundary.begin(); 1251 } 1252 ; 1253 1254 /** PointCloud implementation of GoToLast. 1255 * Uses PointsOnBoundary and STL stuff. 1256 */ 1257 void Tesselation::GoToLast() const 1258 { 1259 Info FunctionInfo(__func__); 1260 InternalPointer = PointsOnBoundary.end(); 1261 InternalPointer--; 1252 1262 } 1253 1263 ; … … 1445 1455 CenterVector.Zero(); 1446 1456 for (int i = 0; i < 3; i++) 1447 CenterVector += BTS->getEndpoint(i);1457 CenterVector += (*BTS->endpoints[i]->node->node); 1448 1458 CenterVector.Scale(1. / 3.); 1449 1459 DoLog(2) && (Log() << Verbose(2) << "CenterVector of base triangle is " << CenterVector << endl); … … 2559 2569 // fill the set of neighbours 2560 2570 TesselPointSet SetOfNeighbours; 2561 2562 2571 SetOfNeighbours.insert(CandidateLine.BaseLine->endpoints[1]->node); 2563 2572 for (TesselPointList::iterator Runner = CandidateLine.pointlist.begin(); Runner != CandidateLine.pointlist.end(); Runner++) … … 4793 4802 if (LastTriangle != NULL) { 4794 4803 stringstream sstr; 4795 sstr << "-"<< TrianglesOnBoundary.size() << "-" << LastTriangle-> getEndpointName(0) << "_" << LastTriangle->getEndpointName(1) << "_" << LastTriangle->getEndpointName(2);4804 sstr << "-"<< TrianglesOnBoundary.size() << "-" << LastTriangle->endpoints[0]->node->getName() << "_" << LastTriangle->endpoints[1]->node->getName() << "_" << LastTriangle->endpoints[2]->node->getName(); 4796 4805 NumberName = sstr.str(); 4797 4806 if (DoTecplotOutput) { -
src/tesselation.hpp
r1024cb r42af9e 38 38 class PointCloud; 39 39 class Tesselation; 40 class Plane;41 40 42 41 /********************************************** definitions *********************************/ … … 167 166 bool IsPresentTupel(const BoundaryTriangleSet * const T) const; 168 167 169 Plane getPlane() const;170 Vector getEndpoint(int) const;171 std::string getEndpointName(int) const;172 173 168 class BoundaryPointSet *endpoints[3]; 174 169 class BoundaryLineSet *lines[3]; … … 176 171 Vector SphereCenter; 177 172 int Nr; 178 179 private:180 181 173 }; 182 174 … … 244 236 virtual Vector *GetCenter() const { return NULL; }; 245 237 virtual TesselPoint *GetPoint() const { return NULL; }; 238 virtual TesselPoint *GetTerminalPoint() const { return NULL; }; 246 239 virtual int GetMaxId() const { return 0; }; 247 240 virtual void GoToNext() const {}; 241 virtual void GoToPrevious() const {}; 248 242 virtual void GoToFirst() const {}; 243 virtual void GoToLast() const {}; 249 244 virtual bool IsEmpty() const { return true; }; 250 245 virtual bool IsEnd() const { return true; }; … … 360 355 virtual Vector *GetCenter(ofstream *out) const; 361 356 virtual TesselPoint *GetPoint() const; 357 virtual TesselPoint *GetTerminalPoint() const; 362 358 virtual void GoToNext() const; 359 virtual void GoToPrevious() const; 363 360 virtual void GoToFirst() const; 361 virtual void GoToLast() const; 364 362 virtual bool IsEmpty() const; 365 363 virtual bool IsEnd() const; -
src/tesselationhelpers.cpp
r1024cb r42af9e 16 16 #include "vector_ops.hpp" 17 17 #include "verbose.hpp" 18 #include "Plane.hpp"19 18 20 19 double DetGet(gsl_matrix * const A, const int inPlace) … … 688 687 return -1; 689 688 } 690 distance = x->DistanceTo Space(triangle->getPlane());689 distance = x->DistanceToPlane(triangle->NormalVector, *triangle->endpoints[0]->node->node); 691 690 return distance; 692 691 }; … … 838 837 int i=cloud->GetMaxId(); 839 838 int *LookupList = new int[i]; 840 for (cloud->GoToFirst(), i=0; !cloud->IsEnd(); cloud->GoToNext(), i++) {839 for (cloud->GoToFirst(), i=0; !cloud->IsEnd(); cloud->GoToNext(), i++) 841 840 LookupList[i] = -1; 842 }843 841 844 842 // print atom coordinates 845 843 int Counter = 1; 846 844 TesselPoint *Walker = NULL; 847 for (PointMap::const_iterator target = TesselStruct->PointsOnBoundary.begin(); target != TesselStruct->PointsOnBoundary.end(); ++target) {845 for (PointMap::const_iterator target = TesselStruct->PointsOnBoundary.begin(); target != TesselStruct->PointsOnBoundary.end(); target++) { 848 846 Walker = target->second->node; 849 847 LookupList[Walker->nr] = Counter++; -
src/unittests/AnalysisCorrelationToPointUnitTest.cpp
r1024cb r42af9e 66 66 67 67 // check that TestMolecule was correctly constructed 68 CPPUNIT_ASSERT_EQUAL( TestMolecule-> getAtomCount(), 4 );68 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 4 ); 69 69 70 70 TestList = World::getInstance().getMolecules(); -
src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp
r1024cb r42af9e 25 25 #include "tesselation.hpp" 26 26 #include "World.hpp" 27 #include "Helpers/Assert.hpp"28 27 29 28 #include "Helpers/Assert.hpp" … … 40 39 void AnalysisCorrelationToSurfaceUnitTest::setUp() 41 40 { 42 ASSERT_DO(Assert::Throw);41 //ASSERT_DO(Assert::Throw); 43 42 44 43 atom *Walker = NULL; … … 55 54 hydrogen = World::getInstance().getPeriode()->FindElement(1); 56 55 TestSurfaceMolecule = World::getInstance().createMolecule(); 57 58 56 Walker = World::getInstance().createAtom(); 59 57 Walker->type = hydrogen; 60 58 *Walker->node = Vector(1., 0., 1. ); 61 TestSurfaceMolecule->AddAtom(Walker); 62 59 60 TestSurfaceMolecule->AddAtom(Walker); 63 61 Walker = World::getInstance().createAtom(); 64 62 Walker->type = hydrogen; 65 63 *Walker->node = Vector(0., 1., 1. ); 66 64 TestSurfaceMolecule->AddAtom(Walker); 67 68 65 Walker = World::getInstance().createAtom(); 69 66 Walker->type = hydrogen; 70 67 *Walker->node = Vector(1., 1., 0. ); 71 68 TestSurfaceMolecule->AddAtom(Walker); 72 73 69 Walker = World::getInstance().createAtom(); 74 70 Walker->type = hydrogen; … … 77 73 78 74 // check that TestMolecule was correctly constructed 79 CPPUNIT_ASSERT_EQUAL( TestSurfaceMolecule-> getAtomCount(), 4 );75 CPPUNIT_ASSERT_EQUAL( TestSurfaceMolecule->AtomCount, 4 ); 80 76 81 77 TestList = World::getInstance().getMolecules(); … … 95 91 *Walker->node = Vector(4., 0., 4. ); 96 92 TestSurfaceMolecule->AddAtom(Walker); 97 98 93 Walker = World::getInstance().createAtom(); 99 94 Walker->type = carbon; 100 95 *Walker->node = Vector(0., 4., 4. ); 101 96 TestSurfaceMolecule->AddAtom(Walker); 102 103 97 Walker = World::getInstance().createAtom(); 104 98 Walker->type = carbon; 105 99 *Walker->node = Vector(4., 4., 0. ); 106 100 TestSurfaceMolecule->AddAtom(Walker); 107 108 101 // add inner atoms 109 102 Walker = World::getInstance().createAtom(); … … 111 104 *Walker->node = Vector(0.5, 0.5, 0.5 ); 112 105 TestSurfaceMolecule->AddAtom(Walker); 113 114 106 TestSurfaceMolecule->ActiveFlag = true; 115 107 TestList->insert(TestSurfaceMolecule); … … 141 133 void AnalysisCorrelationToSurfaceUnitTest::SurfaceTest() 142 134 { 143 CPPUNIT_ASSERT_EQUAL( 4, TestSurfaceMolecule-> getAtomCount());135 CPPUNIT_ASSERT_EQUAL( 4, TestSurfaceMolecule->AtomCount ); 144 136 CPPUNIT_ASSERT_EQUAL( (size_t)2, TestList->ListOfMolecules.size() ); 145 137 CPPUNIT_ASSERT_EQUAL( (size_t)4, Surface->PointsOnBoundary.size() ); -
src/unittests/AnalysisPairCorrelationUnitTest.cpp
r1024cb r42af9e 68 68 69 69 // check that TestMolecule was correctly constructed 70 CPPUNIT_ASSERT_EQUAL( TestMolecule-> getAtomCount(), 4 );70 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 4 ); 71 71 72 72 TestList = World::getInstance().getMolecules(); -
src/unittests/CountBondsUnitTest.cpp
r1024cb r42af9e 92 92 93 93 // check that TestMolecule was correctly constructed 94 CPPUNIT_ASSERT_EQUAL( TestMolecule1->getAtomCount(), 3 ); 95 CPPUNIT_ASSERT_EQUAL( TestMolecule2->getAtomCount(), 3 ); 94 CPPUNIT_ASSERT_EQUAL( TestMolecule1->AtomCount, 3 ); 95 Walker = TestMolecule1->start->next; 96 CPPUNIT_ASSERT( TestMolecule1->end != Walker ); 97 CPPUNIT_ASSERT_EQUAL( TestMolecule2->AtomCount, 3 ); 98 Walker = TestMolecule2->start->next; 99 CPPUNIT_ASSERT( TestMolecule2->end != Walker ); 96 100 97 101 // create a small file with table -
src/unittests/LinkedCellUnitTest.cpp
r1024cb r42af9e 60 60 61 61 // check that TestMolecule was correctly constructed 62 CPPUNIT_ASSERT_EQUAL( TestMolecule->getAtomCount(), 3*3*3 ); 62 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 3*3*3 ); 63 Walker = TestMolecule->start->next; 64 CPPUNIT_ASSERT( TestMolecule->end != Walker ); 63 65 }; 64 66 … … 185 187 { 186 188 // check all atoms 187 for(molecule::iterator iter = TestMolecule->begin(); iter != TestMolecule->end();++iter){ 188 CPPUNIT_ASSERT_EQUAL( true, LC->SetIndexToNode(*iter) ); 189 atom *Walker = TestMolecule->start; 190 while (Walker->next != TestMolecule->end) { 191 Walker = Walker->next; 192 CPPUNIT_ASSERT_EQUAL( true, LC->SetIndexToNode(Walker) ); 189 193 } 190 194 191 195 // check internal vectors, returns false, because this atom is not in LC-list! 192 atom *newAtom= World::getInstance().createAtom();193 newAtom->setName("test");194 newAtom->x= Vector(1,1,1);195 CPPUNIT_ASSERT_EQUAL( false, LC->SetIndexToNode( newAtom) );196 World::getInstance().destroyAtom( newAtom);196 Walker = World::getInstance().createAtom(); 197 Walker->setName("test"); 198 Walker->x= Vector(1,1,1); 199 CPPUNIT_ASSERT_EQUAL( false, LC->SetIndexToNode(Walker) ); 200 World::getInstance().destroyAtom(Walker); 197 201 198 202 // check out of bounds vectors 199 newAtom= World::getInstance().createAtom();200 newAtom->setName("test");201 newAtom->x = Vector(0,-1,0);202 CPPUNIT_ASSERT_EQUAL( false, LC->SetIndexToNode( newAtom) );203 World::getInstance().destroyAtom( newAtom);203 Walker = World::getInstance().createAtom(); 204 Walker->setName("test"); 205 Walker->x = Vector(0,-1,0); 206 CPPUNIT_ASSERT_EQUAL( false, LC->SetIndexToNode(Walker) ); 207 World::getInstance().destroyAtom(Walker); 204 208 }; 205 209 … … 273 277 size = ListOfPoints->size(); 274 278 CPPUNIT_ASSERT_EQUAL( (size_t)27, size ); 275 276 for(molecule::iterator iter = TestMolecule->begin(); iter != TestMolecule->end(); ++iter){ 277 ListOfPoints->remove((*iter)); 279 Walker = TestMolecule->start; 280 Walker = TestMolecule->start; 281 while (Walker->next != TestMolecule->end) { 282 Walker = Walker->next; 283 ListOfPoints->remove(Walker); 278 284 size--; 279 285 CPPUNIT_ASSERT_EQUAL( size, ListOfPoints->size() ); … … 290 296 size=ListOfPoints->size(); 291 297 CPPUNIT_ASSERT_EQUAL( (size_t)8, size ); 292 for(molecule::iterator iter = TestMolecule->begin(); iter != TestMolecule->end(); ++iter){ 293 if (((*iter)->x[0] <2) && ((*iter)->x[1] <2) && ((*iter)->x[2] <2)) { 294 ListOfPoints->remove(*iter); 298 Walker = TestMolecule->start; 299 while (Walker->next != TestMolecule->end) { 300 Walker = Walker->next; 301 if ((Walker->x[0] <2) && (Walker->x[1] <2) && (Walker->x[2] <2)) { 302 ListOfPoints->remove(Walker); 295 303 size--; 296 304 CPPUNIT_ASSERT_EQUAL( size, ListOfPoints->size() ); … … 308 316 size=ListOfPoints->size(); 309 317 CPPUNIT_ASSERT_EQUAL( (size_t)27, size ); 310 for(molecule::iterator iter = TestMolecule->begin(); iter!=TestMolecule->end();++iter){ 311 ListOfPoints->remove(*iter); 318 Walker = TestMolecule->start; 319 while (Walker->next != TestMolecule->end) { 320 Walker = Walker->next; 321 ListOfPoints->remove(Walker); 312 322 size--; 313 323 CPPUNIT_ASSERT_EQUAL( size, ListOfPoints->size() ); … … 335 345 size = ListOfPoints->size(); 336 346 CPPUNIT_ASSERT_EQUAL( (size_t)7, size ); 337 for(molecule::iterator iter = TestMolecule->begin(); iter!=TestMolecule->end();++iter){ 338 if (((*iter)->x.DistanceSquared(tester) - 1.) < MYEPSILON ) { 339 ListOfPoints->remove(*iter); 347 Walker = TestMolecule->start; 348 while (Walker->next != TestMolecule->end) { 349 Walker = Walker->next; 350 if ((Walker->x.DistanceSquared(tester) - 1.) < MYEPSILON ) { 351 ListOfPoints->remove(Walker); 340 352 size--; 341 353 CPPUNIT_ASSERT_EQUAL( size, ListOfPoints->size() ); -
src/unittests/Makefile.am
r1024cb r42af9e 49 49 noinst_PROGRAMS = $(TESTS) TestRunner 50 50 51 GSLLIBS = ../libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB}52 ALLLIBS = ../libmolecuilder.a ${GSLLIBS} 51 GSLLIBS = ../libgslwrapper.a 52 ALLLIBS = ../libmolecuilder.a ${GSLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB} 53 53 54 54 TESTSOURCES = \ … … 182 182 manipulateAtomsTest_LDADD = ${ALLLIBS} 183 183 184 MemoryAllocatorUnitTest_SOURCES = UnitTestMain.cpp ../memoryallocator.hpp ../memory allocator.cpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp184 MemoryAllocatorUnitTest_SOURCES = UnitTestMain.cpp ../memoryallocator.hpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp 185 185 MemoryAllocatorUnitTest_LDADD = ${ALLLIBS} 186 186 … … 218 218 Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS} 219 219 220 TestRunner_SOURCES = TestRunnerMain.cpp ../memoryallocator.hpp ../memory allocator.cpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp $(TESTSOURCES) $(TESTHEADERS)220 TestRunner_SOURCES = TestRunnerMain.cpp ../memoryallocator.hpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp $(TESTSOURCES) $(TESTHEADERS) 221 221 TestRunner_LDADD = ${ALLLIBS} 222 222 -
src/unittests/ObserverTest.cpp
r1024cb r42af9e 11 11 #include <cppunit/extensions/TestFactoryRegistry.h> 12 12 #include <cppunit/ui/text/TestRunner.h> 13 #include <set>14 13 15 14 #include "Patterns/Observer.hpp" 16 #include "Patterns/ObservedIterator.hpp"17 15 #include "Helpers/Assert.hpp" 18 16 … … 164 162 bool wasNotified; 165 163 }; 166 167 class ObservableCollection : public Observable {168 public:169 typedef std::set<SimpleObservable*> set;170 typedef ObservedIterator<set> iterator;171 typedef set::const_iterator const_iterator;172 173 ObservableCollection(int _num) :174 num(_num)175 {176 for(int i=0; i<num; ++i){177 SimpleObservable *content = new SimpleObservable();178 content->signOn(this);179 theSet.insert(content);180 }181 }182 183 ~ObservableCollection(){184 set::iterator iter;185 for(iter=theSet.begin(); iter!=theSet.end(); ++iter ){186 delete (*iter);187 }188 }189 190 iterator begin(){191 return iterator(theSet.begin(),this);192 }193 194 iterator end(){195 return iterator(theSet.end(),this);196 }197 198 const int num;199 200 private:201 set theSet;202 };203 204 164 205 165 /******************* actuall tests ***************/ … … 213 173 blockObservable = new BlockObservable(); 214 174 notificationObservable = new NotificationObservable(); 215 collection = new ObservableCollection(5);216 175 217 176 observer1 = new UpdateCountObserver(); … … 222 181 notificationObserver1 = new NotificationObserver(notificationObservable->notification1); 223 182 notificationObserver2 = new NotificationObserver(notificationObservable->notification2); 183 224 184 } 225 185 … … 231 191 delete blockObservable; 232 192 delete notificationObservable; 233 delete collection;234 193 235 194 delete observer1; … … 318 277 blockObservable->changeMethod2(); 319 278 blockObservable->noChangeMethod(); 320 }321 322 void ObserverTest::iteratorTest(){323 int i = 0;324 // test the general iterator methods325 for(ObservableCollection::iterator iter=collection->begin(); iter!=collection->end();++iter){326 CPPUNIT_ASSERT(i< collection->num);327 i++;328 }329 330 i=0;331 for(ObservableCollection::const_iterator iter=collection->begin(); iter!=collection->end();++iter){332 CPPUNIT_ASSERT(i<collection->num);333 i++;334 }335 336 collection->signOn(observer1);337 {338 // we construct this out of the loop, so the iterator dies at the end of339 // the scope and not the end of the loop (allows more testing)340 ObservableCollection::iterator iter;341 for(iter=collection->begin(); iter!=collection->end(); ++iter){342 (*iter)->changeMethod();343 }344 // At this point no change should have been propagated345 CPPUNIT_ASSERT_EQUAL( 0, observer1->updates);346 }347 // After the Iterator has died the propagation should take place348 CPPUNIT_ASSERT_EQUAL( 1, observer1->updates);349 350 // when using a const_iterator no changes should be propagated351 for(ObservableCollection::const_iterator iter = collection->begin(); iter!=collection->end();++iter);352 CPPUNIT_ASSERT_EQUAL( 1, observer1->updates);353 collection->signOff(observer1);354 279 } 355 280 -
src/unittests/ObserverTest.hpp
r1024cb r42af9e 17 17 class CallObservable; 18 18 class SuperObservable; 19 class ObservableCollection;20 19 class BlockObservable; 21 20 class NotificationObservable; 21 22 22 23 23 class ObserverTest : public CppUnit::TestFixture … … 29 29 CPPUNIT_TEST ( doesNotifyTest ); 30 30 CPPUNIT_TEST ( doesReportTest ); 31 CPPUNIT_TEST ( iteratorTest );32 31 CPPUNIT_TEST ( CircleDetectionTest ); 33 32 CPPUNIT_TEST_SUITE_END(); … … 42 41 void doesNotifyTest(); 43 42 void doesReportTest(); 44 void iteratorTest();45 43 void CircleDetectionTest(); 46 44 … … 60 58 SuperObservable *superObservable; 61 59 NotificationObservable *notificationObservable; 62 ObservableCollection *collection;63 64 60 }; 65 61 -
src/unittests/analysisbondsunittest.cpp
r1024cb r42af9e 25 25 #include "molecule.hpp" 26 26 #include "periodentafel.hpp" 27 #include "World.hpp"28 27 29 28 #ifdef HAVE_TESTRUNNER … … 77 76 78 77 // check that TestMolecule was correctly constructed 79 CPPUNIT_ASSERT_EQUAL( TestMolecule-> getAtomCount(), 5 );78 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 5 ); 80 79 81 80 // create a small file with table -
src/unittests/bondgraphunittest.cpp
r1024cb r42af9e 77 77 78 78 // check that TestMolecule was correctly constructed 79 CPPUNIT_ASSERT_EQUAL( TestMolecule-> getAtomCount(), 4 );79 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 4 ); 80 80 81 81 // create a small file with table … … 114 114 }; 115 115 116 /** Tests whether setup worked.117 */118 void BondGraphTest::SetupTest()119 {120 CPPUNIT_ASSERT_EQUAL (false, TestMolecule->empty());121 CPPUNIT_ASSERT_EQUAL ((size_t)4, TestMolecule->size());122 };123 124 116 /** UnitTest for BondGraphTest::LoadBondLengthTable(). 125 117 */ … … 136 128 void BondGraphTest::ConstructGraphFromTableTest() 137 129 { 138 molecule::iterator Walker = TestMolecule->begin();139 molecule::iterator Runner = TestMolecule->begin();140 Runner++;130 atom *Walker = TestMolecule->start->next; 131 atom *Runner = TestMolecule->end->previous; 132 CPPUNIT_ASSERT( TestMolecule->end != Walker ); 141 133 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable(*filename) ); 142 134 CPPUNIT_ASSERT_EQUAL( true , BG->ConstructBondGraph(TestMolecule) ); 143 CPPUNIT_ASSERT_EQUAL( true , (*Walker)->IsBondedTo((*Runner)) );135 CPPUNIT_ASSERT_EQUAL( true , Walker->IsBondedTo(Runner) ); 144 136 }; 145 137 … … 148 140 void BondGraphTest::ConstructGraphFromCovalentRadiiTest() 149 141 { 150 151 //atom *Walker = TestMolecule->start->next; 152 //atom *Runner = TestMolecule->end->previous; 153 //CPPUNIT_ASSERT( TestMolecule->end != Walker ); 142 atom *Walker = TestMolecule->start->next; 143 atom *Runner = TestMolecule->end->previous; 144 CPPUNIT_ASSERT( TestMolecule->end != Walker ); 154 145 CPPUNIT_ASSERT_EQUAL( false , BG->LoadBondLengthTable(*dummyname) ); 155 146 CPPUNIT_ASSERT_EQUAL( true , BG->ConstructBondGraph(TestMolecule) ); 156 157 // this cannot be assured using dynamic IDs 158 //CPPUNIT_ASSERT_EQUAL( true , Walker->IsBondedTo(Runner) ); 147 CPPUNIT_ASSERT_EQUAL( true , Walker->IsBondedTo(Runner) ); 159 148 }; 160 149 -
src/unittests/bondgraphunittest.hpp
r1024cb r42af9e 22 22 { 23 23 CPPUNIT_TEST_SUITE( BondGraphTest) ; 24 CPPUNIT_TEST ( SetupTest );25 24 CPPUNIT_TEST ( LoadTableTest ); 26 25 CPPUNIT_TEST ( ConstructGraphFromTableTest ); … … 31 30 void setUp(); 32 31 void tearDown(); 33 void SetupTest();34 32 void LoadTableTest(); 35 33 void ConstructGraphFromTableTest(); -
src/unittests/listofbondsunittest.cpp
r1024cb r42af9e 67 67 68 68 // check that TestMolecule was correctly constructed 69 CPPUNIT_ASSERT_EQUAL( TestMolecule-> getAtomCount(), 4 );69 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 4 ); 70 70 }; 71 71 … … 81 81 }; 82 82 83 /** Tests whether setup worked correctly.84 *85 */86 void ListOfBondsTest::SetupTest()87 {88 CPPUNIT_ASSERT_EQUAL( false, TestMolecule->empty() );89 CPPUNIT_ASSERT_EQUAL( (size_t)4, TestMolecule->size() );90 };91 92 83 /** Unit Test of molecule::AddBond() 93 84 * … … 96 87 { 97 88 bond *Binder = NULL; 98 molecule::iterator iter = TestMolecule->begin(); 99 atom *atom1 = *iter; 100 iter++; 101 atom *atom2 = *iter; 89 atom *atom1 = TestMolecule->start->next; 90 atom *atom2 = atom1->next; 102 91 CPPUNIT_ASSERT( atom1 != NULL ); 103 92 CPPUNIT_ASSERT( atom2 != NULL ); … … 126 115 { 127 116 bond *Binder = NULL; 128 molecule::iterator iter = TestMolecule->begin(); 129 atom *atom1 = *iter; 130 iter++; 131 atom *atom2 = *iter; 117 atom *atom1 = TestMolecule->start->next; 118 atom *atom2 = atom1->next; 132 119 CPPUNIT_ASSERT( atom1 != NULL ); 133 120 CPPUNIT_ASSERT( atom2 != NULL ); … … 154 141 { 155 142 bond *Binder = NULL; 156 molecule::iterator iter = TestMolecule->begin(); 157 atom *atom1 = *iter; 158 iter++; 159 atom *atom2 = *iter; 160 iter++; 161 atom *atom3 = *iter; 143 atom *atom1 = TestMolecule->start->next; 144 atom *atom2 = atom1->next; 145 atom *atom3 = atom2->next; 162 146 CPPUNIT_ASSERT( atom1 != NULL ); 163 147 CPPUNIT_ASSERT( atom2 != NULL ); … … 196 180 { 197 181 bond *Binder = NULL; 198 molecule::iterator iter = TestMolecule->begin(); 199 atom *atom1 = *iter; 200 iter++; 201 atom *atom2 = *iter; 182 atom *atom1 = TestMolecule->start->next; 183 atom *atom2 = atom1->next; 202 184 CPPUNIT_ASSERT( atom1 != NULL ); 203 185 CPPUNIT_ASSERT( atom2 != NULL ); … … 224 206 { 225 207 bond *Binder = NULL; 226 molecule::iterator iter = TestMolecule->begin(); 227 atom *atom1 = *iter; 228 iter++; 229 atom *atom2 = *iter; 208 atom *atom1 = TestMolecule->start->next; 209 atom *atom2 = atom1->next; 230 210 CPPUNIT_ASSERT( atom1 != NULL ); 231 211 CPPUNIT_ASSERT( atom2 != NULL ); … … 251 231 { 252 232 bond *Binder = NULL; 253 molecule::iterator iter = TestMolecule->begin(); 254 atom *atom1 = *iter; 255 iter++; 256 atom *atom2 = *iter; 233 atom *atom1 = TestMolecule->start->next; 234 atom *atom2 = atom1->next; 257 235 CPPUNIT_ASSERT( atom1 != NULL ); 258 236 CPPUNIT_ASSERT( atom2 != NULL ); -
src/unittests/listofbondsunittest.hpp
r1024cb r42af9e 20 20 { 21 21 CPPUNIT_TEST_SUITE( ListOfBondsTest) ; 22 CPPUNIT_TEST ( SetupTest );23 22 CPPUNIT_TEST ( AddingBondTest ); 24 23 CPPUNIT_TEST ( RemovingBondTest ); … … 32 31 void setUp(); 33 32 void tearDown(); 34 void SetupTest();35 33 void AddingBondTest(); 36 34 void RemovingBondTest(); -
src/vector.cpp
r1024cb r42af9e 266 266 * \return distance to plane 267 267 */ 268 double Vector::DistanceTo Space(const Space &space) const269 { 270 return space.distance(*this);268 double Vector::DistanceToPlane(const Vector &PlaneNormal, const Vector &PlaneOffset) const 269 { 270 return GetDistanceVectorToPlane(PlaneNormal,PlaneOffset).Norm(); 271 271 }; 272 272 -
src/vector.hpp
r1024cb r42af9e 40 40 double DistanceSquared(const Vector &y) const; 41 41 Vector GetDistanceVectorToPlane(const Vector &PlaneNormal, const Vector &PlaneOffset) const; 42 double DistanceTo Space(const Space& space) const;42 double DistanceToPlane(const Vector &PlaneNormal, const Vector &PlaneOffset) const; 43 43 double PeriodicDistance(const Vector &y, const double * const cell_size) const; 44 44 double PeriodicDistanceSquared(const Vector &y, const double * const cell_size) const; -
tests/regression/Domain/5/post/test.conf
r1024cb r42af9e 71 71 Ion_Type2 3 6 1.0 3 3 12.01100000000 Carbon C 72 72 #Ion_TypeNr._Nr.R[0] R[1] R[2] MoveType (0 MoveIon, 1 FixedIon) 73 Ion_Type 1_1 4.891042973 2.645886050 2.3812974450 # molecule nr 074 Ion_Type 1_2 4.891042973 2.645886050 3.9832974220 # molecule nr 175 Ion_Type 1_3 5.336019804 3.9045368783.182297433 0 # molecule nr 276 Ion_Type1_ 4 4.266392982 4.7878860182.381297445 0 # molecule nr 377 Ion_Type1_ 5 4.266392982 4.7878860183.983297422 0 # molecule nr 478 Ion_Type1_ 6 3.196816159 3.9045368773.182297433 0 # molecule nr 579 Ion_Type1_ 7 3.641792991 2.6458860502.381297445 0 # molecule nr 680 Ion_Type1_ 8 3.641792991 2.6458860503.983297422 0 # molecule nr 781 Ion_Type 2_1 4.891042973 3.2751860403.182297433 0 # molecule nr 882 Ion_Type 2_2 4.266392982 4.158586027 3.1822974330 # molecule nr 983 Ion_Type 2_3 3.641792991 3.275186040 3.1822974330 # molecule nr 1073 Ion_Type2_1 4.891042973 3.275186040 3.182297433 0 # molecule nr 0 74 Ion_Type2_2 4.266392982 4.158586027 3.182297433 0 # molecule nr 1 75 Ion_Type2_3 3.641792991 3.275186040 3.182297433 0 # molecule nr 2 76 Ion_Type1_1 4.891042973 2.645886050 2.381297445 0 # molecule nr 3 77 Ion_Type1_2 4.891042973 2.645886050 3.983297422 0 # molecule nr 4 78 Ion_Type1_3 5.336019804 3.904536878 3.182297433 0 # molecule nr 5 79 Ion_Type1_4 4.266392982 4.787886018 2.381297445 0 # molecule nr 6 80 Ion_Type1_5 4.266392982 4.787886018 3.983297422 0 # molecule nr 7 81 Ion_Type1_6 3.196816159 3.904536877 3.182297433 0 # molecule nr 8 82 Ion_Type1_7 3.641792991 2.645886050 2.381297445 0 # molecule nr 9 83 Ion_Type1_8 3.641792991 2.645886050 3.983297422 0 # molecule nr 10 -
tests/regression/Domain/5/pre/test.conf
r1024cb r42af9e 71 71 Ion_Type2 3 6 1.0 3 3 12.01100000000 Carbon C 72 72 #Ion_TypeNr._Nr.R[0] R[1] R[2] MoveType (0 MoveIon, 1 FixedIon) 73 Ion_Type 1_1 9.782085945 2.645886050 2.6458860500 # molecule nr 074 Ion_Type 1_2 9.782085945 2.645886050 4.4258860240 # molecule nr 175 Ion_Type 1_3 10.672039608 3.9045368783.535886037 0 # molecule nr 276 Ion_Type1_ 4 8.532785963 4.7878860182.645886050 0 # molecule nr 377 Ion_Type1_ 5 8.532785963 4.7878860184.425886024 0 # molecule nr 478 Ion_Type1_ 6 6.393632318 3.9045368773.535886037 0 # molecule nr 579 Ion_Type1_ 7 7.283585982 2.6458860502.645886050 0 # molecule nr 680 Ion_Type1_ 8 7.283585982 2.6458860504.425886024 0 # molecule nr 781 Ion_Type 2_1 9.782085945 3.2751860403.535886037 0 # molecule nr 882 Ion_Type 2_2 8.532785963 4.158586027 3.5358860370 # molecule nr 983 Ion_Type 2_3 7.283585982 3.275186040 3.5358860370 # molecule nr 1073 Ion_Type2_1 9.782085945 3.275186040 3.535886037 0 # molecule nr 0 74 Ion_Type2_2 8.532785963 4.158586027 3.535886037 0 # molecule nr 1 75 Ion_Type2_3 7.283585982 3.275186040 3.535886037 0 # molecule nr 2 76 Ion_Type1_1 9.782085945 2.645886050 2.645886050 0 # molecule nr 3 77 Ion_Type1_2 9.782085945 2.645886050 4.425886024 0 # molecule nr 4 78 Ion_Type1_3 10.672039608 3.904536878 3.535886037 0 # molecule nr 5 79 Ion_Type1_4 8.532785963 4.787886018 2.645886050 0 # molecule nr 6 80 Ion_Type1_5 8.532785963 4.787886018 4.425886024 0 # molecule nr 7 81 Ion_Type1_6 6.393632318 3.904536877 3.535886037 0 # molecule nr 8 82 Ion_Type1_7 7.283585982 2.645886050 2.645886050 0 # molecule nr 9 83 Ion_Type1_8 7.283585982 2.645886050 4.425886024 0 # molecule nr 10 -
tests/regression/Domain/6/pre/test.conf
r1024cb r42af9e 71 71 Ion_Type2 3 6 1.0 3 3 12.01100000000 Carbon C 72 72 #Ion_TypeNr._Nr.R[0] R[1] R[2] MoveType (0 MoveIon, 1 FixedIon) 73 Ion_Type 1_1 9.782085945 2.645886050 2.6458860500 # molecule nr 074 Ion_Type 1_2 9.782085945 2.645886050 4.4258860240 # molecule nr 175 Ion_Type 1_3 10.672039608 3.9045368783.535886037 0 # molecule nr 276 Ion_Type1_ 4 8.532785963 4.7878860182.645886050 0 # molecule nr 377 Ion_Type1_ 5 8.532785963 4.7878860184.425886024 0 # molecule nr 478 Ion_Type1_ 6 6.393632318 3.9045368773.535886037 0 # molecule nr 579 Ion_Type1_ 7 7.283585982 2.6458860502.645886050 0 # molecule nr 680 Ion_Type1_ 8 7.283585982 2.6458860504.425886024 0 # molecule nr 781 Ion_Type 2_1 9.782085945 3.2751860403.535886037 0 # molecule nr 882 Ion_Type 2_2 8.532785963 4.158586027 3.5358860370 # molecule nr 983 Ion_Type 2_3 7.283585982 3.275186040 3.5358860370 # molecule nr 1073 Ion_Type2_1 9.782085945 3.275186040 3.535886037 0 # molecule nr 0 74 Ion_Type2_2 8.532785963 4.158586027 3.535886037 0 # molecule nr 1 75 Ion_Type2_3 7.283585982 3.275186040 3.535886037 0 # molecule nr 2 76 Ion_Type1_1 9.782085945 2.645886050 2.645886050 0 # molecule nr 3 77 Ion_Type1_2 9.782085945 2.645886050 4.425886024 0 # molecule nr 4 78 Ion_Type1_3 10.672039608 3.904536878 3.535886037 0 # molecule nr 5 79 Ion_Type1_4 8.532785963 4.787886018 2.645886050 0 # molecule nr 6 80 Ion_Type1_5 8.532785963 4.787886018 4.425886024 0 # molecule nr 7 81 Ion_Type1_6 6.393632318 3.904536877 3.535886037 0 # molecule nr 8 82 Ion_Type1_7 7.283585982 2.645886050 2.645886050 0 # molecule nr 9 83 Ion_Type1_8 7.283585982 2.645886050 4.425886024 0 # molecule nr 10 -
tests/regression/testsuite-domain.at
r1024cb r42af9e 45 45 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/pre/test.conf .], 0) 46 46 AT_CHECK([../../molecuilder test.conf -e ${abs_top_srcdir}/src/ -d 1 1 1], 0, [stdout], [stderr]) 47 AT_CHECK([file=test.conf.xyz;sort -n $file | grep -v "Created by" >$file-sorted], 0, [ignore], [ignore]) 48 AT_CHECK([file=test.conf.xyz;sort -n ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/post/$file | grep -v "Created by" >$file-sorted2], 0, [ignore], [ignore]) 49 AT_CHECK([file=test.conf.xyz; diff $file-sorted $file-sorted2], 0, [ignore], [ignore]) 50 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/pre/test.conf test-x.conf], 0) 51 AT_CHECK([../../molecuilder test-x.conf -e ${abs_top_srcdir}/src/ -d 2 1 1], 0, [stdout], [stderr]) 52 AT_CHECK([file=test-x.conf.xyz;sort -n $file | grep -v "Created by" >$file-sorted], 0, [ignore], [ignore]) 53 AT_CHECK([file=test-x.conf.xyz;sort -n ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/post/$file | grep -v "Created by" >$file-sorted2], 0, [ignore], [ignore]) 54 AT_CHECK([file=test-x.conf.xyz; diff $file-sorted $file-sorted2], 0, [ignore], [ignore]) 55 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/pre/test.conf test-y.conf], 0) 56 AT_CHECK([../../molecuilder test-y.conf -e ${abs_top_srcdir}/src/ -d 1 2 1], 0, [stdout], [stderr]) 57 AT_CHECK([file=test-y.conf.xyz;sort -n $file | grep -v "Created by" >$file-sorted], 0, [ignore], [ignore]) 58 AT_CHECK([file=test-y.conf.xyz;sort -n ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/post/$file | grep -v "Created by" >$file-sorted2], 0, [ignore], [ignore]) 59 AT_CHECK([file=test-y.conf.xyz; diff $file-sorted $file-sorted2], 0, [ignore], [ignore]) 60 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/pre/test.conf test-z.conf], 0) 61 AT_CHECK([../../molecuilder test-z.conf -e ${abs_top_srcdir}/src/ -d 1 1 2], 0, [stdout], [stderr]) 62 AT_CHECK([file=test-z.conf.xyz;sort -n $file | grep -v "Created by" >$file-sorted], 0, [ignore], [ignore]) 63 AT_CHECK([file=test-z.conf.xyz;sort -n ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/post/$file | grep -v "Created by" >$file-sorted2], 0, [ignore], [ignore]) 64 AT_CHECK([file=test-z.conf.xyz; diff $file-sorted $file-sorted2], 0, [ignore], [ignore]) 65 #AT_CHECK([/bin/false], 12, [ignore], [ignore]) 47 AT_CHECK([diff test.conf ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/post/test.conf], 0, [stdout], [stderr]) 48 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/pre/test.conf .], 0) 49 AT_CHECK([../../molecuilder test.conf -e ${abs_top_srcdir}/src/ -d 2 1 1], 0, [stdout], [stderr]) 50 AT_CHECK([diff test.conf ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/post/test-x.conf], 0, [stdout], [stderr]) 51 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/pre/test.conf .], 0) 52 AT_CHECK([../../molecuilder test.conf -e ${abs_top_srcdir}/src/ -d 1 2 1], 0, [stdout], [stderr]) 53 AT_CHECK([diff test.conf ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/post/test-y.conf], 0, [stdout], [stderr]) 54 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/pre/test.conf .], 0) 55 AT_CHECK([../../molecuilder test.conf -e ${abs_top_srcdir}/src/ -d 1 1 2], 0, [stdout], [stderr]) 56 AT_CHECK([diff test.conf ${abs_top_srcdir}/${AUTOTEST_PATH}/Domain/6/post/test-z.conf], 0, [stdout], [stderr]) 66 57 AT_CLEANUP -
tests/regression/testsuite-simple_configuration.at
r1024cb r42af9e 87 87 AT_KEYWORDS([configuration]) 88 88 AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Simple_configuration/8/pre/test.* .], 0) 89 AT_CHECK([../../molecuilder test.conf -e ${abs_top_srcdir}/src/ -R 7.283585982 3.275186040 3.535886037 7.], 0, [stdout], [stderr]) 90 AT_CHECK([sort -n test.conf.xyz | grep -v "Created by" >test.conf.xyz-sorted], 0, [ignore], [ignore]) 91 AT_CHECK([sort -n ${abs_top_srcdir}/${AUTOTEST_PATH}/Simple_configuration/8/post/test.conf.xyz | grep -v "Created by" >${abs_top_srcdir}/${AUTOTEST_PATH}/Simple_configuration/8/post/test.conf.xyz-sorted], 0, [ignore], [ignore]) 92 AT_CHECK([file=test.conf.xyz-sorted; diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Simple_configuration/8/post/$file], 0, [ignore], [ignore]) 89 AT_CHECK([../../molecuilder test.conf -e ${abs_top_srcdir}/src/ -R 2 7.], 0, [stdout], [stderr]) 90 AT_CHECK([file=test.conf; diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Simple_configuration/8/post/$file], 0, [ignore], [ignore]) 93 91 AT_CLEANUP
Note:
See TracChangeset
for help on using the changeset viewer.