Ignore:
Timestamp:
10/05/01 14:39:20 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

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

    r857 r961  
    3030// Storage Container for the Hillas parameter                              //
    3131//                                                                         //
    32 // FIXME: Here everybody should find an explanation of the parameters      //
     32// FIXME: - Here everybody should find an explanation of the parameters    //
     33//        - using boooleans for fIsPixelUsed, fIsPixelCore, ... is rather  //
     34//          slow because you have to loop over all pixels in any loop.     //
     35//          There could be a huge speed improvement using Hash Tables      //
     36//          (linked lists, see THashTable and THashList, too)              //
    3337//                                                                         //
    3438/////////////////////////////////////////////////////////////////////////////
     
    160164// (The calcualtion is some kind of two dimentional statistics)
    161165//
     166//   FIXME: MHillas::Calc is rather slow at the moment because it loops
     167//          unnecessarily over all pixels in all its loops (s.MImgCleanStd)
     168//          The speed could be improved very much by using Hash-Tables
     169//          (linked lists, see THashTable and THashList, too)
     170//
    162171Bool_t MHillas::Calc(const MGeomCam &geom, const MCerPhotEvt &evt)
    163172{
  • trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc

    r857 r961  
    3131//  Please look at the three CleanSteps and Process                        //
    3232//                                                                         //
     33//   FIXME: MImgCleanStd is rather slow at the moment because it loops     //
     34//          unnecessarily over all pixels in all its loops (s.MHillas)     //
     35//          The speed could be improved very much by using Hash-Tables     //
     36//          (linked lists, see THashTable and THashList, too)              //
     37//                                                                         //
    3338//  Input Containers:                                                      //
    3439//   MGeomCam, MCerPhotEvt                                                 //
Note: See TracChangeset for help on using the changeset viewer.