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/manalysis/MHillasCalc.cc

    r749 r765  
    2626/////////////////////////////////////////////////////////////////////////////
    2727//                                                                         //
    28 //   MHillas Calc                                                          //
     28//  MHillasCalc                                                            //
     29//                                                                         //
     30//  This is a task to calculate the Hillas parameters from each event      //
    2931//                                                                         //
    3032/////////////////////////////////////////////////////////////////////////////
     
    4244ClassImp(MHillasCalc)
    4345
     46// --------------------------------------------------------------------------
     47//
     48// Default constructor.
     49//
    4450MHillasCalc::MHillasCalc(const char *name, const char *title)
    4551{
     
    4854}
    4955
     56// --------------------------------------------------------------------------
     57//
     58// Check for a MCerPhotEvt object from which the Hillas are calculated.
     59// Try to find the Geometry conatiner. And try to find the output
     60// (Hillas) container or create one.
     61//
    5062Bool_t MHillasCalc::PreProcess( MParList *pList )
    5163{
     
    7183}
    7284
     85// --------------------------------------------------------------------------
     86//
     87// If you want do complex descisions inside the calculations
     88// we must move the calculation code inside this function
     89//
     90// If the calculation wasn't sucessfull skip this event
     91//
    7392Bool_t MHillasCalc::Process()
    7493{
    75     //
    76     // If you want do complex descisions inside the calculations
    77     // we must move the calculation code inside this function
    78     //
    79     // If the calculation wasn't sucessfull skip this event
    80     //
    8194    return fHillas->Calc(*fGeomCam, *fCerPhotEvt) ? kTRUE : kCONTINUE;
    8295}
Note: See TracChangeset for help on using the changeset viewer.