Ignore:
Timestamp:
Jan 27, 2010, 2:36:09 PM (16 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
dbd19f
Parents:
41182a (diff), 478683 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge commit 'heber/Analysis_PairCorrelation' into MenuRefactoring

Conflicts:

molecuilder/src/unittests/Makefile.am

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/bondgraph.cpp

    r41182a rd34341  
    1111#include "bondgraph.hpp"
    1212#include "element.hpp"
     13#include "info.hpp"
    1314#include "log.hpp"
    1415#include "molecule.hpp"
     
    4243bool BondGraph::LoadBondLengthTable(const string &filename)
    4344{
     45  Info FunctionInfo(__func__);
    4446  bool status = true;
    4547  MatrixContainer *TempContainer = NULL;
     
    5355
    5456  // parse in matrix
    55   status = TempContainer->ParseMatrix(filename.c_str(), 0, 1, 0);
     57  if (status = TempContainer->ParseMatrix(filename.c_str(), 0, 1, 0)) {
     58    Log() << Verbose(1) << "Parsing bond length matrix successful." << endl;
     59  } else {
     60    eLog() << Verbose(1) << "Parsing bond length matrix failed." << endl;
     61  }
    5662
    5763  // find greatest distance
Note: See TracChangeset for help on using the changeset viewer.