Changeset 1467 for trunk


Ignore:
Timestamp:
08/01/02 10:33:24 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

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

    r1466 r1467  
    120120}
    121121
     122// --------------------------------------------------------------------------
     123//
     124//  Replaces each pixel by the average of its surrounding pixels.
     125//  If fUseCentralPixel is set the central pixel is also included.
     126//
    122127void MBlindPixelCalc::Interpolate() const
    123128{
     
    171176}
    172177
     178// --------------------------------------------------------------------------
     179//
     180//  Removes all blind pixels from the analysis by setting their state
     181//  to unused.
     182//
    173183void MBlindPixelCalc::Unmap() const
    174184{
     
    191201// --------------------------------------------------------------------------
    192202//
    193 // Remove the pixels.
     203// Treat the blind pixels
    194204//
    195205Bool_t MBlindPixelCalc::Process()
  • trunk/MagicSoft/Mars/manalysis/MCameraSmooth.cc

    r1466 r1467  
    2727//  MCameraSmooth                                                          //
    2828//                                                                         //
     29//  This task fills each pixel in the camera with the average of the       //
     30//  number of cerenkov photons from its surrounding pixels. This can       //
     31//  be done using the central pixel or ignoring the central pixel.         //
     32//                                                                         //
    2933/////////////////////////////////////////////////////////////////////////////
    3034#include "MCameraSmooth.h"
     
    4751// --------------------------------------------------------------------------
    4852//
    49 // Default constructor.
     53// Default constructor. You can specify the numer of loops how often a
     54// smoothing should be done. The default is 1.
    5055//
    5156MCameraSmooth::MCameraSmooth(Byte_t n, const char *name, const char *title)
     
    5358{
    5459    fName  = name  ? name  : "MCameraSmooth";
    55     fTitle = title ? title : "Task which removes a list of pixel from analysis";
     60    fTitle = title ? title : "Task to smooth the camera " + n + "-times";
    5661}
    5762
    5863// --------------------------------------------------------------------------
    5964//
    60 //  - Try to find or create MBlindPixels in parameter list.
    6165//  - get the MCerPhotEvt from the parlist (abort if missing)
    62 //  - if no pixels are given by the user try to determin the starfield
    63 //    from the monte carlo run header.
     66//  - get MGeomCam from the parameter list
    6467//
    6568Bool_t MCameraSmooth::PreProcess (MParList *pList)
     
    8487// --------------------------------------------------------------------------
    8588//
    86 // Remove the pixels.
     89// Do the smoothing
    8790//
    8891Bool_t MCameraSmooth::Process()
Note: See TracChangeset for help on using the changeset viewer.