Changeset 5599 for trunk/MagicSoft


Ignore:
Timestamp:
12/15/04 00:58:12 (20 years ago)
Author:
MAGIC
Message:
*** empty log message ***
Location:
trunk/MagicSoft
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5595 r5599  
    2121                                                 -*-*- END OF LINE -*-*-
    2222
     23 2004/12/15: Abelardo Moralejo
     24
     25  * mmc/MMcConfigRunHeader.h
     26    - added data member fPmtTimeJitter, sigma of gaussian of the time
     27      jitter introduced in the time of each photoelectron.
     28
    2329 2004/12/14: Markus Gaug
    2430
     
    4248    - adjusted the offset from peak search window to extraction window
    4349      such that they start at the same slice for the case:
    44       fOffsetFromWindow=0. This was the original intention of thd
    45       extractor and had been lost at some place. However, the default
     50      fOffsetFromWindow=0. This was the original intention of the
     51      extractor and had been lost at some place. Instead, the default
    4652      (fOffsetFromWindow=1) did before correspond to an offset of 2
    47       slices which gives wrong results for the calibration and further
     53      slices which gave wrong results for the calibration and further
    4854      default settings.
    4955    - Changed one comparison: (Byte_t - Byte_t) > 0 to (Byte_t > Byte_t)
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcConfigRunHeader.h

    r5339 r5599  
    3333//            mirrors, etc.
    3434//
     35// Version 5: Added member fPmtTimeJitter, the time jitter of the PMTs
     36//            (sigma of gaussian) for each photoelectron.
     37//
    3538/////////////////////////////////////////////////////////////////////////////////
    3639
     
    5760    Float_t fMissPointingX;     // [deg] Misspointing in deg added in he Camera
    5861    Float_t fMissPointingY;     // [deg] simulation at rho (rotation FoV) = 0.
     62
     63    Float_t fPmtTimeJitter;     // [ns] PMT time jitter (sigma of gaussian), per phe-
    5964
    6065    // QE Information
     
    125130    MGeomPMT &GetPMT(int i)  { return *(MGeomPMT*)(fPMTs->UncheckedAt(i)); }
    126131    MGeomPMT &GetPMT(int i) const { return *(MGeomPMT*)(fPMTs->UncheckedAt(i)); }
     132    void    SetPmtTimeJitter(Float_t x) { fPmtTimeJitter = x; }
     133    Float_t GetPmtTimeJitter() const { return fPmtTimeJitter; }
    127134
    128     ClassDef(MMcConfigRunHeader, 4)  // class for monte carlo configuration information
     135    ClassDef(MMcConfigRunHeader, 5)  // class for monte carlo configuration information
    129136};
    130137
Note: See TracChangeset for help on using the changeset viewer.