Changeset 7446 for trunk/MagicSoft/Mars/mcamera/MCameraTD.cc
- Timestamp:
- 12/06/05 16:12:48 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcamera/MCameraTD.cc
r7445 r7446 67 67 // Return the discrimintaor delays 68 68 // 69 UShort_t MCameraTD::GetMin() const69 Byte_t MCameraTD::GetMin() const 70 70 { 71 UShort_t val = (UShort_t)-1;71 Byte_t val = 0xff; 72 72 for (int i=0; i<fTD.GetSize(); i++) 73 73 val = TMath::Min(val, fTD[i]); … … 79 79 // Return the discrimintaor delays 80 80 // 81 UShort_t MCameraTD::GetMax() const81 Byte_t MCameraTD::GetMax() const 82 82 { 83 UShort_t val = 0;83 Byte_t val = 0; 84 84 for (int i=0; i<fTD.GetSize(); i++) 85 85 val = TMath::Max(val, fTD[i]);
Note:
See TracChangeset
for help on using the changeset viewer.