Ignore:
Timestamp:
01/21/07 00:40:56 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/Statistics.h

    r860 r2003  
    1717  static inline double TimeDiff(long time1, long time2) // in s 
    1818  { 
    19     const double clk=1.0E-6; // ticks per second 
    20     long t=time2-time1; 
     19    const double clk = 1.0E-6; // ticks per second 
     20    long t = time2 - time1; 
    2121                 
    22     return ((t<0)?-t:t)*clk; 
     22    return ((t < 0) ? -t : t) * clk; 
    2323  } 
    2424         
Note: See TracChangeset for help on using the changeset viewer.