Changeset 3d575e for molecuilder


Ignore:
Timestamp:
Mar 3, 2010, 7:17:19 PM (15 years ago)
Author:
Frederik Heber <heber@…>
Children:
296798
Parents:
a83171 (diff), d8fce3 (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 branch 'FixLinkedCellConstructor_Setempytcheck' into Analysis_PairCorrelation

Conflicts:

molecuilder/src/linkedcell.cpp

Conflict was due to changes:

  • set->empty() check prepended by set== NULL
  • cout/cerr -> Log()/eLog()

Signed-off-by: Frederik Heber <heber@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/linkedcell.cpp

    ra83171 r3d575e  
    4646  min.Zero();
    4747  Log() << Verbose(1) << "Begin of LinkedCell" << endl;
    48   if (set->IsEmpty()) {
    49     eLog() << Verbose(1) << "set contains no linked cell nodes!" << endl;
     48  if ((set == NULL) || (set->IsEmpty())) {
     49    eLog() << Verbose(1) << "set is NULL or contains no linked cell nodes!" << endl;
    5050    return;
    5151  }
Note: See TracChangeset for help on using the changeset viewer.