Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/molecule_graph.cpp

    r68f03d r920c70  
    1212#include "element.hpp"
    1313#include "helpers.hpp"
     14#include "info.hpp"
    1415#include "linkedcell.hpp"
    1516#include "lists.hpp"
     
    5455void molecule::CreateAdjacencyListFromDbondFile(ifstream *input)
    5556{
    56 
     57  Info FunctionInfo(__func__);
    5758  // 1 We will parse bonds out of the dbond file created by tremolo.
    5859  int atom1, atom2;
    5960  atom *Walker, *OtherWalker;
    60 
    61   if (!input) {
    62     DoLog(1) && (Log() << Verbose(1) << "Opening silica failed \n");
     61  char line[MAXSTRINGSIZE];
     62
     63  if (input->fail()) {
     64    DoeLog(0) && (eLog() << Verbose(0) << "Opening of bond file failed \n");
     65    performCriticalExit();
    6366  };
    6467
    65   *input >> ws >> atom1;
    66   *input >> ws >> atom2;
    67   DoLog(1) && (Log() << Verbose(1) << "Scanning file\n");
     68  // skip header
     69  input->getline(line,MAXSTRINGSIZE);
     70  DoLog(1) && (Log() << Verbose(1) << "Scanning file ... \n");
    6871  while (!input->eof()) // Check whether we read everything already
    6972  {
    70     *input >> ws >> atom1;
    71     *input >> ws >> atom2;
    72 
     73    input->getline(line,MAXSTRINGSIZE);
     74    stringstream zeile(line);
     75    zeile >> atom1;
     76    zeile >> atom2;
     77
     78    DoLog(2) && (Log() << Verbose(2) << "Looking for atoms " << atom1 << " and " << atom2 << "." << endl);
    7379    if (atom2 < atom1) //Sort indices of atoms in order
    7480      flip(atom1, atom2);
     
    137143    // create a list to map Tesselpoint::nr to atom *
    138144    DoLog(2) && (Log() << Verbose(2) << "Creating TesselPoint to atom map ... " << endl);
    139     AtomMap = Calloc<atom *> (AtomCount, "molecule::CreateAdjacencyList - **AtomCount");
     145    AtomMap = new atom *[AtomCount];
     146    for (int i=0;i<AtomCount;i++)
     147      AtomMap[i] = NULL;
    140148    Walker = start;
    141149    while (Walker->next != end) {
     
    188196          }
    189197        }
    190     Free(&AtomMap);
     198    delete[](AtomMap);
    191199    delete (LC);
    192200    DoLog(1) && (Log() << Verbose(1) << "I detected " << BondCount << " bonds in the molecule with distance " << BondDistance << "." << endl);
     
    624632{
    625633  BFS.AtomCount = AtomCount;
    626   BFS.PredecessorList = Calloc<atom*> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: **PredecessorList");
    627   BFS.ShortestPathList = Malloc<int> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ShortestPathList");
    628   BFS.ColorList = Calloc<enum Shading> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ColorList");
     634  BFS.PredecessorList = new atom*[AtomCount];
     635  BFS.ShortestPathList = new int[AtomCount];
     636  BFS.ColorList = new enum Shading[AtomCount];
    629637  BFS.BFSStack = new StackClass<atom *> (AtomCount);
    630638
    631   for (int i = AtomCount; i--;)
     639  for (int i = AtomCount; i--;) {
    632640    BFS.ShortestPathList[i] = -1;
     641    BFS.PredecessorList[i] = 0;
     642  }
    633643};
    634644
     
    639649void FinalizeBFSAccounting(struct BFSAccounting &BFS)
    640650{
    641   Free(&BFS.PredecessorList);
    642   Free(&BFS.ShortestPathList);
    643   Free(&BFS.ColorList);
     651  delete[](BFS.PredecessorList);
     652  delete[](BFS.ShortestPathList);
     653  delete[](BFS.ColorList);
    644654  delete (BFS.BFSStack);
    645655  BFS.AtomCount = 0;
     
    10611071
    10621072  // allocate storage structure
    1063   CurrentBonds = Calloc<int> (8, "molecule::CheckAdjacencyFileAgainstMolecule - CurrentBonds"); // contains parsed bonds of current atom
     1073  CurrentBonds = new int[8]; // contains parsed bonds of current atom
     1074  for(int i=0;i<8;i++)
     1075    CurrentBonds[i] = 0;
    10641076  return true;
    10651077}
     
    10701082  File.close();
    10711083  File.clear();
    1072   Free(&CurrentBonds);
     1084  delete[](CurrentBonds);
    10731085}
    10741086;
     
    11141126  bool status = true;
    11151127  atom *Walker = NULL;
    1116   char *buffer = NULL;
    11171128  int *CurrentBonds = NULL;
    11181129  int NonMatchNumber = 0; // will number of atoms with differing bond structure
     
    11241135  }
    11251136
    1126   buffer = Malloc<char> (MAXSTRINGSIZE, "molecule::CheckAdjacencyFileAgainstMolecule: *buffer");
     1137  char buffer[MAXSTRINGSIZE];
    11271138  // Parse the file line by line and count the bonds
    11281139  while (!File.eof()) {
     
    11421153    }
    11431154  }
    1144   Free(&buffer);
    11451155  CheckAdjacencyFileAgainstMolecule_Finalize(File, CurrentBonds);
    11461156
     
    11961206  BFS.AtomCount = AtomCount;
    11971207  BFS.BondOrder = BondOrder;
    1198   BFS.PredecessorList = Calloc<atom*> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: **PredecessorList");
    1199   BFS.ShortestPathList = Calloc<int> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ShortestPathList");
    1200   BFS.ColorList = Malloc<enum Shading> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ColorList");
     1208  BFS.PredecessorList = new atom*[AtomCount];
     1209  BFS.ShortestPathList = new int[AtomCount];
     1210  BFS.ColorList = new enum Shading[AtomCount];
    12011211  BFS.BFSStack = new StackClass<atom *> (AtomCount);
    12021212
     
    12071217  // initialise each vertex as white with no predecessor, empty queue, color Root lightgray
    12081218  for (int i = AtomCount; i--;) {
     1219    BFS.PredecessorList[i] = NULL;
    12091220    BFS.ShortestPathList[i] = -1;
    12101221    if ((AddedAtomList != NULL) && (AddedAtomList[i] != NULL)) // mark already present atoms (i.e. Root and maybe others) as visited
     
    12131224      BFS.ColorList[i] = white;
    12141225  }
    1215   //BFS.ShortestPathList[Root->nr] = 0; //is set due to Calloc()
     1226  //BFS.ShortestPathList[Root->nr] = 0; // done by Calloc
    12161227}
    12171228;
     
    12191230void BreadthFirstSearchAdd_Free(struct BFSAccounting &BFS)
    12201231{
    1221   Free(&BFS.PredecessorList);
    1222   Free(&BFS.ShortestPathList);
    1223   Free(&BFS.ColorList);
     1232  delete[](BFS.PredecessorList);
     1233  delete[](BFS.ShortestPathList);
     1234  delete[](BFS.ColorList);
    12241235  delete (BFS.BFSStack);
    12251236  BFS.AtomCount = 0;
     
    13601371{
    13611372  // reset parent list
    1362   ParentList = Calloc<atom*> (AtomCount, "molecule::BuildInducedSubgraph_Init: **ParentList");
     1373  ParentList = new atom*[AtomCount];
     1374  for (int i=0;i<AtomCount;i++)
     1375    ParentList[i] = NULL;
    13631376  DoLog(3) && (Log() << Verbose(3) << "Resetting ParentList." << endl);
    13641377}
     
    13821395void BuildInducedSubgraph_Finalize(atom **&ParentList)
    13831396{
    1384   Free(&ParentList);
     1397  delete[](ParentList);
    13851398}
    13861399;
Note: See TracChangeset for help on using the changeset viewer.