Changeset 3630


Ignore:
Timestamp:
04/01/04 22:48:56 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationCam.cc

    r3629 r3630  
    2626// MHCalibrationCam                                               
    2727//
     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
    2842//
    2943/////////////////////////////////////////////////////////////////////////////
     
    223237// Deletes the TObjArray's and Clones them individually
    224238// Copies the TArray's
     239// Copies the fPulserFrequency
    225240//
    226241TObject *MHCalibrationCam::Clone(const char *) const
     
    285300  cam->fAverageSectorNum       = fAverageSectorNum;     
    286301
     302  cam->fPulserFrequency        = fPulserFrequency;
     303
    287304  return cam;
    288305}
     
    310327//
    311328// Displays the averaged areas, both High Gain and Low Gain
    312 //
    313 // The following options can be chosen:
    314329//
    315330// Calls the Draw of the fAverageHiGainAreas and fAverageLoGainAreas objects with options
Note: See TracChangeset for help on using the changeset viewer.