Ignore:
Timestamp:
07/06/01 14:48:54 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MFillHFadc.cc

    r855 r859  
    2525
    2626//////////////////////////////////////////////////////////////////////////////
    27 //
    28 //  MFillHFadc
    29 //
    30 //  This task fill the n time slices from all pixels
    31 //  (stored in a MRawEvtData container) into histograms.
    32 //  This histograms (one per pixel) are stored in MHFadcCam, MHFadcPix
    33 //
     27//                                                                          //
     28//  MFillHFadc                                                              //
     29//                                                                          //
     30//  This task fill the n time slices from all pixels                        //
     31//  (stored in a MRawEvtData container) into histograms.                    //
     32//  This histograms (one per pixel) are stored in MHFadcCam, MHFadcPix      //
     33//                                                                          //
     34//  Input Containers:                                                       //
     35//   MRawEvtData                                                            //
     36//                                                                          //
     37//  Output Containers:                                                      //
     38//   MHFadcCam                                                              //
     39//                                                                          //
    3440//////////////////////////////////////////////////////////////////////////////
    3541
     
    4349#include "MRawEvtPixelIter.h"
    4450
    45 ClassImp(MFillHFadc)
     51ClassImp(MFillHFadc);
    4652
    4753// --------------------------------------------------------------------------
     
    6268    // check if all necessary input containers are existing
    6369    //
    64     fRawEvtData = (MRawEvtData*)pList->FindCreateObj("MRawEvtData");
     70    fRawEvtData = (MRawEvtData*)pList->FindObject("MRawEvtData");
    6571    if (!fRawEvtData)
    6672    {
    67         *fLog << dbginf << " Error: MRawEvtData not found... exit." << endl;
     73        *fLog << dbginf << "MRawEvtData not found... exit." << endl;
    6874        return kFALSE;
    6975    }
  • trunk/MagicSoft/Mars/mhist/MFillHHillas.cc

    r855 r859  
    2424\* ======================================================================== */
    2525
    26 ////////////////////////////////////////////////////////////////////////
    27 //
    28 //  MFillHHillas
    29 //
    30 //  This task fills the hillas parameter from MHillas into
    31 //  histograms (MHHillas)
    32 //
    33 ////////////////////////////////////////////////////////////////////////
     26//////////////////////////////////////////////////////////////////////////////
     27//                                                                          //
     28//  MFillHHillas                                                            //
     29//                                                                          //
     30//  This task fills the hillas parameter from MHillas into                  //
     31//  histograms (MHHillas)                                                   //
     32//                                                                          //
     33//  Input Containers:                                                       //
     34//   MHillas                                                                //
     35//                                                                          //
     36//  Output Containers:                                                      //
     37//   MHHillas                                                               //
     38//                                                                          //
     39//////////////////////////////////////////////////////////////////////////////
    3440#include "MFillHHillas.h"
    3541
     
    3945#include "MParList.h"
    4046
    41 ClassImp(MFillHHillas)
     47ClassImp(MFillHHillas);
    4248
    4349// --------------------------------------------------------------------------
  • trunk/MagicSoft/Mars/mhist/MFillHHillas.h

    r852 r859  
    1616class MFillHHillas : public MTask {
    1717 private:
    18   MHillas *fEvt;
     18  const MHillas *fEvt;
    1919  MHHillas *fHistos ;
    2020
  • trunk/MagicSoft/Mars/mhist/MFillHStarMap.cc

    r855 r859  
    2323\* ======================================================================== */
    2424
    25 ////////////////////////////////////////////////////////////////////////
    26 //
    27 //  MFillHStarMap
    28 //
    29 //  This task fills a star map (a 2D histogram, MHStarMap)
    30 //  from the calculated hillas parameter (MHillas).
    31 //  The algorithm for this can be found in MHStarMap::Fill
    32 //
    33 ////////////////////////////////////////////////////////////////////////
     25//////////////////////////////////////////////////////////////////////////////
     26//                                                                          //
     27//  MFillHStarMap                                                           //
     28//                                                                          //
     29//  This task fills a star map (a 2D histogram, MHStarMap)                  //
     30//  from the calculated hillas parameter (MHillas).                         //
     31//  The algorithm for this can be found in MHStarMap::Fill                  //
     32//                                                                          //
     33//  Input Containers:                                                       //
     34//   MHillas                                                                //
     35//                                                                          //
     36//  Output Containers:                                                      //
     37//   MHStarMap                                                              //
     38//                                                                          //
     39//////////////////////////////////////////////////////////////////////////////
    3440#include "MFillHStarMap.h"
    3541
     
    4046#include "MParList.h"
    4147
    42 ClassImp(MFillHStarMap)
     48ClassImp(MFillHStarMap);
    4349
    4450// --------------------------------------------------------------------------
  • trunk/MagicSoft/Mars/mhist/MFillHStarMap.h

    r852 r859  
    1414class MHillas;
    1515
    16 class MFillHStarMap : public MTask {
    17  private:
    18   MHillas   *fEvt;
    19   MHStarMap *fHistos ;
     16class MFillHStarMap : public MTask
     17{
     18private:
     19    const MHillas   *fEvt;
     20    MHStarMap *fHistos ;
    2021
    21  public:   
    22   MFillHStarMap(const char *name=NULL, const char *title=NULL);
     22public:
     23    MFillHStarMap(const char *name=NULL, const char *title=NULL);
    2324
    24   Bool_t PreProcess(MParList *pList);
    25   Bool_t Process();
    26   Bool_t PostProcess();
    27  
    28   ClassDef(MFillHStarMap, 0) // Task to fill a 2-dim histogram by the Hillas parameters
     25    Bool_t PreProcess(MParList *pList);
     26    Bool_t Process();
     27    Bool_t PostProcess();
    2928
     29    ClassDef(MFillHStarMap, 0) // Task to fill a 2-dim histogram by the Hillas parameters
    3030};
    31    
     31
    3232#endif
    3333
  • trunk/MagicSoft/Mars/mhist/MHFadcCam.cc

    r765 r859  
    3636#include <TH1.h>
    3737
    38 ClassImp(MHFadcCam)
     38ClassImp(MHFadcCam);
    3939
    4040// --------------------------------------------------------------------------
  • trunk/MagicSoft/Mars/mhist/MHFadcPix.cc

    r765 r859  
    3737#include <TPad.h>
    3838
    39 ClassImp(MHFadcPix)
     39ClassImp(MHFadcPix);
    4040
    4141// --------------------------------------------------------------------------
  • trunk/MagicSoft/Mars/mhist/MHHillas.cc

    r852 r859  
    1717#include "MHillas.h"
    1818
    19 ClassImp(MHHillas)
     19ClassImp(MHHillas);
    2020
    2121MHHillas::MHHillas (const char *name, const char *title)
     
    5555}
    5656
    57 void MHHillas::Fill(MHillas *par)
     57void MHHillas::Fill(const MHillas *par)
    5858{
    5959    fAlpha ->Fill(fabs(par->GetAlpha()));
  • trunk/MagicSoft/Mars/mhist/MHHillas.h

    r712 r859  
    2525    ~MHHillas();
    2626
    27     void Fill(MHillas *par);
     27    void Fill(const MHillas *par);
    2828
    2929    TH1F *GetHistAlpha()  { return fAlpha; }
  • trunk/MagicSoft/Mars/mhist/MHMcCollectionArea.cc

    r853 r859  
    2929#include <TH2.h>
    3030
    31 ClassImp(MHMcCollectionArea)
     31ClassImp(MHMcCollectionArea);
    3232
    3333MHMcCollectionArea::MHMcCollectionArea(const char *name, const char *title)
  • trunk/MagicSoft/Mars/mhist/MHMcEnergies.cc

    r851 r859  
    2828#include "MHMcEnergy.h"
    2929
    30 ClassImp(MHMcEnergies)
     30ClassImp(MHMcEnergies);
    3131
    3232MHMcEnergies::MHMcEnergies(const UInt_t count, const char *name, const char *title)
  • trunk/MagicSoft/Mars/mhist/MHMcEnergy.cc

    r855 r859  
    3232#include <TPaveLabel.h>
    3333
    34 ClassImp(MHMcEnergy)
     34ClassImp(MHMcEnergy);
    3535
    3636MHMcEnergy::MHMcEnergy(const UInt_t idx, const char *name, const char *title)
  • trunk/MagicSoft/Mars/mhist/MHStarMap.cc

    r749 r859  
    4242#include "MHillas.h"
    4343
    44 ClassImp(MHStarMap)
     44ClassImp(MHStarMap);
    4545
    4646MHStarMap::MHStarMap (const char *name, const char *title)
     
    133133}
    134134
    135 void MHStarMap::Fill(MHillas *par)
     135void MHStarMap::Fill(const MHillas *par)
    136136{
    137137    const float dist  = par->GetDist();
  • trunk/MagicSoft/Mars/mhist/MHStarMap.h

    r712 r859  
    2727    ~MHStarMap();
    2828
    29     void Fill(MHillas *par);
     29    void Fill(const MHillas *par);
    3030
    3131    TH2F *GetHist()               { return fStarMap; }
Note: See TracChangeset for help on using the changeset viewer.