Changeset 11515 for trunk/Mars
- Timestamp:
- 07/21/11 12:40:51 (13 years ago)
- Location:
- trunk/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/Changelog
r11491 r11515 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2011/07/21 Thomas Bretz 22 23 * mgeom/MGeomCamFACT.cc: 24 - added special pixels 1438/1439 25 26 20 27 21 28 2011/07/20 Thomas Bretz -
trunk/Mars/mgeom/MGeomCamFACT.cc
r9900 r11515 44 44 // 45 45 MGeomCamFACT::MGeomCamFACT(const char *name) 46 : MGeomCam(14 38, 4.90, name, "Geometry information of the final FACT Camera")46 : MGeomCam(1440, 4.90, name, "Geometry information of the final FACT Camera") 47 47 { 48 48 CreateCam(); … … 53 53 // 54 54 MGeomCamFACT::MGeomCamFACT(Double_t dist, const char *name) 55 : MGeomCam(14 38, dist, name, "Geometry information of the final FACT Camera")55 : MGeomCam(1440, dist, name, "Geometry information of the final FACT Camera") 56 56 { 57 57 CreateCam(); … … 82 82 // -------------------------------------------------------------------------- 83 83 // 84 #include <iostream> 85 #include <iomanip> 84 86 void MGeomCamFACT::CreateCam() 85 87 { … … 118 120 pix.SetPhi(TMath::Pi()/2); 119 121 SetAt(cnt++, pix); 122 123 if (cnt!=1416) 124 continue; 125 126 MGeomPix pix1( y*diameter, -6.5*diameter, diameter); 127 MGeomPix pix2(-y*diameter, -6.5*diameter, diameter); 128 pix1.SetPhi(TMath::Pi()/2); 129 pix2.SetPhi(TMath::Pi()/2); 130 SetAt(1438, pix1); 131 SetAt(1439, pix2); 120 132 } 121 133 }
Note:
See TracChangeset
for help on using the changeset viewer.