- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/FragmentationAction.cpp
rf10b0c rbe21fa 45 45 46 46 LOG(0, "STATUS: Fragmenting molecular system with current connection matrix maximum bond distance " 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);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); 51 51 52 52 DepthFirstSearchAnalysis DFS; … … 54 54 mol = iter->second; 55 55 ASSERT(mol != NULL, "No molecule has been picked for fragmentation."); 56 LOG(2, "INFO: Fragmenting molecule with bond distance " << params.distance .get() << " angstroem, order of " << params.order.get()<< ".");56 LOG(2, "INFO: Fragmenting molecule with bond distance " << params.distance << " angstroem, order of " << params.order << "."); 57 57 start = clock(); 58 58 if (mol->hasBondStructure()) { 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);59 Fragmentation Fragmenter(mol, params.DoSaturation ? DoSaturate : DontSaturate); 60 Fragmenter.setOutputTypes(params.types); 61 ExitFlag = Fragmenter.FragmentMolecule(params.order, params.prefix, DFS); 62 62 } 63 63 World::getInstance().setExitFlag(ExitFlag);
Note:
See TracChangeset
for help on using the changeset viewer.