Index: trunk/MagicSoft/Mars/manalysis/MCurrents.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MCurrents.cc	(revision 2804)
+++ 	(revision )
@@ -1,78 +1,0 @@
-/* ======================================================================== *\
-!
-! *
-! * This file is part of MARS, the MAGIC Analysis and Reconstruction
-! * Software. It is distributed to you in the hope that it can be a useful
-! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
-! * It is distributed WITHOUT ANY WARRANTY.
-! *
-! * Permission to use, copy, modify and distribute this software and its
-! * documentation for any purpose is hereby granted without fee,
-! * provided that the above copyright notice appear in all copies and
-! * that both that copyright notice and this permission notice appear
-! * in supporting documentation. It is provided "as is" without express
-! * or implied warranty.
-! *
-!
-!
-!   Author(s): Thomas Bretz, 5/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
-!
-!   Copyright: MAGIC Software Development, 2000-2003
-!
-!
-\* ======================================================================== */
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// MCurrents (PRELIMINARY)
-//
-/////////////////////////////////////////////////////////////////////////////
-#include "MCurrents.h"
-
-#include <TMath.h>
-
-#include "MLog.h"
-#include "MLogManip.h"
-
-ClassImp(MCurrents);
-
-using namespace std;
-
-// --------------------------------------------------------------------------
-//
-// Default constructor.
-//
-MCurrents::MCurrents(Int_t size, const char *name, const char *title)
-    : fArray(size)
-{
-    fName  = name  ? name  : "MCurrents";
-    fTitle = title ? title : "Storage container for the pixel currents";
-}
-
-// --------------------------------------------------------------------------
-//
-// Print the hillas Parameters to *fLog
-//
-void MCurrents::Print(Option_t *) const
-{
-    *fLog << all << underline << GetDescriptor() << endl;
-    for (int i=0; i<fArray.GetSize(); i++)
-        *fLog << " " << GetCurrent(i);
-    *fLog << endl;
-}
-
-UInt_t MCurrents::GetMin() const
-{
-    UInt_t val = (UInt_t)-1;
-    for (int i=0; i<fArray.GetSize(); i++)
-        val = TMath::Min(val, GetCurrent(i));
-    return val;
-}
-
-UInt_t MCurrents::GetMax() const
-{
-    UInt_t val = 0;
-    for (int i=0; i<fArray.GetSize(); i++)
-        val = TMath::Max(val, GetCurrent(i));
-    return val;
-}
Index: trunk/MagicSoft/Mars/manalysis/MCurrents.h
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MCurrents.h	(revision 2804)
+++ 	(revision )
@@ -1,51 +1,0 @@
-#ifndef MARS_MCurrents
-#define MARS_MCurrents
-
-#ifndef MARS_MCamEvent
-#include "MCamEvent.h"
-#endif
-
-#ifndef ROOT_TArrayI
-#include <TArrayI.h>
-#endif
-
-class MCurrents : public MCamEvent
-{
-private:
-    /*
-       "DC %s %s %02d %02d %02d %03d 577*%05d \n",
-       status1, status2, hour, minute, second, ms,
-       577 * pixel_DC_readout_in_nAmp
-       */
-    TString fStatus[2];
-    TArrayI fArray; // [nA] Unsigned Int!
-
-public:
-    MCurrents(Int_t size=577, const char *name=NULL, const char *title=NULL);
-
-    void SetCurrent(Int_t i, UInt_t val) { fArray[i] = (Int_t)val; }
-    UInt_t GetCurrent(Int_t i) const { return (*this)[i]; }
-    UInt_t &operator[](Int_t i) { return (UInt_t&)fArray[i]; }
-    const UInt_t &operator[](Int_t i) const { return (*const_cast<MCurrents*>(this))[i]; }
-
-    UInt_t GetMin() const;
-    UInt_t GetMax() const;
-
-    void SetStatus1(const TString &str) { fStatus[0] = str; }
-    void SetStatus2(const TString &str) { fStatus[1] = str; }
-
-    void Print(Option_t *opt=NULL) const;
-
-    Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const
-    {
-        val = (*this)[idx];
-        return val>0;
-    }
-    void DrawPixelContent(Int_t num) const
-    {
-    }
-
-    ClassDef(MCurrents, 1) // Storage Container for the Currents (PRELIMINARY)
-};
-
-#endif
Index: trunk/MagicSoft/Mars/manalysis/Makefile
===================================================================
--- trunk/MagicSoft/Mars/manalysis/Makefile	(revision 2804)
+++ trunk/MagicSoft/Mars/manalysis/Makefile	(revision 2805)
@@ -77,5 +77,4 @@
            MCT1PadONOFF.cc  \
            MPad.cc  \
-           MCurrents.cc  \
            MPedestalWorkaround.cc \
            MExtractedSignalCam.cc \
