Changeset 19158 for trunk/Mars


Ignore:
Timestamp:
08/13/18 22:53:29 (6 years ago)
Author:
Daniela Dorner
Message:
ignore negative values
Location:
trunk/Mars/mimage
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mimage/MHillas.cc

    r9374 r19158  
    291291            continue;
    292292
     293        const Float_t nphot = pix.GetNumPhotons();   // [#phot]
     294        if (nphot<0)
     295            continue;
     296
    293297        const MGeom &gpix = geom[i];
    294 
    295         const Float_t nphot = pix.GetNumPhotons();
    296298
    297299        fSize  += nphot;                             // [counter]
     
    339341            continue;
    340342
     343        const Float_t nphot = pix.GetNumPhotons();   // [#phot]
     344        if (nphot<0)
     345            continue;
     346
    341347        const MGeom &gpix = geom[i];
    342348
    343349        const Float_t dx = gpix.GetX() - fMeanX;     // [mm]
    344350        const Float_t dy = gpix.GetY() - fMeanY;     // [mm]
    345 
    346         const Float_t nphot = pix.GetNumPhotons();   // [#phot]
    347351
    348352        corrxx += nphot * dx*dx;                     // [mm^2]
  • trunk/Mars/mimage/MHillasExt.cc

    r9860 r19158  
    191191            continue;
    192192
     193        Double_t nphot = pix.GetNumPhotons();   // [#phot]
     194        if (nphot<0)
     195            continue;
     196
    193197        const MGeom &gpix = geom[i];
    194198
     
    196200        const Double_t y = gpix.GetY();
    197201        const Double_t t = pix.GetArrivalTime();
    198 
    199         Double_t nphot = pix.GetNumPhotons();        // [1]
    200202
    201203        // --- time slope ----
  • trunk/Mars/mimage/MNewImagePar.cc

    r18276 r19158  
    159159            continue;
    160160
     161        // signal in pixel
     162        Double_t nphot = pix.GetNumPhotons();
     163        if (nphot<0)
     164            continue;
     165
    161166        // Get geometry of pixel
    162167        const MGeom &gpix = geom[i];
     
    211216        fNumUsedPixels++;
    212217        fUsedArea += gpix.GetA();
    213 
    214         // signal in pixel
    215         Double_t nphot = pix.GetNumPhotons();
    216218
    217219        //
Note: See TracChangeset for help on using the changeset viewer.