Ignore:
Timestamp:
01/15/05 19:32:28 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrateData.h

    r5729 r5853  
    4343  UShort_t fCalibrationMode;             // Flag defining the calibration mode (CalibrationMode_t)
    4444  Byte_t   fPedestalFlag;                // Flags defining to calibrate the pedestal each event or each run
     45  Byte_t   fSignalType;                  // Flag defining the signal type (kphot or kphe)
     46 
     47  Float_t  fRenormFactor;                // Possible renormalization factor for signals (-> phes)
    4548 
    4649  TList fNamesPedestal;                  // Names of input and output pedestal conatainer
     
    8184  };
    8285 
     86  enum SignalType_t
     87  {
     88      kPhe,
     89      kPhot
     90  };
     91 
    8392  MCalibrateData(CalibrationMode_t calmode=kDefault,
    8493                 const char *name=NULL, const char *title=NULL);
     
    8998 
    9099  void   SetCalibrationMode ( CalibrationMode_t calmode=kDefault ) { fCalibrationMode=calmode; }
     100  void   SetSignalType      ( SignalType_t      sigtype=kPhot    ) { fSignalType     =sigtype; } 
    91101
    92102  void   AddPedestal(const char *name="Cam");
    93103  void   AddPedestal(const char *pedestal, const char *pedphot);
    94104
    95   ClassDef(MCalibrateData, 0)   // Task to calibrate FADC counts into Cherenkov photons
     105  ClassDef(MCalibrateData, 1)   // Task to calibrate FADC counts into Cherenkov photons
    96106};
    97107
Note: See TracChangeset for help on using the changeset viewer.