Ignore:
Timestamp:
Jan 11, 2010, 9:35:52 AM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
49d3e1e
Parents:
91b1e79
Message:

Removed unnecessary epsilon parameter.

  • epsilon before was used as a threshold parameter but is not needed anymore.
  • removed as parameter in case 'F' in builder.cpp
  • removed from Tesselation::IsInnerPoint()
  • removed from FillBoxWithMolecul() in boundary.?pp
File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/boundary.cpp

    r91b1e79 rafa056  
    795795 * \return *mol pointer to new molecule with filled atoms
    796796 */
    797 molecule * FillBoxWithMolecule(MoleculeListClass *List, molecule *filler, config &configuration, const double distance[NDIM], const double epsilon, const double RandomAtomDisplacement, const double RandomMolDisplacement, const bool DoRandomRotation)
     797molecule * FillBoxWithMolecule(MoleculeListClass *List, molecule *filler, config &configuration, const double distance[NDIM], const double RandomAtomDisplacement, const double RandomMolDisplacement, const bool DoRandomRotation)
    798798{
    799799        Info FunctionInfo(__func__);
     
    856856            FillIt = false;
    857857          } else {
    858             const bool FillResult = (!TesselStruct[i]->IsInnerPoint(CurrentPosition, LCList[i], epsilon));
     858            const bool FillResult = (!TesselStruct[i]->IsInnerPoint(CurrentPosition, LCList[i]));
    859859            FillIt = FillIt && FillResult;
    860860            if (FillResult) {
Note: See TracChangeset for help on using the changeset viewer.