Changeset 1222 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 02/21/02 14:46:59 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MHillasExt.cc
r1220 r1222 41 41 42 42 #include <fstream.h> 43 #include <math.h>44 43 45 44 #include "MGeomPix.h" … … 162 161 m3y /= GetSize(); 163 162 164 fM3Long = m3x<0 ? -pow( fabs(m3x), 1./3) : pow(fabs(m3x), 1./3); // [mm]165 fM3Trans = m3y<0 ? -pow( fabs(m3y), 1./3) : pow(fabs(m3y), 1./3); // [mm]163 fM3Long = m3x<0 ? -pow(-m3x, 1./3) : pow(m3x, 1./3); // [mm] 164 fM3Trans = m3y<0 ? -pow(-m3y, 1./3) : pow(m3y, 1./3); // [mm] 166 165 167 166 SetReadyToSave(); … … 184 183 185 184 // ------------------------------------------------------------------------- 186 / /185 /* 187 186 void MHillasExt::AsciiWrite(ofstream &fout) const 188 187 { … … 196 195 fout << fM3Trans; 197 196 } 197 */ -
trunk/MagicSoft/Mars/manalysis/MHillasExt.h
r1203 r1222 24 24 void Reset(); 25 25 26 Float_t GetConc() const { return fConc; } 27 Float_t GetConc1() const { return fConc1; } 28 Float_t GetAsym() const { return fAsym; } 29 Float_t GetM3Long() const { return fM3Long; } 30 Float_t GetM3Trans() const { return fM3Trans; } 31 26 32 Bool_t Calc(const MGeomCam &geom, const MCerPhotEvt &pix); 27 33 … … 29 35 30 36 void AsciiRead(ifstream &fin); 31 void AsciiWrite(ofstream &fout) const;37 //void AsciiWrite(ofstream &fout) const; 32 38 33 39 ClassDef(MHillasExt, 1) // Storage Container for extended Hillas Parameter
Note:
See TracChangeset
for help on using the changeset viewer.