Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/TesselationAction/NonConvexEnvelopeAction.cpp

    rbe21fa rf10b0c  
    4949    const LinkedCell_deprecated *LCList = NULL;
    5050    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() << ".");
    5252    LOG(1, "Specified molecule has " << Boundary->getAtomCount() << " atoms.");
    5353    start = clock();
    5454    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());
    5858    end = clock();
    5959    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.