Ignore:
Timestamp:
04/23/01 15:42:03 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
5 edited

Legend:

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

    r749 r765  
    2424\* ======================================================================== */
    2525
    26 ////////////////////////////////////////////////////////////////////////
     26//////////////////////////////////////////////////////////////////////////////
    2727//
    2828//  MFillHFadc
     
    3232//  This histograms (one per pixel) are stored in MHFadcCam, MHFadcPix
    3333//
    34 ////////////////////////////////////////////////////////////////////////
     34//////////////////////////////////////////////////////////////////////////////
    3535
    3636#include "MFillHFadc.h"
     
    4545ClassImp(MFillHFadc)
    4646
     47// --------------------------------------------------------------------------
    4748MFillHFadc::MFillHFadc (const char *name, const char *title) : fRawEvtData(NULL)
    4849{
     
    5152}
    5253
     54// --------------------------------------------------------------------------
     55//
     56// The PrProcess function checks for the existance of all necessary
     57// parameter containers
     58//
    5359Bool_t MFillHFadc::PreProcess (MParList *pList)
    5460{
    55     //
    56     // The PrProcess function checks for the existance of all necessary
    57     // parameter containers
    58     //
    59 
    6061    //
    6162    // check if all necessary input containers are existing
     
    7879}
    7980
     81// --------------------------------------------------------------------------
     82//
     83// This process function loops over all pixels in an MRawEvtData
     84// event and fills the values into histograms
     85//
    8086Bool_t MFillHFadc::Process()
    8187{
    82     //
    83     // This process function loops over all pixels in an MRawEvtData
    84     // event and fills the values into histograms
    85     //
    86 
    8788    //  loop over the pixels and fill the values in the histograms
    8889 
     
    9192    const Int_t nhisamples = fRawEvtData->GetNumHiGainSamples() ;
    9293    const Int_t nlosamples = fRawEvtData->GetNumLoGainSamples() ;
    93 
    94     //  cout << "HighSamples " << iHighSamples ;
    9594
    9695    while ( pixel.Next() )
  • trunk/MagicSoft/Mars/mhist/MFillHHillas.cc

    r749 r765  
    4141ClassImp(MFillHHillas)
    4242
     43// --------------------------------------------------------------------------
    4344MFillHHillas::MFillHHillas (const char *name, const char *title)
    4445{
     
    4748}
    4849
     50// --------------------------------------------------------------------------
    4951Bool_t MFillHHillas::PreProcess (MParList *pList)
    5052{
     
    6365}
    6466
     67// --------------------------------------------------------------------------
    6568Bool_t MFillHHillas::Process()
    6669{
  • trunk/MagicSoft/Mars/mhist/MFillHStarMap.cc

    r749 r765  
    4242ClassImp(MFillHStarMap)
    4343
     44// --------------------------------------------------------------------------
    4445MFillHStarMap::MFillHStarMap (const char *name, const char *title)
    4546{
     
    4849}
    4950
     51// --------------------------------------------------------------------------
    5052Bool_t MFillHStarMap::PreProcess (MParList *pList)
    5153{
     
    6466}
    6567
     68// --------------------------------------------------------------------------
    6669Bool_t MFillHStarMap::Process()
    6770{
  • trunk/MagicSoft/Mars/mhist/MHFadcCam.cc

    r749 r765  
    3838ClassImp(MHFadcCam)
    3939
     40// --------------------------------------------------------------------------
     41//
     42//  default constructor
     43//  creates an a list of histograms for all pixels and both gain channels
     44//
    4045MHFadcCam::MHFadcCam (const char *name, const char *title)
    4146{
    42     //
    43     //  default constructor
    44     //  creates an a list of histograms for all pixels and both gain channels
    45     //
    46 
    4747    //
    4848    //   set the name and title of this object
     
    6363}
    6464
     65// --------------------------------------------------------------------------
    6566MHFadcCam::~MHFadcCam ()
    6667{
  • trunk/MagicSoft/Mars/mhist/MHFadcPix.cc

    r749 r765  
    3939ClassImp(MHFadcPix)
    4040
     41// --------------------------------------------------------------------------
     42//
     43// Creates the histograms for lo and hi gain of one pixel
     44//
    4145MHFadcPix::MHFadcPix(UInt_t pixid)
    4246{
    43     //
    44     // Creates the histograms for lo and hi gain of one pixel
    45     //
    4647    // FIXME! Set the right axis titles and ... and ...
    47     //
    4848    Char_t tmp1[40]="hi";
    4949    Char_t tmp2[40]="hi gain Pixel";
     
    6868}
    6969
     70// --------------------------------------------------------------------------
    7071MHFadcPix::~MHFadcPix()
    7172{
     
    7475}
    7576
     77// --------------------------------------------------------------------------
    7678void MHFadcPix::Draw(Option_t *)
    7779{
Note: See TracChangeset for help on using the changeset viewer.