Index: trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h
===================================================================
--- trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h	(revision 706)
+++ trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h	(revision 708)
@@ -12,5 +12,4 @@
 
 #pragma link C++ class MCT1ReadAscii;
-#pragma link C++ class MCT1Pedestals;
 
 #pragma link C++ class MPedestalPix;
Index: trunk/MagicSoft/Mars/manalysis/MCT1Pedestals.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MCT1Pedestals.cc	(revision 706)
+++ 	(revision )
@@ -1,53 +1,0 @@
-/////////////////////////////////////////////////////////////////////////////
-//                                                                         //
-// MCT1Pedestals                                                           //
-//                                                                         //
-/////////////////////////////////////////////////////////////////////////////
-#include "MCT1Pedestals.h"
-
-#include <fstream.h>
-
-#include "MLog.h"
-
-ClassImp(MCT1Pedestals)
-
-MCT1Pedestals::MCT1Pedestals(const char *name, const char *title)
-{
-    *fName  = name  ? name  : "MCT1Pedestals";
-    *fTitle = title ? title : "Storage container for CT1 Pedestals";
-
-    //
-    // set the pedestals to default values
-    //
-    for (Int_t i = 0; i<127; i++ )
-        fPedest[i] = 1.5;
-}
-
-void MCT1Pedestals::AsciiRead (ifstream &fin)
-{
-    *fLog << "MCT1Pedestals::AsciiRead: Reading Pedestals..." << endl;
-
-    Int_t   dummyI;
-    Float_t dummyF;
-
-    //
-    // skip the next 4 values
-    //
-    fin >> dummyF; 
-    fin >> dummyF; 
-    fin >> dummyF; 
-    fin >> dummyF; 
-
-    //
-    //    read in the next 127 numbers as the pedestals
-    //
-    for (Int_t i = 0; i<127; i++)
-    {
-        fin >> dummyF;
-
-        if (dummyF > 0.0)
-            fPedest[i] = dummyF;
-    }
-
-    fin >> dummyI;
-}
Index: trunk/MagicSoft/Mars/manalysis/MCT1Pedestals.h
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MCT1Pedestals.h	(revision 706)
+++ 	(revision )
@@ -1,24 +1,0 @@
-#ifndef MCT1PEDESTALS_H
-#define MCT1PEDESTALS_H
-
-#ifndef MPARCONTAINER_H
-#include "MParContainer.h"
-#endif
-
-class MCT1Pedestals : public MParContainer
-{
-private:
-    Float_t fPedest[127]; //!
-
-public:
-    MCT1Pedestals(const char *name=NULL, const char *title=NULL);
-
-    Float_t &operator[](int i) { return fPedest[i]; }
-
-    void AsciiRead (ifstream &fin);
-
-    ClassDef(MCT1Pedestals, 1)	// Storage Container for CT1 Pedestals
-};
-
-#endif
-
