Changeset 5599
- Timestamp:
- 12/15/04 00:58:12 (20 years ago)
- Location:
- trunk/MagicSoft
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5595 r5599 21 21 -*-*- END OF LINE -*-*- 22 22 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 23 29 2004/12/14: Markus Gaug 24 30 … … 42 48 - adjusted the offset from peak search window to extraction window 43 49 such that they start at the same slice for the case: 44 fOffsetFromWindow=0. This was the original intention of th d45 extractor and had been lost at some place. However, the default50 fOffsetFromWindow=0. This was the original intention of the 51 extractor and had been lost at some place. Instead, the default 46 52 (fOffsetFromWindow=1) did before correspond to an offset of 2 47 slices which g iveswrong results for the calibration and further53 slices which gave wrong results for the calibration and further 48 54 default settings. 49 55 - Changed one comparison: (Byte_t - Byte_t) > 0 to (Byte_t > Byte_t) -
trunk/MagicSoft/include-Classes/MMcFormat/MMcConfigRunHeader.h
r5339 r5599 33 33 // mirrors, etc. 34 34 // 35 // Version 5: Added member fPmtTimeJitter, the time jitter of the PMTs 36 // (sigma of gaussian) for each photoelectron. 37 // 35 38 ///////////////////////////////////////////////////////////////////////////////// 36 39 … … 57 60 Float_t fMissPointingX; // [deg] Misspointing in deg added in he Camera 58 61 Float_t fMissPointingY; // [deg] simulation at rho (rotation FoV) = 0. 62 63 Float_t fPmtTimeJitter; // [ns] PMT time jitter (sigma of gaussian), per phe- 59 64 60 65 // QE Information … … 125 130 MGeomPMT &GetPMT(int i) { return *(MGeomPMT*)(fPMTs->UncheckedAt(i)); } 126 131 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; } 127 134 128 ClassDef(MMcConfigRunHeader, 4) // class for monte carlo configuration information135 ClassDef(MMcConfigRunHeader, 5) // class for monte carlo configuration information 129 136 }; 130 137
Note:
See TracChangeset
for help on using the changeset viewer.