Changeset a9b2a0a for molecuilder/src/moleculelist.cpp
- Timestamp:
- Oct 27, 2009, 4:11:22 PM (16 years ago)
- Children:
- 069034
- Parents:
- 55a71b
- File:
-
- 1 edited
-
molecuilder/src/moleculelist.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/moleculelist.cpp
r55a71b ra9b2a0a 306 306 bool MoleculeListClass::EmbedMerge(molecule *mol, molecule *srcmol) 307 307 { 308 LinkedCell *LCList = NULL; 309 Tesselation *TesselStruct = NULL; 308 310 if ((srcmol == NULL) || (mol == NULL)) { 309 311 cout << Verbose(1) << "ERROR: Either fixed or variable molecule is given as NULL." << endl; … … 312 314 313 315 // calculate envelope for *mol 314 L inkedCell *LCList = new LinkedCell(mol, 8.);315 FindNonConvexBorder((ofstream *)&cout, mol, LCList, 4., NULL);316 if ( mol->TesselStruct == NULL) {316 LCList = new LinkedCell(mol, 8.); 317 FindNonConvexBorder((ofstream *)&cout, mol, TesselStruct, (const LinkedCell *&)LCList, 4., NULL); 318 if (TesselStruct == NULL) { 317 319 cout << Verbose(1) << "ERROR: Could not tesselate the fixed molecule." << endl; 318 320 return false; 319 321 } 320 322 delete(LCList); 321 LCList = new LinkedCell( mol->TesselStruct, 8.); // re-create with boundary points only!323 LCList = new LinkedCell(TesselStruct, 8.); // re-create with boundary points only! 322 324 323 325 // prepare index list for bonds … … 333 335 Walker = Walker->next; 334 336 cout << Verbose(2) << "INFO: Current Walker is " << *Walker << "." << endl; 335 if (! mol->TesselStruct->IsInnerPoint((ofstream *)&cout, Walker->x, LCList)) {337 if (!TesselStruct->IsInnerPoint((ofstream *)&cout, Walker->x, LCList)) { 336 338 CopyAtoms[Walker->nr] = new atom(Walker); 337 339 mol->AddAtom(CopyAtoms[Walker->nr]);
Note:
See TracChangeset
for help on using the changeset viewer.
