Changeset 19158 for trunk/Mars
- Timestamp:
- 08/13/18 22:53:29 (6 years ago)
- Location:
- trunk/Mars/mimage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mimage/MHillas.cc
r9374 r19158 291 291 continue; 292 292 293 const Float_t nphot = pix.GetNumPhotons(); // [#phot] 294 if (nphot<0) 295 continue; 296 293 297 const MGeom &gpix = geom[i]; 294 295 const Float_t nphot = pix.GetNumPhotons();296 298 297 299 fSize += nphot; // [counter] … … 339 341 continue; 340 342 343 const Float_t nphot = pix.GetNumPhotons(); // [#phot] 344 if (nphot<0) 345 continue; 346 341 347 const MGeom &gpix = geom[i]; 342 348 343 349 const Float_t dx = gpix.GetX() - fMeanX; // [mm] 344 350 const Float_t dy = gpix.GetY() - fMeanY; // [mm] 345 346 const Float_t nphot = pix.GetNumPhotons(); // [#phot]347 351 348 352 corrxx += nphot * dx*dx; // [mm^2] -
trunk/Mars/mimage/MHillasExt.cc
r9860 r19158 191 191 continue; 192 192 193 Double_t nphot = pix.GetNumPhotons(); // [#phot] 194 if (nphot<0) 195 continue; 196 193 197 const MGeom &gpix = geom[i]; 194 198 … … 196 200 const Double_t y = gpix.GetY(); 197 201 const Double_t t = pix.GetArrivalTime(); 198 199 Double_t nphot = pix.GetNumPhotons(); // [1]200 202 201 203 // --- time slope ---- -
trunk/Mars/mimage/MNewImagePar.cc
r18276 r19158 159 159 continue; 160 160 161 // signal in pixel 162 Double_t nphot = pix.GetNumPhotons(); 163 if (nphot<0) 164 continue; 165 161 166 // Get geometry of pixel 162 167 const MGeom &gpix = geom[i]; … … 211 216 fNumUsedPixels++; 212 217 fUsedArea += gpix.GetA(); 213 214 // signal in pixel215 Double_t nphot = pix.GetNumPhotons();216 218 217 219 //
Note:
See TracChangeset
for help on using the changeset viewer.