Ignore:
Timestamp:
04/23/01 15:42:03 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 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() )
Note: See TracChangeset for help on using the changeset viewer.