Ignore:
Timestamp:
06/14/08 16:55:58 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mimage
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mimage/ImageLinkDef.h

    r6890 r8957  
    66
    77#pragma link C++ class MImgCleanStd+;
    8 #pragma link C++ class MCameraSmooth+;
    98
    109#pragma link C++ class MHillas+;
  • trunk/MagicSoft/Mars/mimage/MCameraSmooth.cc

    r8489 r8957  
    110110            const MGeomPix &gpix = (*fGeomCam)[i];
    111111
    112             const Int_t n = gpix.GetNumNeighbors();
     112            const Int_t nn = gpix.GetNumNeighbors();
    113113
    114114            Int_t num  = fUseCentralPixel ? 1 : 0;
     
    116116            errors[i]  = fUseCentralPixel ? pix.GetErrorPhot()  : 0;
    117117
    118             for (int j=0; j<n; j++)
     118            for (int j=0; j<nn; j++)
    119119            {
    120120                const UShort_t nid = gpix.GetNeighbor(j);
  • trunk/MagicSoft/Mars/mimage/MConcentration.cc

    r6855 r8957  
    111111
    112112   const UInt_t npix = evt.GetNumPixels();
    113    for (UInt_t i=0; i<npix; i++)
     113   for (UInt_t j=0; j<npix; j++)
    114114   {
    115        const MSignalPix &pix = evt[i];
     115       const MSignalPix &pix = evt[j];
    116116       if (!pix.IsPixelUsed())
    117117           continue;
    118118
    119         const Double_t nphot = pix.GetNumPhotons()* geom.GetPixRatio(i);
     119        const Double_t nphot = pix.GetNumPhotons()* geom.GetPixRatio(j);
    120120
    121121        // Get number of photons in the 8 most populated pixels
     
    134134                continue;
    135135
    136             for(int j=0;j<i-1;j++)
    137                 maxpix[7-j]=maxpix[6-j];                 // [#phot]
     136            for(int k=0;k<i-1;k++)
     137                maxpix[7-k]=maxpix[6-k];                 // [#phot]
    138138
    139139            maxpix[8-i]=nphot;
  • trunk/MagicSoft/Mars/mimage/Makefile

    r6890 r8957  
    2727
    2828SRCFILES = MImgCleanStd.cc \
    29            MCameraSmooth.cc \
    3029           MHillas.cc \
    3130           MHillasSrc.cc \
Note: See TracChangeset for help on using the changeset viewer.