Index: /trunk/MagicSoft/Mars/mjobs/MJPedestal.h
===================================================================
--- /trunk/MagicSoft/Mars/mjobs/MJPedestal.h	(revision 4620)
+++ /trunk/MagicSoft/Mars/mjobs/MJPedestal.h	(revision 4621)
@@ -21,74 +21,76 @@
 {
 private:
-    static const Double_t fgPedestalMin;
-    static const Double_t fgPedestalMax;
-    static const Double_t fgPedRmsMin;
-    static const Double_t fgPedRmsMax;
 
-    static const Float_t  fgRefPedClosedLids;
-    static const Float_t  fgRefPedExtraGalactic;
-    static const Float_t  fgRefPedGalactic;
+  static const Double_t fgPedestalMin;
+  static const Double_t fgPedestalMax;
+  static const Double_t fgPedRmsMin;
+  static const Double_t fgPedRmsMax;
+  
+  static const Float_t  fgRefPedClosedLids;
+  static const Float_t  fgRefPedExtraGalactic;
+  static const Float_t  fgRefPedGalactic;
 
-    static const Float_t  fgRefPedRmsClosedLidsInner;
-    static const Float_t  fgRefPedRmsExtraGalacticInner;
-    static const Float_t  fgRefPedRmsGalacticInner;
+  static const Float_t  fgRefPedRmsClosedLidsInner;
+  static const Float_t  fgRefPedRmsExtraGalacticInner;
+  static const Float_t  fgRefPedRmsGalacticInner;
+  
+  static const Float_t  fgRefPedRmsClosedLidsOuter;
+  static const Float_t  fgRefPedRmsExtraGalacticOuter;
+  static const Float_t  fgRefPedRmsGalacticOuter;
+  
+  TString fOutputPath;        // Directory where the F0-files get stored
+  
+  TEnv       *fEnv;           // Input setup-file
+  MRunIter   *fRuns;          // Used pedestal runs
+  MSequence  *fSequence;      //
 
-    static const Float_t  fgRefPedRmsClosedLidsOuter;
-    static const Float_t  fgRefPedRmsExtraGalacticOuter;
-    static const Float_t  fgRefPedRmsGalacticOuter;
-    
-    TString fOutputPath;
+  MExtractor *fExtractor;     // Signal extractor, used to find the nr. of used FADC slices
+  
+  MPedestalCam  fPedestalCam; // Created pedestal results
+  MBadPixelsCam fBadPixels;   // Bad Pixels
+  
+  enum  Display_t { kDataCheckDisplay, kNormalDisplay }; // Possible Display types
 
-    TEnv       *fEnv;           // Input setup-file
-    MRunIter   *fRuns;
-    MSequence  *fSequence;      //
+  Display_t fDisplayType;     // Chosen Display type    
+  
+  Bool_t fDataCheck;          // Flag if the data check is run on raw data
+  
+  Bool_t ReadPedestalCam();
+  Bool_t WriteResult();
+  
+  void   DisplayResult(MParList &plist);
+  void   DisplayReferenceLines(MHCamera *cam, const Int_t what) const;
+  void   DisplayOutliers(TH1D *hist) const;
+  void   FixDataCheckHist(TH1D *hist) const;
+  
+  void   CheckEnv();
+  
+public:
 
-    MExtractor *fExtractor;     // Signal extractor, used to find the nr. of used FADC slices
-
-    MPedestalCam  fPedestalCam;
-    MBadPixelsCam fBadPixels;
-
-    enum  Display_t { kDataCheckDisplay, kNormalDisplay }; // Possible Display types
-
-    Display_t fDisplayType;     // Chosen Display type    
-    
-    Bool_t fDataCheck;          // Flag if the data check is run on raw data
-
-    Bool_t ReadPedestalCam();
-    Bool_t WriteResult();
-
-    void   DisplayResult(MParList &plist);
-    void   DisplayReferenceLines(MHCamera *cam, const Int_t what) const;
-    void   DisplayOutliers(TH1D *hist) const;
-    void   FixDataCheckHist(TH1D *hist) const;
-    
-    void   CheckEnv();
-
-public:
-    MJPedestal(const char *name=NULL, const char *title=NULL);
-    ~MJPedestal();
-
-    MPedestalCam &GetPedestalCam()            { return fPedestalCam; }
-    const MBadPixelsCam &GetBadPixels() const { return fBadPixels;   }
-
-    const char* GetOutputFile() const;
-    const Bool_t IsDataCheck() const    { return fDataCheck;  }
-
-    Bool_t Process();
-    Bool_t ProcessFile();
-
-    void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
-    void SetExtractor(MExtractor* ext) { fExtractor = ext; }
-    void SetInput(MRunIter *iter) { fRuns = iter; }
-    void SetSequence(MSequence *seq) { fSequence = seq; }
-    void SetOutputPath(const char *path=".");
-    void SetEnv(const char *env);
-
-    void SetDataCheck(const Bool_t b=kTRUE) { fDataCheck = b; SetDataCheckDisplay(); }
-
-    void SetDataCheckDisplay() { fDisplayType = kDataCheckDisplay; }
-    void SetNormalDisplay()    { fDisplayType = kNormalDisplay;    }
-
-    ClassDef(MJPedestal, 0) // Tool to create a pedestal file (MPedestalCam)
+  MJPedestal(const char *name=NULL, const char *title=NULL);
+  ~MJPedestal();
+  
+  MPedestalCam &GetPedestalCam()            { return fPedestalCam; }
+  const MBadPixelsCam &GetBadPixels() const { return fBadPixels;   }
+  
+  const char* GetOutputFile() const;
+  const Bool_t IsDataCheck() const    { return fDataCheck;  }
+  
+  Bool_t Process();
+  Bool_t ProcessFile();
+  
+  void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); }
+  void SetExtractor(MExtractor* ext) { fExtractor = ext; }
+  void SetInput(MRunIter *iter) { fRuns = iter; }
+  void SetSequence(MSequence *seq) { fSequence = seq; }
+  void SetOutputPath(const char *path=".");
+  void SetEnv(const char *env);
+  
+  void SetDataCheck(const Bool_t b=kTRUE) { fDataCheck = b; SetDataCheckDisplay(); }
+  
+  void SetDataCheckDisplay() { fDisplayType = kDataCheckDisplay; }
+  void SetNormalDisplay()    { fDisplayType = kNormalDisplay;    }
+  
+  ClassDef(MJPedestal, 0) // Tool to create a pedestal file (MPedestalCam)
 };
 
