Ignore:
Timestamp:
02/07/09 16:11:57 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcamera
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcamera/MCameraCentralPix.cc

    r9289 r9301  
    2929// Class Version 2:
    3030// ----------------
    31 //   + Float_t fDC
     31//   + Int_t fDC
    3232//
    3333/////////////////////////////////////////////////////////////////////////////
  • trunk/MagicSoft/Mars/mcamera/MCameraCentralPix.h

    r9289 r9301  
    1313    Bool_t fStatus; // Status of central pixel
    1414
    15     Float_t fDC;    // [nA]
     15    Int_t fDC;     // DC current in ADC counts
    1616
    1717public:
    18     MCameraCentralPix() : fDC(-1)
     18    MCameraCentralPix() : fDC(0)
    1919    {
    2020        fName  = "MCameraCentralPix";
     
    2525    Bool_t GetStatusCPix() const { return fStatus; } // deprecated - for compatibility only
    2626
     27    Int_t GetDC() const { return fDC; }
     28
    2729    ClassDef(MCameraCentralPix, 2) // Container storing information about the Central Pixel status
    2830};
Note: See TracChangeset for help on using the changeset viewer.