Changeset 9380 for trunk/MagicSoft
- Timestamp:
- 03/03/09 13:32:58 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9379 r9380 49 49 * mhist/Makefile: 50 50 - removed accidental MHQuality 51 52 * mhist/MHCamera.cc: 53 - fixed a warning when calling DistancetoPrimitive 54 55 * mgeom/MGeomCamSquare.cc: 56 - accidentaly used Double_t instead of Short_t when calling 57 SetNeighbors 51 58 52 59 -
trunk/MagicSoft/Mars/mgeom/MGeomCamSquare.cc
r9369 r9380 94 94 SetAt(idx, MGeomRectangle((0.5*nx-x)*diameter, (0.5*ny-y)*diameter, diameter)); 95 95 96 const Double_t n0 = x==nx-1 ? -1. : idx+ny;97 const Double_t n1 = x==0 ? -1. : idx-ny;98 const Double_t n2 = y==ny-1 ? -1. : idx+1;99 const Double_t n3 = y==0 ? -1. : idx-1;96 const Short_t n0 = x==nx-1 ? -1. : idx+ny; 97 const Short_t n1 = x==0 ? -1. : idx-ny; 98 const Short_t n2 = y==ny-1 ? -1. : idx+1; 99 const Short_t n3 = y==0 ? -1. : idx-1; 100 100 101 Double_t n[4] = { n0, n1, n2, n3 };101 Short_t n[4] = { n0, n1, n2, n3 }; 102 102 103 103 // Sort -1's to the end -
trunk/MagicSoft/Mars/mhist/MHCamera.cc
r9374 r9380 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MHCamera.cc,v 1.12 0 2009-03-02 14:32:50 tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MHCamera.cc,v 1.121 2009-03-03 13:32:00 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 2028 2028 2029 2029 for (Int_t i=0; i<fNcells-2; i++) 2030 if ((*fGeomCam)[i].DistancetoPrimitive( px*conv, py*conv)<=0)2030 if ((*fGeomCam)[i].DistancetoPrimitive(TMath::Nint(px*conv), TMath::Nint(py*conv))<=0) 2031 2031 return i; 2032 2032
Note:
See TracChangeset
for help on using the changeset viewer.