Changeset 3214 for trunk/MagicSoft/Mars/mcamera
- Timestamp:
- 02/17/04 17:03:46 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcamera/MCameraHV.h
r2870 r3214 10 10 #endif 11 11 12 class MCameraHV : public MParContainer 12 class MCameraHV : public MParContainer, public MCamEvent 13 13 { 14 14 friend class MReportCamera; … … 24 24 25 25 TArrayS fHV; // [V] Measured high Voltages for all PMTs 26 27 Float_t fMean; // [V] Mean high voltage of the camera 28 26 29 public: 27 30 MCameraHV() : fHV(577) … … 38 41 Byte_t GetCurrentB() const { return fCurrentB; } 39 42 43 Float_t GetMean() { fMean = fHV.GetSum()/fHV.GetSize(); return fMean; } 44 45 Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const 46 { 47 val = fHV[idx]; 48 return val>0; 49 } 50 void DrawPixelContent(Int_t num) const 51 { 52 } 53 40 54 ClassDef(MCameraHV, 1) // Container storing information about the Camera HV 41 55 };
Note:
See TracChangeset
for help on using the changeset viewer.