Ignore:
File:
1 edited

Legend:

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

    rbe21fa rf10b0c  
    5050    const LinkedCell_deprecated *LCList = NULL;
    5151    LOG(0, "Evaluating volume of the convex envelope.");
    52     LOG(1, "Storing tecplot convex data in " << params.filenameConvex << ".");
    53     LOG(1, "Storing tecplot non-convex data in " << params.filenameNonConvex << ".");
     52    LOG(1, "Storing tecplot convex data in " << params.filenameConvex.get() << ".");
     53    LOG(1, "Storing tecplot non-convex data in " << params.filenameNonConvex.get() << ".");
    5454    PointCloudAdaptor<molecule> cloud(mol, mol->name);
    5555    LCList = new LinkedCell_deprecated(cloud, 100.);
     
    5757    //FindConvexBorder(mol, BoundaryPoints, TesselStruct, LCList, argv[argptr]);
    5858    // TODO: Beide Funktionen sollten streams anstelle des Filenamen benutzen, besser fuer unit tests
    59     FindNonConvexBorder(mol, TesselStruct, LCList, 50., params.filenameNonConvex.string().c_str());
     59    FindNonConvexBorder(mol, TesselStruct, LCList, 50., params.filenameNonConvex.get().string().c_str());
    6060    //RemoveAllBoundaryPoints(TesselStruct, mol, argv[argptr]);
    61     const double volumedifference = ConvexizeNonconvexEnvelope(TesselStruct, mol, params.filenameConvex.string().c_str());
     61    const double volumedifference = ConvexizeNonconvexEnvelope(TesselStruct, mol, params.filenameConvex.get().string().c_str());
    6262    const double clustervolume = TesselStruct->getVolumeOfConvexEnvelope(configuration->GetIsAngstroem());
    6363    LOG(0, "The tesselated volume area is " << clustervolume << " " << (configuration->GetIsAngstroem() ? "angstrom" : "atomiclength") << "^3.");
Note: See TracChangeset for help on using the changeset viewer.