Changeset 3630
- Timestamp:
- 04/01/04 22:48:56 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MHCalibrationCam.cc
r3629 r3630 26 26 // MHCalibrationCam 27 27 // 28 // Base class for camera calibration classes. Incorporates the TObjArray's: 29 // - fHiGainArray (for calibrated High Gains per pixel) 30 // - fLoGainArray (for calibrated Low Gains per pixel) 31 // - fAverageHiGainAreas (for averaged High Gains events per camera area index) 32 // - fAverageLoGainAreas (for averaged High Gains events per camera area index) 33 // - fAverageHiGainSectors (for averaged High Gains events per camera sector ) 34 // - fAverageLoGainSectors (for averaged High Gains events per camera sector ) 35 // These TObjArray's are called by their default constructors, thus no objects 36 // are created, until the derived class does so. 37 // 38 // The corresponding operators: [],() and the operators GetAverageHiGainArea(), 39 // GetAverageLoGainArea(), GetAverageHiGainSector() and GetAverageLoGainSector() 40 // have to cast to the corresponding class. It is assumed that all classes dealing 41 // with calibration pixels derive from MHGausEvents 28 42 // 29 43 ///////////////////////////////////////////////////////////////////////////// … … 223 237 // Deletes the TObjArray's and Clones them individually 224 238 // Copies the TArray's 239 // Copies the fPulserFrequency 225 240 // 226 241 TObject *MHCalibrationCam::Clone(const char *) const … … 285 300 cam->fAverageSectorNum = fAverageSectorNum; 286 301 302 cam->fPulserFrequency = fPulserFrequency; 303 287 304 return cam; 288 305 } … … 310 327 // 311 328 // Displays the averaged areas, both High Gain and Low Gain 312 //313 // The following options can be chosen:314 329 // 315 330 // Calls the Draw of the fAverageHiGainAreas and fAverageLoGainAreas objects with options
Note:
See TracChangeset
for help on using the changeset viewer.