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