Ignore:
Timestamp:
Oct 27, 2009, 4:11:22 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
069034
Parents:
55a71b
Message:

Huge refactoring to make const what is const (ticket #38), continued.

  • too many changes because of too many cross-references to be able to list them up here.
  • NOTE that "make check" runs fine and did catch several error.
  • note that we had to use const_iterator several times when the map, ... was declared const.
  • at times we changed an allocated LinkedCell LCList(...) into

const LinkedCell *LCList;
LCList = new LinkedCell(...);

  • also mutable (see ticket #5) was used, e.g. for molecule::InternalPointer (PointCloud changes are allowed, because they are just accounting).

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/moleculelist.cpp

    r55a71b ra9b2a0a  
    306306bool MoleculeListClass::EmbedMerge(molecule *mol, molecule *srcmol)
    307307{
     308  LinkedCell *LCList = NULL;
     309  Tesselation *TesselStruct = NULL;
    308310  if ((srcmol == NULL) || (mol == NULL)) {
    309311    cout << Verbose(1) << "ERROR: Either fixed or variable molecule is given as NULL." << endl;
     
    312314
    313315  // calculate envelope for *mol
    314   LinkedCell *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) {
    317319    cout << Verbose(1) << "ERROR: Could not tesselate the fixed molecule." << endl;
    318320    return false;
    319321  }
    320322  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!
    322324
    323325  // prepare index list for bonds
     
    333335    Walker = Walker->next;
    334336    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)) {
    336338      CopyAtoms[Walker->nr] = new atom(Walker);
    337339      mol->AddAtom(CopyAtoms[Walker->nr]);
Note: See TracChangeset for help on using the changeset viewer.