| Line |   | 
|---|
| 1 | #ifndef MARS_MCameraAUX
 | 
|---|
| 2 | #define MARS_MCameraAUX
 | 
|---|
| 3 | 
 | 
|---|
| 4 | #ifndef MARS_MParContainer
 | 
|---|
| 5 | #include "MParContainer.h"
 | 
|---|
| 6 | #endif
 | 
|---|
| 7 | 
 | 
|---|
| 8 | class MCameraAUX : public MParContainer
 | 
|---|
| 9 | {
 | 
|---|
| 10 |     friend class MReportCamera;
 | 
|---|
| 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 | 
 | 
|---|
| 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
 | 
|---|
| 21 | 
 | 
|---|
| 22 | public:
 | 
|---|
| 23 |     MCameraAUX()
 | 
|---|
| 24 |     {
 | 
|---|
| 25 |         fName  = "MCameraAUX";
 | 
|---|
| 26 |         fTitle = "Container storing information about the Camera auxiliary system";
 | 
|---|
| 27 |     }
 | 
|---|
| 28 | 
 | 
|---|
| 29 |     Bool_t  GetRequestCaosLEDs() const    { return fRequestCaosLEDs; }
 | 
|---|
| 30 |     Bool_t  GetRequestFansFADC() const    { return fRequestFansFADC; }
 | 
|---|
| 31 | 
 | 
|---|
| 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
 | 
|---|
| 40 | };
 | 
|---|
| 41 | 
 | 
|---|
| 42 | #endif
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.