Index: trunk/MagicSoft/Mars/mhist/MFillHFadc.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MFillHFadc.cc	(revision 981)
+++ 	(revision )
@@ -1,103 +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): Harald Kornmayer 1/2001 (harald@mppmu.mpg.de)
-!   Author(s): Thomas Bretz  12/2000 (tbretz@uni-sw.gwdg.de)
-!
-!   Copyright: MAGIC Software Development, 2000-2001
-!
-!
-\* ======================================================================== */
-
-//////////////////////////////////////////////////////////////////////////////
-//                                                                          //
-//  MFillHFadc                                                              //
-//                                                                          //
-//  This task fill the n time slices from all pixels                        //
-//  (stored in a MRawEvtData container) into histograms.                    //
-//  This histograms (one per pixel) are stored in MHFadcCam, MHFadcPix      //
-//                                                                          //
-//  Input Containers:                                                       //
-//   MRawEvtData                                                            //
-//                                                                          //
-//  Output Containers:                                                      //
-//   MHFadcCam                                                              //
-//                                                                          //
-//////////////////////////////////////////////////////////////////////////////
-
-#include "MFillHFadc.h"
-
-#include "MLog.h"
-#include "MLogManip.h"
-#include "MParList.h"
-#include "MHFadcCam.h"
-#include "MRawEvtData.h"
-#include "MRawEvtPixelIter.h"
-
-ClassImp(MFillHFadc);
-
-// --------------------------------------------------------------------------
-MFillHFadc::MFillHFadc (const char *name, const char *title) : fRawEvtData(NULL)
-{
-  *fName  = name  ? name  : "MFillHFadc";
-  *fTitle = title ? title : "Task to fill the adc spectra with  raw data";
-}
-
-// --------------------------------------------------------------------------
-//
-// The PrProcess function checks for the existance of all necessary
-// parameter containers
-//
-Bool_t MFillHFadc::PreProcess (MParList *pList)
-{
-    //
-    // check if all necessary input containers are existing
-    //
-    fRawEvtData = (MRawEvtData*)pList->FindObject("MRawEvtData");
-    if (!fRawEvtData)
-    {
-        *fLog << dbginf << "MRawEvtData not found... exit." << endl;
-        return kFALSE;
-    }
-
-    //
-    // check if the output containers are existing, if not craete them
-    //
-    fHistos = (MHFadcCam*)pList->FindCreateObj("MHFadcCam");
-    if (!fHistos)
-        return kFALSE;
-
-    return kTRUE;
-} 
-
-// --------------------------------------------------------------------------
-//
-// This process function loops over all pixels in an MRawEvtData
-// event and fills the values into histograms
-//
-Bool_t MFillHFadc::Process()
-{
-    //  loop over the pixels and fill the values in the histograms
-    fHistos->Fill(fRawEvtData);
-    return kTRUE;
-}
-
-Bool_t MFillHFadc::PostProcess()
-{
-    fHistos->SetReadyToSave();
-    return kTRUE;
-}
Index: trunk/MagicSoft/Mars/mhist/MFillHFadc.h
===================================================================
--- trunk/MagicSoft/Mars/mhist/MFillHFadc.h	(revision 981)
+++ 	(revision )
@@ -1,33 +1,0 @@
-#ifndef MFILLHFADC_H
-#define MFILLHFADC_H
-
-#ifndef MAGIC_H
-#include "MAGIC.h"
-#endif
-
-#ifndef MTASK_H
-#include "MTask.h"
-#endif
-
-class MParList;
-class MHFadcCam;
-class MRawEvtData;
-
-class MFillHFadc : public MTask
-{
-private:
-    MRawEvtData *fRawEvtData; // The raw event data from which the spektrum is created
-    MHFadcCam   *fHistos ;    // The histogram container into which holds the spektrum
-
-public:
-    MFillHFadc (const char *name=NULL, const char *title=NULL);
-
-    Bool_t PreProcess(MParList *pList);
-    Bool_t Process();
-    Bool_t PostProcess();
-
-    ClassDef(MFillHFadc, 0)  // Task to fill the fadc data into histograms
-};
-    
-#endif
-
Index: trunk/MagicSoft/Mars/mhist/MFillHHillas.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MFillHHillas.cc	(revision 981)
+++ 	(revision )
@@ -1,87 +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): Harald Kornmayer 1/2001 (harald@mppmu.mpg.de)
-!   Author(s): Thomas Bretz  12/2000 (tbretz@uni-sw.gwdg.de)
-!
-!   Copyright: MAGIC Software Development, 2000-2001
-!
-!
-\* ======================================================================== */
-
-//////////////////////////////////////////////////////////////////////////////
-//                                                                          //
-//  MFillHHillas                                                            //
-//                                                                          //
-//  This task fills the hillas parameter from MHillas into                  //
-//  histograms (MHHillas)                                                   //
-//                                                                          //
-//  Input Containers:                                                       //
-//   MHillas                                                                //
-//                                                                          //
-//  Output Containers:                                                      //
-//   MHHillas                                                               //
-//                                                                          //
-//////////////////////////////////////////////////////////////////////////////
-#include "MFillHHillas.h"
-
-#include "MLog.h"
-#include "MLogManip.h"
-
-#include "MHillas.h"
-#include "MHHillas.h"
-#include "MParList.h"
-
-ClassImp(MFillHHillas);
-
-// --------------------------------------------------------------------------
-MFillHHillas::MFillHHillas (const char *name, const char *title)
-{
-    *fName  = name  ? name  : "MFillHHillas";
-    *fTitle = title ? title : "Task to fill Hillas histograms";
-}
-
-// --------------------------------------------------------------------------
-Bool_t MFillHHillas::PreProcess (MParList *pList)
-{
-    fEvt = (MHillas*)pList->FindObject("MHillas");
-    if (!fEvt)
-    {
-        *fLog << dbginf << "MHillas not found... aborting." << endl;
-        return kFALSE ;
-    }
-
-    fHistos = (MHHillas*)pList->FindCreateObj("MHHillas");
-    if (!fHistos)
-        return kFALSE;
-
-    return kTRUE ;
-} 
-
-// --------------------------------------------------------------------------
-Bool_t MFillHHillas::Process()
-{
-    fHistos->Fill(fEvt);
-
-    return kTRUE;
-} 
-
-Bool_t MFillHHillas::PostProcess()
-{
-    fHistos->SetReadyToSave();
-    return kTRUE;
-}
Index: trunk/MagicSoft/Mars/mhist/MFillHHillas.h
===================================================================
--- trunk/MagicSoft/Mars/mhist/MFillHHillas.h	(revision 981)
+++ 	(revision )
@@ -1,32 +1,0 @@
-#ifndef MFILLHHILLAS_H
-#define MFILLHHILLAS_H
-
-#ifndef MAGIC_H
-#include "MAGIC.h"
-#endif
-
-#ifndef MTASK_H
-#include "MTask.h"
-#endif
-
-class MParList;
-class MHHillas;
-class MHillas;
-
-class MFillHHillas : public MTask {
- private:
-  const MHillas *fEvt;
-  MHHillas *fHistos ;
-
- public:   
-  MFillHHillas (const char *name=NULL, const char *title=NULL); 
-
-  Bool_t PreProcess(MParList *pList);
-  Bool_t Process();
-  Bool_t PostProcess();
-  
-  ClassDef(MFillHHillas, 0) // Task to fill the Hillas parameters into histograms
-};
-    
-#endif
-
Index: trunk/MagicSoft/Mars/mhist/MFillHStarMap.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MFillHStarMap.cc	(revision 981)
+++ 	(revision )
@@ -1,86 +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  12/2000 (tbretz@uni-sw.gwdg.de)
-!
-!   Copyright: MAGIC Software Development, 2000-2001
-!
-!
-\* ======================================================================== */
-
-//////////////////////////////////////////////////////////////////////////////
-//                                                                          //
-//  MFillHStarMap                                                           //
-//                                                                          //
-//  This task fills a star map (a 2D histogram, MHStarMap)                  //
-//  from the calculated hillas parameter (MHillas).                         //
-//  The algorithm for this can be found in MHStarMap::Fill                  //
-//                                                                          //
-//  Input Containers:                                                       //
-//   MHillas                                                                //
-//                                                                          //
-//  Output Containers:                                                      //
-//   MHStarMap                                                              //
-//                                                                          //
-//////////////////////////////////////////////////////////////////////////////
-#include "MFillHStarMap.h"
-
-#include "MLog.h"
-#include "MLogManip.h"
-#include "MHStarMap.h"
-#include "MHillas.h"
-#include "MParList.h"
-
-ClassImp(MFillHStarMap);
-
-// --------------------------------------------------------------------------
-MFillHStarMap::MFillHStarMap (const char *name, const char *title)
-{
-    *fName  = name  ? name  : "MFillHStarMap";
-    *fTitle = title ? title : "Task to fill a StarMap";
-}
-
-// --------------------------------------------------------------------------
-Bool_t MFillHStarMap::PreProcess (MParList *pList)
-{
-    fEvt = (MHillas*)pList->FindObject("MHillas");
-    if (!fEvt)
-    {
-        *fLog << dbginf << "MHillas not found... aborting." << endl;
-        return kFALSE ;
-    }
-
-    fHistos = (MHStarMap*)pList->FindCreateObj("MHStarMap");
-    if (!fHistos)
-        return kFALSE;
-
-    return kTRUE ;
-} 
-
-// --------------------------------------------------------------------------
-Bool_t MFillHStarMap::Process()
-{
-    fHistos->Fill(fEvt);
-
-    return kTRUE;
-} 
-
-Bool_t MFillHStarMap::PostProcess()
-{
-    fHistos->SetReadyToSave();
-    return kTRUE;
-} 
Index: trunk/MagicSoft/Mars/mhist/MFillHStarMap.h
===================================================================
--- trunk/MagicSoft/Mars/mhist/MFillHStarMap.h	(revision 981)
+++ 	(revision )
@@ -1,33 +1,0 @@
-#ifndef MFILLHSTARMAP_H
-#define MFILLHSTARMAP_H
-
-#ifndef MAGIC_H
-#include "MAGIC.h"
-#endif
-
-#ifndef MTASK_H
-#include "MTask.h"
-#endif
-
-class MParList;
-class MHStarMap;
-class MHillas;
-
-class MFillHStarMap : public MTask
-{
-private:
-    const MHillas   *fEvt;
-    MHStarMap *fHistos ;
-
-public:
-    MFillHStarMap(const char *name=NULL, const char *title=NULL);
-
-    Bool_t PreProcess(MParList *pList);
-    Bool_t Process();
-    Bool_t PostProcess();
-
-    ClassDef(MFillHStarMap, 0) // Task to fill a 2-dim histogram by the Hillas parameters
-};
-
-#endif
-
