Changeset 1018 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 10/31/01 13:47:45 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MHillas.cc
r1003 r1018 95 95 { 96 96 *fLog << "Hillas Parameter:" << endl; 97 *fLog << " - Alpha = " << fabs(fAlpha) << endl; 98 *fLog << " - Width = " << fWidth << endl; 99 *fLog << " - Length = " << fLength << endl; 100 *fLog << " - Size = " << fSize << endl; 101 *fLog << " - Dist = " << fDist << endl; 102 } 103 97 *fLog << " - Alpha = " << fabs(fAlpha) << "°" << endl; 98 *fLog << " - Width = " << fWidth << " mm" << endl; 99 *fLog << " - Length = " << fLength << " mm" << endl; 100 *fLog << " - Size = " << fSize << " #CerPhot" << endl; 101 *fLog << " - Dist = " << fDist << " mm" << endl; 102 } 103 104 /* 104 105 // -------------------------------------------------------------------------- 105 106 // … … 113 114 fEllipse->Paint(); 114 115 } 116 */ 115 117 116 118 // -------------------------------------------------------------------------- … … 122 124 // (s. Clear() ) 123 125 // 124 void MHillas::Draw(Option_t * )126 void MHillas::Draw(Option_t *opt) 125 127 { 126 128 Clear(); … … 132 134 fEllipse->SetLineWidth(2); 133 135 fEllipse->Draw(); 136 //AppendPad(opt); 134 137 135 138 /* -
trunk/MagicSoft/Mars/manalysis/MHillas.h
r1014 r1018 16 16 Float_t fAlpha; // [deg] Angle between the length axis of the ellipse and the camera center 17 17 Float_t fTheta; // [rad] Angle between the x axis and the center of the ellipse 18 Float_t fWidth; // Width of the ellipse19 Float_t fLength; // Length of the ellipse20 Float_t fSize; // Size of the ellipse21 Float_t fDist; // Distance of the ellipse COM from the camera center18 Float_t fWidth; // [mm] Width of the ellipse 19 Float_t fLength; // [mm] Length of the ellipse 20 Float_t fSize; // [#CerPhot] Size of the ellipse 21 Float_t fDist; // [mm] Distance of the ellipse COM from the camera center 22 22 23 23 TEllipse *fEllipse; //! Graphical Object to Display Ellipse … … 33 33 void Print(Option_t *opt=NULL) const; 34 34 void Draw(Option_t *opt=NULL); 35 void Paint(Option_t *opt=NULL);35 //void Paint(Option_t *opt=NULL); 36 36 37 37 void Clear(Option_t *opt=NULL); -
trunk/MagicSoft/Mars/manalysis/Makefile
r803 r1018 29 29 30 30 SRCFILES = MCT1ReadAscii.cc \ 31 MPedestalPix.cc \ 31 32 MPedestalCam.cc \ 32 MPedestalPix.cc \33 33 MMcPedestalCopy.cc \ 34 34 MImgCleanStd.cc \
Note:
See TracChangeset
for help on using the changeset viewer.