Changeset 2593 for trunk/MagicSoft/Mars
- Timestamp:
- 12/02/03 16:12:06 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcamera/MCameraAUX.h
r2556 r2593 15 15 Bool_t fStatusFansFADC; // Monitored status: o=off, 1=on, Cam.FADC.Fans_state 16 16 public: 17 ClassDef(MCameraAUX, 1) 17 MCameraAUX() 18 { 19 fName = "MCameraAUX"; 20 fTitle = "Container storing information about the Camera auxiliary system"; 21 } 22 ClassDef(MCameraAUX, 1) // Container storing information about the Camera auxiliary system 18 23 }; 19 24 -
trunk/MagicSoft/Mars/mcamera/MCameraCalibration.h
r2556 r2593 21 21 22 22 public: 23 ClassDef(MCameraCalibration, 1) 23 MCameraCalibration() 24 { 25 fName = "MCameraCalibration"; 26 fTitle = "Container storing information about the Camera calibration system"; 27 } 28 ClassDef(MCameraCalibration, 1) // Container storing information about the Camera calibration system 24 29 }; 25 30 -
trunk/MagicSoft/Mars/mcamera/MCameraCooling.h
r2556 r2593 29 29 30 30 public: 31 MCameraCooling() 32 { 33 fName = "MCameraCooling"; 34 fTitle = "Container storing information about the Camera cooling system"; 35 } 31 36 32 37 Byte_t GetStatus() const { return fStatus; } … … 48 53 Byte_t GetHumCenter() const { return fHumCenter; } 49 54 50 ClassDef(MCameraCooling, 1) 55 ClassDef(MCameraCooling, 1) // Container storing information about the Camera cooling 51 56 }; 52 57 -
trunk/MagicSoft/Mars/mcamera/MCameraHV.h
r2556 r2593 25 25 TArrayS fHV; // [V] Measured high Voltages for all PMTs 26 26 public: 27 MCameraHV() : fHV(577) { } 28 ClassDef(MCameraHV, 1) 27 MCameraHV() : fHV(577) 28 { 29 fName = "MCameraHV"; 30 fTitle = "Container storing information about the Camera HV"; 31 } 32 ClassDef(MCameraHV, 1) // Container storing information about the Camera HV 29 33 }; 30 34 -
trunk/MagicSoft/Mars/mcamera/MCameraLV.h
r2556 r2593 24 24 25 25 public: 26 ClassDef(MCameraLV, 1) 26 MCameraLV() 27 { 28 fName = "MCameraLV"; 29 fTitle = "Container storing information about the Camera LV"; 30 } 31 ClassDef(MCameraLV, 1) // Container storing information about the Camera LV 27 32 }; 28 33 -
trunk/MagicSoft/Mars/mcamera/MCameraLid.h
r2556 r2593 19 19 Byte_t fStatusMotor; // 0=stopped, 1=opening, 2=closing 20 20 public: 21 ClassDef(MCameraLid, 1) 21 MCameraLid() 22 { 23 fName = "MCameraLid"; 24 fTitle = "Container storing information about a Camera lid"; 25 } 26 ClassDef(MCameraLid, 1) // Container storing information about a Camera lid 22 27 }; 23 28 -
trunk/MagicSoft/Mars/mcamera/MCameraLids.h
r2556 r2593 19 19 Byte_t fStatus; // CaCo monitored lid status, Cam.LID_state [0-9] 20 20 public: 21 ClassDef(MCameraLids, 1) 21 MCameraLids() 22 { 23 fName = "MCameraLids"; 24 fTitle = "Container storing information about the Camera lids"; 25 } 26 ClassDef(MCameraLids, 1) // Container storing information about the Camera lids 22 27 }; 23 28 -
trunk/MagicSoft/Mars/mcamera/MCameraPowerSupply.h
r2556 r2593 21 21 22 22 public: 23 ClassDef(MCameraPowerSupply, 1) 23 MCameraPowerSupply() 24 { 25 fName = "MCameraPowerSupply"; 26 fTitle = "Container storing information about the Camera power supply"; 27 } 28 ClassDef(MCameraPowerSupply, 1) // Container storing information about the Camera power supply 24 29 }; 25 30 -
trunk/MagicSoft/Mars/mreport/MReportCamera.cc
r2591 r2593 54 54 { 55 55 fName = "MReportCamera"; 56 fTitle = "Class for CAMERA-REPORT information"; 56 57 } 57 58 -
trunk/MagicSoft/Mars/mreport/MReportDAQ.cc
r2591 r2593 45 45 { 46 46 fName = "MReportDAQ"; 47 fTitle = "Class for DAQ-REPORT information"; 47 48 } 48 49 -
trunk/MagicSoft/Mars/mreport/MReportDrive.cc
r2592 r2593 46 46 MReportDrive::MReportDrive() : MReport("DRIVE-REPORT") 47 47 { 48 fName = "MReportDrive"; 48 fName = "MReportDrive"; 49 fTitle = "Class for DRIVE-REPORT information"; 49 50 } 50 51 -
trunk/MagicSoft/Mars/mreport/MReportTrigger.cc
r2592 r2593 40 40 MReportTrigger::MReportTrigger() : MReport("TRIGGER-REPORT"), fPrescalerRates(19) 41 41 { 42 fName = "MReportTrigger"; 42 fName = "MReportTrigger"; 43 fTitle = "Class for TRIGGER-REPORT information"; 43 44 } 44 45
Note:
See TracChangeset
for help on using the changeset viewer.