- Timestamp:
- 05/04/11 10:20:17 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/HeadersFTM.h
r10551 r10554 336 336 void DisableFTU(int i) { fActiveFTU[i/10] &= ~(1<<(i%10)); } 337 337 338 void EnableAllFTU() { for (int i=0; i<4; i++) fActiveFTU[i] = 0x3ff; } 339 void DisableAllFTU() { for (int i=0; i<4; i++) fActiveFTU[i] = 0; } 338 void EnableAllFTU() { for (int i=0; i<4; i++) fActiveFTU[i] = 0x3ff; } 339 void DisableAllFTU() { for (int i=0; i<4; i++) fActiveFTU[i] = 0; } 340 341 void ToggleFTU(int i) { fActiveFTU[i/10] ^= (1<<(i%10)); } 340 342 341 343 } __attribute__((__packed__)); … … 591 593 DimFtuList(const Header &h, const FtuList &d) : 592 594 fTimeStamp(h.fTimeStamp), 593 fActiveFTU(d.fActiveFTU[0] | (d.fActiveFTU[1]<<10) | (d.fActiveFTU[2]<<20) | (d.fActiveFTU[3]<<30)), 595 fActiveFTU( uint64_t(d.fActiveFTU[0]) | 596 (uint64_t(d.fActiveFTU[1])<<10) | 597 (uint64_t(d.fActiveFTU[2])<<20) | 598 (uint64_t(d.fActiveFTU[3])<<30)), 594 599 fNumBoards(d.fNumBoards) 595 600 { … … 605 610 } 606 611 607 bool IsActive(int i) const { return fActiveFTU&( 1<<i); }612 bool IsActive(int i) const { return fActiveFTU&(uint64_t(1)<<i); } 608 613 609 614 } __attribute__((__packed__));
Note:
See TracChangeset
for help on using the changeset viewer.