Changeset 9301 for trunk/MagicSoft/Mars/mcamera
- Timestamp:
- 02/07/09 16:11:57 (16 years ago)
- Location:
- trunk/MagicSoft/Mars/mcamera
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcamera/MCameraCentralPix.cc
r9289 r9301 29 29 // Class Version 2: 30 30 // ---------------- 31 // + Float_t fDC31 // + Int_t fDC 32 32 // 33 33 ///////////////////////////////////////////////////////////////////////////// -
trunk/MagicSoft/Mars/mcamera/MCameraCentralPix.h
r9289 r9301 13 13 Bool_t fStatus; // Status of central pixel 14 14 15 Float_t fDC; // [nA]15 Int_t fDC; // DC current in ADC counts 16 16 17 17 public: 18 MCameraCentralPix() : fDC( -1)18 MCameraCentralPix() : fDC(0) 19 19 { 20 20 fName = "MCameraCentralPix"; … … 25 25 Bool_t GetStatusCPix() const { return fStatus; } // deprecated - for compatibility only 26 26 27 Int_t GetDC() const { return fDC; } 28 27 29 ClassDef(MCameraCentralPix, 2) // Container storing information about the Central Pixel status 28 30 };
Note:
See TracChangeset
for help on using the changeset viewer.