Changeset 7202 for trunk/MagicSoft/Mars/mcamera
- Timestamp:
- 07/21/05 11:44:05 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/mcamera
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcamera/MCameraAUX.cc
r2535 r7202 18 18 ! Author(s): Thomas Bretz, 11/2003 <mailto:tbretz@astro.uni-wuerzburg.de> 19 19 ! 20 ! Copyright: MAGIC Software Development, 2000-200 320 ! Copyright: MAGIC Software Development, 2000-2005 21 21 ! 22 22 ! … … 27 27 // MCameraAUX 28 28 // 29 // Class Version 2: 30 // + Float_t fTempCountingHouse1; // [deg C] Temperature sensor in the counting house 1 31 // + Float_t fTempCountingHouse2; // [deg C] Temperature sensor in the counting house 2 32 // + Float_t fTempCountingHouse3; // [deg C] Temperature sensor in the counting house 3 33 // 29 34 ///////////////////////////////////////////////////////////////////////////// 30 35 #include "MCameraAUX.h" -
trunk/MagicSoft/Mars/mcamera/MCameraAUX.h
r3666 r7202 10 10 friend class MReportCamera; 11 11 private: 12 Bool_t fRequestCaosLEDs; // Requested status: o=off, 1=on, bAux_CaOsLEDs_Off/On 13 Bool_t fRequestFansFADC; // Requested status: o=off, 1=on, bAux_FADC_FANs_Off/On 14 Bool_t fStatusCaosLEDs; // Monitored status: o=off, 1=on, Cam.CaOs.LED_state 15 Bool_t fStatusFansFADC; // Monitored status: o=off, 1=on, Cam.FADC.Fans_state 12 Bool_t fRequestCaosLEDs; // Requested status: o=off, 1=on, bAux_CaOsLEDs_Off/On 13 Bool_t fRequestFansFADC; // Requested status: o=off, 1=on, bAux_FADC_FANs_Off/On 14 15 Bool_t fStatusCaosLEDs; // Monitored status: o=off, 1=on, Cam.CaOs.LED_state 16 Bool_t fStatusFansFADC; // Monitored status: o=off, 1=on, Cam.FADC.Fans_state 17 18 Float_t fTempCountingHouse1; // [deg C] Temperature sensor in the counting house 1 19 Float_t fTempCountingHouse2; // [deg C] Temperature sensor in the counting house 2 20 Float_t fTempCountingHouse3; // [deg C] Temperature sensor in the counting house 3 16 21 17 22 public: … … 22 27 } 23 28 24 Bool_t GetRequestCaosLEDs() const { return fRequestCaosLEDs; } 25 Bool_t GetRequestFansFADC() const { return fRequestFansFADC; } 26 Bool_t GetStatusCaosLEDs() const { return fStatusCaosLEDs; } 27 Bool_t GetStatusFansFADC() const { return fStatusFansFADC; } 29 Bool_t GetRequestCaosLEDs() const { return fRequestCaosLEDs; } 30 Bool_t GetRequestFansFADC() const { return fRequestFansFADC; } 28 31 29 ClassDef(MCameraAUX, 1) // Container storing information about the Camera auxiliary system 32 Bool_t GetStatusCaosLEDs() const { return fStatusCaosLEDs; } 33 Bool_t GetStatusFansFADC() const { return fStatusFansFADC; } 34 35 Float_t GetTempCountingHouse1() const { return fTempCountingHouse1; } 36 Float_t GetTempCountingHouse2() const { return fTempCountingHouse2; } 37 Float_t GetTempCountingHouse3() const { return fTempCountingHouse3; } 38 39 ClassDef(MCameraAUX, 2) // Container storing information about the Camera auxiliary system 30 40 }; 31 41 -
trunk/MagicSoft/Mars/mcamera/MCameraHV.cc
r2535 r7202 18 18 ! Author(s): Thomas Bretz, 11/2003 <mailto:tbretz@astro.uni-wuerzburg.de> 19 19 ! 20 ! Copyright: MAGIC Software Development, 2000-200 320 ! Copyright: MAGIC Software Development, 2000-2005 21 21 ! 22 22 ! … … 27 27 // MCameraHV 28 28 // 29 // 30 // Class Version 2: 31 // + TString fFileName; // Filename for the HV settings 32 // 33 // 29 34 ///////////////////////////////////////////////////////////////////////////// 30 35 #include "MCameraHV.h" -
trunk/MagicSoft/Mars/mcamera/MCameraHV.h
r3985 r7202 23 23 Short_t fVoltageB; // [V] Measured voltage of power supply B, hvps2 24 24 25 Byte_t fCurrentA;// [mA] Measured current of power supply A, curr126 Byte_t fCurrentB;// [mA] Measured current of power supply B, curr225 Byte_t fCurrentA; // [mA] Measured current of power supply A, curr1 26 Byte_t fCurrentB; // [mA] Measured current of power supply B, curr2 27 27 28 28 TArrayS fHV; // [V] Measured high Voltages for all PMTs 29 30 TString fFileName; // Filename for the HV settings 29 31 30 32 public: … … 58 60 } 59 61 60 ClassDef(MCameraHV, 1) // Container storing information about the Camera HV62 ClassDef(MCameraHV, 2) // Container storing information about the Camera HV 61 63 }; 62 64
Note:
See TracChangeset
for help on using the changeset viewer.