Changeset 6869 for trunk/MagicSoft/Mars/mimage/MHillasExt.cc
- Timestamp:
- 03/21/05 10:39:58 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mimage/MHillasExt.cc
r6855 r6869 105 105 // ------------------------------------------------------------------------- 106 106 // 107 // Print contents of MHillasExt to *fLog.108 //109 void MHillasExt::Print(Option_t *) const110 {111 *fLog << all;112 *fLog << "Extended Image Parameters (" << GetName() << ")" << endl;113 *fLog << " - Asymmetry = " << fAsym << endl;114 *fLog << " - 3.Moment Long [mm] = " << fM3Long << endl;115 *fLog << " - 3.Moment Trans [mm] = " << fM3Trans << endl;116 *fLog << " - Max.Dist [mm] = " << fMaxDist << endl;117 }118 119 // -------------------------------------------------------------------------120 //121 // Print contents of MHillasExt to *fLog, depending on the geometry in122 // units of deg.123 //124 void MHillasExt::Print(const MGeomCam &geom) const125 {126 *fLog << all;127 *fLog << "Extended Image Parameters (" << GetName() << ")" << endl;128 *fLog << " - Asymmetry = " << fAsym *geom.GetConvMm2Deg() << endl;129 *fLog << " - 3.Moment Long [deg] = " << fM3Long *geom.GetConvMm2Deg() << endl;130 *fLog << " - 3.Moment Trans [deg] = " << fM3Trans*geom.GetConvMm2Deg() << endl;131 *fLog << " - Max.Dist [deg] = " << fMaxDist*geom.GetConvMm2Deg() << endl;132 }133 134 // -------------------------------------------------------------------------135 //136 107 // calculation of additional parameters based on the camera geometry 137 108 // and the cerenkov photon event … … 238 209 fMaxDist = arr.At(3); 239 210 } 211 212 // ------------------------------------------------------------------------- 213 // 214 // Print contents of MHillasExt to *fLog. 215 // 216 void MHillasExt::Print(Option_t *) const 217 { 218 *fLog << all; 219 *fLog << GetDescriptor() << endl; 220 *fLog << " - Asymmetry = " << fAsym << endl; 221 *fLog << " - 3.Moment Long [mm] = " << fM3Long << endl; 222 *fLog << " - 3.Moment Trans [mm] = " << fM3Trans << endl; 223 *fLog << " - Max.Dist [mm] = " << fMaxDist << endl; 224 } 225 226 // ------------------------------------------------------------------------- 227 // 228 // Print contents of MHillasExt to *fLog, depending on the geometry in 229 // units of deg. 230 // 231 void MHillasExt::Print(const MGeomCam &geom) const 232 { 233 *fLog << all; 234 *fLog << GetDescriptor() << endl; 235 *fLog << " - Asymmetry = " << fAsym *geom.GetConvMm2Deg() << endl; 236 *fLog << " - 3.Moment Long [deg] = " << fM3Long *geom.GetConvMm2Deg() << endl; 237 *fLog << " - 3.Moment Trans [deg] = " << fM3Trans*geom.GetConvMm2Deg() << endl; 238 *fLog << " - Max.Dist [deg] = " << fMaxDist*geom.GetConvMm2Deg() << endl; 239 }
Note:
See TracChangeset
for help on using the changeset viewer.