Changeset 10880
- Timestamp:
- 05/27/11 17:41:52 (14 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fadctrl.cc
r10875 r10880 635 635 return T::kSM_FatalError; 636 636 637 const uint32_t *dat = reinterpret_cast<const uint32_t*>(evt.GetData());637 const uint32_t *dat = evt.Ptr<uint32_t>(); 638 638 639 639 if (!Check(dat, FAD::kMaxRegAddr, FAD::kMaxRegValue)) … … 652 652 653 653 // ---- was uint32_t 654 const int32_t *dat = reinterpret_cast<const int32_t*>(evt.GetData());654 const int32_t *dat = evt.Ptr<int32_t>(); 655 655 656 656 // ---- -1 for all … … 669 669 return T::kSM_FatalError; 670 670 671 const uint32_t *dat = reinterpret_cast<const uint32_t*>(evt.GetData());671 const uint32_t *dat = evt.Ptr<uint32_t>(); 672 672 673 673 if (!Check(dat, FAD::kMaxDacAddr, FAD::kMaxDacValue)) -
trunk/FACT++/src/ftmctrl.cc
r10874 r10880 1083 1083 return T::kSM_FatalError; 1084 1084 1085 const u nsigned int *dat = reinterpret_cast<const unsigned int*>(evt.GetData());1085 const uint32_t *dat = evt.Ptr<uint32_t>(); 1086 1086 1087 1087 if (dat[1]>uint16_t(-1)) … … 1218 1218 return T::kSM_FatalError; 1219 1219 1220 const int32_t *data = reinterpret_cast<const int32_t*>(evt.GetData());1220 const int32_t *data = evt.Ptr<int32_t>(); 1221 1221 1222 1222 if (!fFTM.SetThreshold(data[0], data[1])) … … 1231 1231 return T::kSM_FatalError; 1232 1232 1233 const int32_t &board = *reinterpret_cast<const int32_t*>(evt.GetText());1234 const int8_t &enable = *reinterpret_cast<const int8_t*>(evt.GetText()+4);1233 const int32_t &board = evt.Get<int32_t>(); 1234 const int8_t &enable = evt.Get<int8_t>(4); 1235 1235 1236 1236 if (!fFTM.EnableFTU(board, enable)) … … 1300 1300 return T::kSM_FatalError; 1301 1301 1302 const uint16_t *data = reinterpret_cast<const uint16_t*>(evt.GetData());1302 const uint16_t *data = evt.Ptr<uint16_t>(); 1303 1303 1304 1304 if (!fFTM.SetTriggerSeq(data))
Note:
See TracChangeset
for help on using the changeset viewer.