Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 3187)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 3188)
@@ -4,4 +4,11 @@
 
                                                  -*-*- END OF LINE -*-*-
+ 2004/02/16: Markus Gaug
+
+   * manalysis/MPedestalCam.h 
+     - changed type of fTotalEntries from ULong_t to UInt_t 
+     - fixed documentation of fTotalEntries
+
+
  2004/02/16: Thomas Bretz
 
Index: /trunk/MagicSoft/Mars/macros/pedphotcalc.C
===================================================================
--- /trunk/MagicSoft/Mars/macros/pedphotcalc.C	(revision 3187)
+++ /trunk/MagicSoft/Mars/macros/pedphotcalc.C	(revision 3188)
@@ -124,4 +124,11 @@
   MCalibrationCalc     calcalc;
   
+  // 
+  // Apply a filter against cosmics
+  // (was directly in MCalibrationCalc in earlier versions)
+  //
+  MFCosmics            cosmics;
+  MContinue            cont(&cosmics);
+
   //
   // As long as we don't have digital modules, 
@@ -133,4 +140,10 @@
   tlist2.AddToList(&geomapl);
   tlist2.AddToList(&sigcalc);
+  //
+  // In case, you want to skip the cosmics rejection, 
+  // uncomment the next line
+  //
+  tlist2.AddToList(&cont);
+  //
   tlist2.AddToList(&calcalc);
   
Index: /trunk/MagicSoft/Mars/manalysis/MPedestalCam.h
===================================================================
--- /trunk/MagicSoft/Mars/manalysis/MPedestalCam.h	(revision 3187)
+++ /trunk/MagicSoft/Mars/manalysis/MPedestalCam.h	(revision 3188)
@@ -19,5 +19,5 @@
   TClonesArray *fArray;  // FIXME: Change TClonesArray away from a pointer?
   
-  ULong_t fTotalEntries;
+  UInt_t fTotalEntries;
   
 public:
@@ -33,9 +33,9 @@
 
   // Setters
-  void SetTotalEntries(const ULong_t n)    { fTotalEntries = n; }
+  void SetTotalEntries(const UInt_t n)    { fTotalEntries = n; }
 
   // Getters
-  Int_t   GetSize()                          const;
-  ULong_t GetTotalEntries()                  const { return fTotalEntries; }
+  UInt_t GetSize()                          const;
+  UInt_t GetTotalEntries()                  const { return fTotalEntries; }
 
   Float_t GetPedestalMin(const MGeomCam *cam) const;
