- Timestamp:
- 03/30/04 20:37:30 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3612 r3613 23 23 * mcalib/MHGausEvents.[h,cc] 24 24 * mcalib/MHCalibrationChargePix.[h,cc] 25 * mcalib/MHCalibrationChargeHiGainPix.[h,cc] 26 * mcalib/MHCalibrationChargeLoGainPix.[h,cc] 25 27 - updated and enlarged documentation 26 28 -
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeHiGainPix.cc
r3356 r3613 27 27 // MHCalibrationChargeHiGainPix 28 28 // 29 // Performs all the necessary fits to extract the mean number of summed FADC slices29 // Store the histogrammed Hi Gain summed FADC slices and the arrival times 30 30 // 31 31 ////////////////////////////////////////////////////////////////////////////// … … 59 59 // Default Constructor. 60 60 // 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 // 61 75 MHCalibrationChargeHiGainPix::MHCalibrationChargeHiGainPix(const char *name, const char *title) 62 76 { … … 79 93 fHAbsTime.SetTitle("Distribution of Absolute Arrival Times Hi Gain Pixel "); 80 94 } 81 82 83 84 85 86 87 88 89 90 -
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeHiGainPix.h
r3355 r3613 12 12 private: 13 13 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 ) 21 20 22 21 public: … … 34 33 void SetAbsTimeLast (const Axis_t last =fgAbsTimeLast) { fAbsTimeLast = last; } 35 34 36 ClassDef(MHCalibrationChargeHiGainPix, 1) // Histogram class for a Calibration Pixel with extracted Hi Gain35 ClassDef(MHCalibrationChargeHiGainPix, 1) // Histogram class for High Gain part of Calibration Pixel 37 36 }; 38 37
Note:
See TracChangeset
for help on using the changeset viewer.