Changeset 3613 for trunk


Ignore:
Timestamp:
03/30/04 20:37:30 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3612 r3613  
    2323   * mcalib/MHGausEvents.[h,cc]
    2424   * mcalib/MHCalibrationChargePix.[h,cc]
     25   * mcalib/MHCalibrationChargeHiGainPix.[h,cc]
     26   * mcalib/MHCalibrationChargeLoGainPix.[h,cc]
    2527     - updated and enlarged documentation
    2628
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeHiGainPix.cc

    r3356 r3613  
    2727//  MHCalibrationChargeHiGainPix
    2828//
    29 //  Performs all the necessary fits to extract the mean number of summed FADC slices
     29//  Store the histogrammed Hi Gain summed FADC slices and the arrival times
    3030//
    3131//////////////////////////////////////////////////////////////////////////////
     
    5959// Default Constructor.
    6060//
     61// Sets:
     62// - the default number for fChargeNbins  (fgChargeNbins)
     63// - the default number for fChargeFirst  (fgChargeFirst)
     64// - the default number for fChargeLast   (fgChargeLast)
     65// - the default number for fAbsTimeNbins (fgAbstTimeNbins)
     66// - the default number for fAbsTimeFirst (fgAbsTimeFirst)
     67// - the default number for fAbsTimeLast  (fgAbsTimeLast)
     68//
     69// - the default name of the  fHGausHist ("HCalibrationChargeHiGainPix")
     70// - the default title of the fHGausHist ("Distribution of Summed Hi Gain FADC slices Pixel ")
     71//
     72// - the default name of the  fHAbsTime ("HAbsTimeHiGainPix")
     73// - the default title of the fHAbsTime ("Distribution of Absolute Arrival Times Hi Gain Pixel ")
     74//
    6175MHCalibrationChargeHiGainPix::MHCalibrationChargeHiGainPix(const char *name, const char *title)
    6276{
     
    7993  fHAbsTime.SetTitle("Distribution of Absolute Arrival Times Hi Gain Pixel "); 
    8094}
    81 
    82 
    83 
    84 
    85 
    86 
    87 
    88 
    89 
    90 
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeHiGainPix.h

    r3355 r3613  
    1212private:
    1313
    14   static const Int_t   fgChargeNbins;
    15   static const Axis_t  fgChargeFirst;
    16   static const Axis_t  fgChargeLast; 
    17 
    18   static const Int_t   fgAbsTimeNbins;
    19   static const Axis_t  fgAbsTimeFirst;
    20   static const Axis_t  fgAbsTimeLast;
     14  static const Int_t   fgChargeNbins;     // Default for fChargeNBins  (now set to: 2000  )
     15  static const Axis_t  fgChargeFirst;     // Default for fChargeFirst  (now set to: -0.5  )
     16  static const Axis_t  fgChargeLast;      // Default for fChargeLast   (now set to: 1999.5)
     17  static const Int_t   fgAbsTimeNbins;    // Default for fAbsTimeNbins (now set to: 20    )
     18  static const Axis_t  fgAbsTimeFirst;    // Default for fAbsTimeFirst (now set to: -0.5  )
     19  static const Axis_t  fgAbsTimeLast;     // Default for fAbsTimeLast  (now set to: 19.5  )
    2120
    2221public:
     
    3433  void SetAbsTimeLast (const Axis_t last =fgAbsTimeLast)         { fAbsTimeLast  = last;    }
    3534
    36   ClassDef(MHCalibrationChargeHiGainPix, 1)  // Histogram class for a Calibration Pixel with extracted Hi Gain
     35  ClassDef(MHCalibrationChargeHiGainPix, 1)  // Histogram class for High Gain part of Calibration Pixel
    3736};
    3837
Note: See TracChangeset for help on using the changeset viewer.