Changes in src/molecule_fragmentation.cpp [cbc5fb:23b547]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/molecule_fragmentation.cpp
rcbc5fb r23b547 676 676 //if (FragmentationToDo) { // we should always store the fragments again as coordination might have changed slightly without changing bond structure 677 677 // allocate memory for the pointer array and transmorph graphs into full molecular fragments 678 BondFragments = new MoleculeListClass(World::get ());678 BondFragments = new MoleculeListClass(World::getPointer()); 679 679 int k=0; 680 680 for(Graph::iterator runner = TotalGraph.begin(); runner != TotalGraph.end(); runner++) { … … 927 927 { 928 928 atom **SonList = Calloc<atom*>(AtomCount, "molecule::StoreFragmentFromStack: **SonList"); 929 molecule *Leaf = World::get ()->createMolecule();929 molecule *Leaf = World::getInstance().createMolecule(); 930 930 931 931 // Log() << Verbose(1) << "Begin of StoreFragmentFromKeyset." << endl;
Note:
See TracChangeset
for help on using the changeset viewer.