Ignore:
Timestamp:
07/06/01 14:48:54 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 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    }
Note: See TracChangeset for help on using the changeset viewer.