Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/FragmentationAction/FragmentationAction.cpp

    rbe21fa rf10b0c  
    4545
    4646  LOG(0, "STATUS: Fragmenting molecular system with current connection matrix maximum bond distance "
    47       << params.distance << " up to "
    48       << params.order << " order. Fragment files begin with "
    49       << params.prefix << " and are stored as: "
    50       << params.types << "." << std::endl);
     47      << params.distance.get() << " up to "
     48      << params.order.get() << " order. Fragment files begin with "
     49      << params.prefix.get() << " and are stored as: "
     50      << params.types.get() << "." << std::endl);
    5151
    5252  DepthFirstSearchAnalysis DFS;
     
    5454    mol = iter->second;
    5555    ASSERT(mol != NULL, "No molecule has been picked for fragmentation.");
    56     LOG(2, "INFO: Fragmenting molecule with bond distance " << params.distance << " angstroem, order of " << params.order << ".");
     56    LOG(2, "INFO: Fragmenting molecule with bond distance " << params.distance.get() << " angstroem, order of " << params.order.get() << ".");
    5757    start = clock();
    5858    if (mol->hasBondStructure()) {
    59       Fragmentation Fragmenter(mol, params.DoSaturation ? DoSaturate : DontSaturate);
    60       Fragmenter.setOutputTypes(params.types);
    61       ExitFlag = Fragmenter.FragmentMolecule(params.order, params.prefix, DFS);
     59      Fragmentation Fragmenter(mol, params.DoSaturation.get() ? DoSaturate : DontSaturate);
     60      Fragmenter.setOutputTypes(params.types.get());
     61      ExitFlag = Fragmenter.FragmentMolecule(params.order.get(), params.prefix.get(), DFS);
    6262    }
    6363    World::getInstance().setExitFlag(ExitFlag);
Note: See TracChangeset for help on using the changeset viewer.