Ignore:
Timestamp:
03/01/09 21:54:27 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mraw/MRawEvtHeader.cc

    r9308 r9369  
    282282
    283283    abstime[0] =
    284         abstime[0]>>7 & 0x00010000 |
    285         abstime[0]>>5 & 0x00020000 |
    286         abstime[0]>>3 & 0x00040000 |
    287         abstime[0]>>1 & 0x00080000 |
    288         abstime[0]    & 0xff00ffff;
     284        (abstime[0]>>7 & 0x00010000) |
     285        (abstime[0]>>5 & 0x00020000) |
     286        (abstime[0]>>3 & 0x00040000) |
     287        (abstime[0]>>1 & 0x00080000) |
     288        (abstime[0]    & 0xff00ffff);
    289289
    290290    //
Note: See TracChangeset for help on using the changeset viewer.