Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 5598)
+++ trunk/MagicSoft/Mars/Changelog	(revision 5599)
@@ -21,4 +21,10 @@
                                                  -*-*- END OF LINE -*-*-
 
+ 2004/12/15: Abelardo Moralejo
+
+  * mmc/MMcConfigRunHeader.h
+    - added data member fPmtTimeJitter, sigma of gaussian of the time
+      jitter introduced in the time of each photoelectron.
+
  2004/12/14: Markus Gaug
 
@@ -42,8 +48,8 @@
     - adjusted the offset from peak search window to extraction window
       such that they start at the same slice for the case: 
-      fOffsetFromWindow=0. This was the original intention of thd 
-      extractor and had been lost at some place. However, the default 
+      fOffsetFromWindow=0. This was the original intention of the 
+      extractor and had been lost at some place. Instead, the default 
       (fOffsetFromWindow=1) did before correspond to an offset of 2 
-      slices which gives wrong results for the calibration and further
+      slices which gave wrong results for the calibration and further
       default settings. 
     - Changed one comparison: (Byte_t - Byte_t) > 0 to (Byte_t > Byte_t)
Index: trunk/MagicSoft/include-Classes/MMcFormat/MMcConfigRunHeader.h
===================================================================
--- trunk/MagicSoft/include-Classes/MMcFormat/MMcConfigRunHeader.h	(revision 5598)
+++ trunk/MagicSoft/include-Classes/MMcFormat/MMcConfigRunHeader.h	(revision 5599)
@@ -33,4 +33,7 @@
 //            mirrors, etc.
 //
+// Version 5: Added member fPmtTimeJitter, the time jitter of the PMTs
+//            (sigma of gaussian) for each photoelectron.
+//
 /////////////////////////////////////////////////////////////////////////////////
 
@@ -57,4 +60,6 @@
     Float_t fMissPointingX;     // [deg] Misspointing in deg added in he Camera 
     Float_t fMissPointingY;     // [deg] simulation at rho (rotation FoV) = 0. 
+
+    Float_t fPmtTimeJitter;     // [ns] PMT time jitter (sigma of gaussian), per phe-
 
     // QE Information
@@ -125,6 +130,8 @@
     MGeomPMT &GetPMT(int i)  { return *(MGeomPMT*)(fPMTs->UncheckedAt(i)); }
     MGeomPMT &GetPMT(int i) const { return *(MGeomPMT*)(fPMTs->UncheckedAt(i)); }
+    void    SetPmtTimeJitter(Float_t x) { fPmtTimeJitter = x; }
+    Float_t GetPmtTimeJitter() const { return fPmtTimeJitter; }
 
-    ClassDef(MMcConfigRunHeader, 4)  // class for monte carlo configuration information
+    ClassDef(MMcConfigRunHeader, 5)  // class for monte carlo configuration information
 };
 
