Changeset 1c7aed for molecuilder/src


Ignore:
Timestamp:
Jan 30, 2010, 7:00:47 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
09ed91, bc46c1
Parents:
14c0f0
Message:

Output....Correlation() don't prepend header line with '#', BinData() changed to just calculate BinEnd by itself.

  • BinData(): If BinEnd < BinStart, BinStart is taken over and just BinEnd calculate by GetMinMax().
  • this is needed for many histograms to be added on top of one another, there we need to have the same bins in each.
  • in all Output..Correlation() functions the '#' was eliminiated as pgfplots does not like it.
Location:
molecuilder/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/analysis_correlation.cpp

    r14c0f0 r1c7aed  
    370370{
    371371  Info FunctionInfo(__func__);
    372   *file << "# BinStart\tCount" << endl;
     372  *file << "BinStart\tCount" << endl;
    373373  for (BinPairMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) {
    374374    *file << runner->first << "\t" << runner->second << endl;
     
    383383{
    384384  Info FunctionInfo(__func__);
    385   *file << "# BinStart\tAtom1\tAtom2" << endl;
     385  *file << "BinStart\tAtom1\tAtom2" << endl;
    386386  for (PairCorrelationMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) {
    387387    *file << runner->first << "\t" << *(runner->second.first) << "\t" << *(runner->second.second) << endl;
     
    396396{
    397397  Info FunctionInfo(__func__);
    398   *file << "# BinStart\tAtom::x[i]-point.x[i]" << endl;
     398  *file << "BinStart\tAtom::x[i]-point.x[i]" << endl;
    399399  for (CorrelationToPointMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) {
    400400    *file << runner->first;
     
    412412{
    413413  Info FunctionInfo(__func__);
    414   *file << "# BinStart\tTriangle" << endl;
     414  *file << "BinStart\tTriangle" << endl;
    415415  for (CorrelationToSurfaceMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) {
    416416    *file << runner->first << "\t" << *(runner->second.first) << "\t" << *(runner->second.second) << endl;
  • molecuilder/src/analysis_correlation.hpp

    r14c0f0 r1c7aed  
    9090/** Puts given correlation data into bins of given size (histogramming).
    9191 * Note that BinStart and BinEnd are desired to fill the complete range, even where Bins are zero. If this is
    92  * not desired, give equal BinStart and BinEnd and the map will contain only Bins where the count is one or greater.
     92 * not desired, give equal BinStart and BinEnd and the map will contain only Bins where the count is one or greater. If a
     93 * certain start value is desired, give BinStart and a BinEnd that is smaller than BinStart, then only BinEnd will be
     94 * calculated automatically, i.e. BinStart = 0. and BinEnd = -1. .
    9395 * Also note that the range is given inclusive, i.e. [ BinStart, BinEnd ].
    9496 * \param *map map of doubles to count
     
    114116  if (BinStart == BinEnd) { // if same, find range ourselves
    115117    GetMinMax( map, start, end);
    116   } else { // if not, initialise range to zero
     118  } else if (BinEnd < BinStart) { // if BinEnd smaller, just look for new max
     119    GetMinMax( map, start, end);
     120    start = BinStart;
     121  } else { // else take both values
    117122    start = BinStart;
    118123    end = BinEnd;
Note: See TracChangeset for help on using the changeset viewer.