Changeset 7445 for trunk/MagicSoft/Mars/mcamera/MCameraTH.h
- Timestamp:
- 12/06/05 16:08:41 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcamera/MCameraTH.h
r7444 r7445 9 9 #endif 10 10 11 #ifndef ROOT_TArray C12 #include <TArray C.h>11 #ifndef ROOT_TArrayS 12 #include <TArrayS.h> 13 13 #endif 14 14 … … 17 17 friend class MReportCC; 18 18 private: 19 TArray CfTH; // [au] discriminator thresholds19 TArrayS fTH; // [au] discriminator thresholds 20 20 21 21 public: 22 22 MCameraTH(Int_t size=577, const char *name=NULL, const char *title=NULL); 23 23 24 Byte_t operator[](Int_t i) { returnfTH[i]; }24 UShort_t operator[](Int_t i) { return (UShort_t)fTH[i]; } 25 25 26 Byte_t GetMin() const;27 Byte_t GetMax() const;26 UShort_t GetMin() const; 27 UShort_t GetMax() const; 28 28 29 29 void Print(Option_t *opt=NULL) const;
Note:
See TracChangeset
for help on using the changeset viewer.