Ignore:
Timestamp:
04/23/01 15:12:45 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.cc

    r749 r764  
    2323\* ======================================================================== */
    2424
    25 /////////////////////////////////////////////////////////////////////////////
    26 //                                                                         //
    27 //   MCerPhotCalc                                                          //
    28 //                                                                         //
    29 /////////////////////////////////////////////////////////////////////////////
     25//////////////////////////////////////////////////////////////////////////////
     26//                                                                          //
     27//   MCerPhotCalc                                                           //
     28//                                                                          //
     29//   This is a task which calculates the number of photons from the FADC    //
     30//   time slices. At the moment it integrates simply the FADC values.       //
     31//                                                                          //
     32//////////////////////////////////////////////////////////////////////////////
    3033
    3134#include "MCerPhotCalc.h"
     
    4346ClassImp(MCerPhotCalc)
    4447
    45     MRawEvtData  *fRawEvt;     // raw event data (time slices)
    46     MPedestalCam *fPedestals;  // Pedestals of all pixels in the camera
    47     MCerPhotEvt  *fCerPhotEvt; // Cerenkov Photon Event used for calculation
    48 
     48// --------------------------------------------------------------------------
     49//
     50// Default constructor.
     51//
    4952MCerPhotCalc::MCerPhotCalc(const char *name, const char *title)
    5053{
     
    5356}
    5457
     58// --------------------------------------------------------------------------
     59//
     60// The PreProcess searches for the following input containers:
     61//  - MRawEvtData
     62//  - MPedestalCam
     63//
     64// The following output containers are also searched and created if
     65// they were not found:
     66//  - MCerPhotEvt
     67//
    5568Bool_t MCerPhotCalc::PreProcess( MParList *pList )
    5669{
     
    7689}
    7790
     91// --------------------------------------------------------------------------
     92//
     93// Calculate the integral of the FADC time slaices and store them as a new
     94// pixel in the MCerPhotEvt container.
     95//
    7896Bool_t MCerPhotCalc::Process()
    7997{
Note: See TracChangeset for help on using the changeset viewer.