Ignore:
Timestamp:
07/17/03 17:41:32 (21 years ago)
Author:
blanch
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.hxx

    r1101 r2283  
    1414                            // the signal   
    1515                            // = 0 --> a gaussian 
    16   Float_t  fAmplFadc    ;   // the amplitude of the trigger in mV
     16  Float_t  fAmplFadc    ;   // the integral of sph response [counts*ns]
    1717  Float_t  fFwhmFadc    ;   // the width of the signal in nsec
     18  Float_t  fAmplFadcOuter;  // the integral of sph response [counts*ns], outer
     19  Float_t  fFwhmFadcOuter;  // the width of the signal in nsec, outer
    1820  Float_t  fPedesMean[MFADC_CHANNELS]    ;  //  The mean value for the pedestal
    1921                                            //  of each pixel (channel)
     
    2123                                           //  due to the electronics for
    2224                                           //  each pixel (channel)
     25  Float_t fLow2HighGain;    // low gain factor
    2326
    2427 public:
     
    3336  }
    3437
    35   void SetAmplitud(Float_t amp){
     38  void SetLow2High(Float_t l2h){
     39    fLow2HighGain=l2h;
     40  }
     41
     42  void SetAmplitud(Float_t amp, Float_t ampout=0.0){
    3643    fAmplFadc=amp;
     44    fAmplFadcOuter=ampout;
    3745 }
    3846
    39   void SetFwhm(Float_t fwhm){
     47  void SetFwhm(Float_t fwhm, Float_t fwhmout=0.0){
    4048    fFwhmFadc=fwhm;
     49    fFwhmFadcOuter=fwhmout;
    4150  }
    4251
     
    5766  UInt_t GetNumPixel() const { return MFADC_CHANNELS; }
    5867
    59   ClassDef(MMcFadcHeader, 1)  //Stores Montecarlo Information describing the FADC behaviour
     68  ClassDef(MMcFadcHeader, 2)  //Stores Montecarlo Information describing the FADC behaviour
    6069
    6170};
Note: See TracChangeset for help on using the changeset viewer.