Ignore:
Timestamp:
01/03/08 15:13:40 (17 years ago)
Author:
bittner
Message:

minor updates of mutation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/IntelRayCaster.cpp

    r2572 r2574  
    1515FILE *fileOut = 0; 
    1616bool saveRays = true; 
     17  const int saveRaysStart = 3000000; 
    1718int cntSavedRaysFLUSH = 0; 
    1819unsigned long int cntSavedRays = 0; 
    19 const intSavedLIMIT = 1024; 
     20const int intSavedLIMIT = 1024; 
    2021void 
    2122InitSaving() 
     
    125126  } 
    126127 
    127   if (saveRays) {     
     128  if (saveRays && preprocessor->mTotalRaysCast > saveRaysStart) {     
    128129    if (castDoubleRay) 
    129130        { 
     
    257258#endif 
    258259 
    259   if (saveRays) { 
     260  if (saveRays && preprocessor->mTotalRaysCast > saveRaysStart) { 
    260261    if (castDoubleRay) 
    261262      fprintf(fileOut, "G\n"); 
     
    305306 
    306307 
    307     if (saveRays) { 
     308    if (saveRays && preprocessor->mTotalRaysCast > saveRaysStart) { 
    308309      if (castDoubleRay)      
    309310        fprintf(fileOut, "%d %4.7f %4.7f %4.7f %4.7f %4.7f %4.7f %d %4.7f %d %4.7f\n", 
Note: See TracChangeset for help on using the changeset viewer.