Changeset 6039


Ignore:
Timestamp:
01/27/05 10:56:51 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6038 r6039  
    2121                                                 -*-*- END OF LINE -*-*-
    2222 2005/01/27 Daniel Mazin and Markus Gaug
     23
     24   * mcalib/MCalibrateData.[h,cc]
     25     - derive this class from MCamEvent in order to be able to display
     26       evolution of conversion factors in case of interlaced cal.
     27       events
    2328
    2429   * mpointing/MInterpolatePointingPos.[h,cc]
  • trunk/MagicSoft/Mars/mcalib/MCalibrateData.h

    r5865 r6039  
    2525#endif
    2626
     27#ifndef MARS_MCamEvent
     28#include "MCamEvent.h"
     29#endif
     30
    2731class MGeomCam;
    2832class MBadPixelsCam;
     
    3539class MCerPhotEvt;
    3640
    37 class MCalibrateData : public MTask
     41class MCalibrateData : public MTask, public MCamEvent
    3842{
    3943private:
     
    107111  void   EnablePedestalType(PedestalType_t i)     { fPedestalFlag |=  i;      }
    108112
     113  Int_t  GetSize() const { return fCalibConsts.GetSize(); }
     114
    109115  void   Print(Option_t *o="") const;
    110116
     
    118124
    119125  Bool_t UpdateConversionFactors();
     126
     127  Bool_t GetPixelContent    ( Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0 ) const;
     128  void DrawPixelContent( Int_t num) const;
    120129 
    121130  ClassDef(MCalibrateData, 1)   // Task to calibrate FADC counts into Cherenkov photons
Note: See TracChangeset for help on using the changeset viewer.