Changes in src/analysis_correlation.cpp [244a84:790807]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/analysis_correlation.cpp
r244a84 r790807 370 370 { 371 371 Info FunctionInfo(__func__); 372 *file << " #BinStart\tCount" << endl;372 *file << "BinStart\tCount" << endl; 373 373 for (BinPairMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 374 374 *file << runner->first << "\t" << runner->second << endl; … … 383 383 { 384 384 Info FunctionInfo(__func__); 385 *file << " #BinStart\tAtom1\tAtom2" << endl;385 *file << "BinStart\tAtom1\tAtom2" << endl; 386 386 for (PairCorrelationMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 387 387 *file << runner->first << "\t" << *(runner->second.first) << "\t" << *(runner->second.second) << endl; … … 396 396 { 397 397 Info FunctionInfo(__func__); 398 *file << " #BinStart\tAtom::x[i]-point.x[i]" << endl;398 *file << "BinStart\tAtom::x[i]-point.x[i]" << endl; 399 399 for (CorrelationToPointMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 400 400 *file << runner->first; … … 412 412 { 413 413 Info FunctionInfo(__func__); 414 *file << " #BinStart\tTriangle" << endl;414 *file << "BinStart\tTriangle" << endl; 415 415 for (CorrelationToSurfaceMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 416 416 *file << runner->first << "\t" << *(runner->second.first) << "\t" << *(runner->second.second) << endl;
Note:
See TracChangeset
for help on using the changeset viewer.