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

big merge: preparation for havran ray caster, check if everything works

File:
1 edited

Legend:

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

    r2227 r2575  
    11#include "Halton.h" 
     2 
     3#ifdef PERFTIMER   
    24#include "Timer/PerfTimer.h" 
    3  
     5#endif 
    46 
    57#define PREGENERATE_HALTON 0 
     
    79namespace GtpVisibilityPreprocessor { 
    810 
     11   
     12#ifdef PERFTIMER   
    913PerfTimer haltonTimer; 
    10  
     14#endif 
     15   
    1116// global halton generator 
    1217 
     
    1419  float Halton2::_invBases[2]; 
    1520 
    16   float Halton<1>::_invBases[1]; 
    17   float Halton<2>::_invBases[2]; 
    18   float Halton<3>::_invBases[3]; 
    19   float Halton<4>::_invBases[4]; 
    20   float Halton<5>::_invBases[5]; 
    21   float Halton<6>::_invBases[6]; 
     21  //float Halton<6>::_invBases[6]; 
    2222   
    23  
     23  template<int T> float Halton<T>::_invBases[T]; 
     24   
    2425  Halton<1> dummmyHalton1(true); 
    2526  Halton<2> dummmyHalton2(true); 
Note: See TracChangeset for help on using the changeset viewer.