- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/TesselationAction/NonConvexEnvelopeAction.cpp
rbe21fa rf10b0c 49 49 const LinkedCell_deprecated *LCList = NULL; 50 50 LOG(0, "Evaluating non-convex envelope of molecule." << Boundary->getId()); 51 LOG(1, "Using rolling ball of radius " << params.SphereRadius << " and storing tecplot data in " << params.filename<< ".");51 LOG(1, "Using rolling ball of radius " << params.SphereRadius.get() << " and storing tecplot data in " << params.filename.get() << "."); 52 52 LOG(1, "Specified molecule has " << Boundary->getAtomCount() << " atoms."); 53 53 start = clock(); 54 54 PointCloudAdaptor< molecule > cloud(Boundary, Boundary->name); 55 LCList = new LinkedCell_deprecated(cloud, params.SphereRadius *2.);56 Success = FindNonConvexBorder(Boundary, T, LCList, params.SphereRadius , params.filename.string().c_str());57 //FindDistributionOfEllipsoids(T, &LCList, N, number, params.filename. c_str());55 LCList = new LinkedCell_deprecated(cloud, params.SphereRadius.get()*2.); 56 Success = FindNonConvexBorder(Boundary, T, LCList, params.SphereRadius.get(), params.filename.get().string().c_str()); 57 //FindDistributionOfEllipsoids(T, &LCList, N, number, params.filename.get().c_str()); 58 58 end = clock(); 59 59 LOG(0, "Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s.");
Note:
See TracChangeset
for help on using the changeset viewer.