Ignore:
Timestamp:
03/02/06 14:47:47 (19 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/shared/EvalStats/EvalStats.cpp

    r668 r670  
    9797                                  const int index) 
    9898{ 
    99         float denom = currentStats.mRenderCost ? currentStats.mRenderCost : 0.000001f; 
    100         float costRatio = firstStats.mRenderCost / denom; 
     99        float denom = firstStats.mRenderCost ? firstStats.mRenderCost : 0.000001f; 
     100        float costRatio = currentStats.mRenderCost / denom; 
    101101                         
    102102        denom = firstStats.mAvgRenderCost ? firstStats.mAvgRenderCost : 0.000001f; 
    103         float avgCostRatio = firstStats.mAvgRenderCost / denom; 
     103        float avgCostRatio = currentStats.mAvgRenderCost / denom; 
    104104 
    105105        statsOut << "#ViewCells\n" << index + 1 << endl 
    106                          << "#TotalRenderCostGain\n" << 100.0f - costRatio * 100.0f << endl 
    107                          << "#AvgRenderCostGain\n" << 100.0f - avgCostRatio * 100.0f << endl << endl; 
     106                         //<< "#TotalRenderCostGain\n" << 100.0f - costRatio * 100.0f << endl 
     107                         //<< "#AvgRenderCostGain\n" << 100.0f - avgCostRatio * 100.0f << endl << endl; 
     108                         << "#TotalRenderCostGain\n" << 100.0f * costRatio - 100.0f<< endl 
     109                         << "#AvgRenderCostGain\n" << 100.0f * avgCostRatio -100.0f << endl << endl; 
    108110} 
    109111 
     
    163165        { 
    164166                cout << "writing output to file " << *sit << endl; 
    165  
    166167                ofstream statsOut((*sit).c_str()); 
    167168                ++ sit; 
    168169 
    169                 cout << "size here" << (*it).size() << endl; 
    170170                // compute size of output vector 
    171171                const int n = min((int)firstStats.size(), (int)(*it).size()); 
     
    175175                        ComputeStats(statsOut, firstStats[i], (*it)[i], i); 
    176176                } 
    177                 cout << "here2 " << n << endl; 
     177                 
    178178                statsOut.close(); 
    179179        } 
Note: See TracChangeset for help on using the changeset viewer.