Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2441)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2442)
@@ -10,9 +10,11 @@
      - do not remove itself from the tasklist, but check 
        the file type for each file again.
+     - added const-qualifiers in the class header
        
-   * manalysis/MMcPedestalNSBAdd.cc:
+   * manalysis/MMcPedestalNSBAdd.[h,cc]:
      - don't do something if camera file version is < 0.7
      - do not remove itself from the tasklist, but check 
        the file type for each file again.
+     - added const-qualifiers in the class header
      
    * mgui/MCamEvent.cc:
Index: /trunk/MagicSoft/Mars/manalysis/MMcPedestalNSBAdd.h
===================================================================
--- /trunk/MagicSoft/Mars/manalysis/MMcPedestalNSBAdd.h	(revision 2441)
+++ /trunk/MagicSoft/Mars/manalysis/MMcPedestalNSBAdd.h	(revision 2442)
@@ -13,13 +13,17 @@
 {
 private:
-    const MGeomCam *fGeom;
-    MMcFadcHeader  *fFadc;
-    MPedestalCam   *fPedCam;
+    const MGeomCam      *fGeom;
+    const MMcFadcHeader *fFadc;
+
+    MPedestalCam *fPedCam;
 
     Float_t fDnsbPixel;
 
+    Bool_t CheckCamVersion(MParList *pList) const;
     Bool_t CheckRunType(MParList *pList) const;
+
     Float_t GetDnsb(MParList *pList) const;
-    Int_t PreProcess(MParList *pList);
+
+    Int_t  PreProcess(MParList *pList);
     Bool_t ReInit(MParList *pList);
 
