Changeset 4826 for trunk/MagicSoft/Mars/mimage
- Timestamp:
- 09/01/04 18:06:06 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mimage
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mimage/MHHillasSrc.cc
r4817 r4826 73 73 fDist = new TH1F("Dist", "Dist of Ellipse", 100, 0, 445); 74 74 fCosDA = new TH1F("CosDA", "cos(Delta,Alpha) of Ellipse", 101, -1, 1); 75 fDCA = new TH1F("DCA", "Distance of closest aproach", 101, - 1, 1);76 fDCADelta = new TH1F("DCADelta","Angle between shower and x-axis", 101, 0, 360);75 fDCA = new TH1F("DCA", "Distance of closest aproach", 101, -500, 500); 76 fDCADelta = new TH1F("DCADelta", "Angle between shower and x-axis", 101, 0, 360); 77 77 78 78 fAlpha->SetDirectory(NULL); … … 132 132 ApplyBinning(*plist, "Dist", fDist); 133 133 ApplyBinning(*plist, "DCA", fDCA); 134 ApplyBinning(*plist, "DCADelta", 134 ApplyBinning(*plist, "DCADelta", fDCADelta); 135 135 136 136 return kTRUE; … … 203 203 204 204 fDist->SetXTitle(mmscale ? "Dist [mm]" : "Dist [\\circ]"); 205 fDCA ->SetXTitle(mmscale ? "DCA [mm]": "DCA [\\circ]");205 fDCA ->SetXTitle(mmscale ? "DCA [mm]" : "DCA [\\circ]"); 206 206 207 207 fUseMmScale = mmscale; -
trunk/MagicSoft/Mars/mimage/MHillas.cc
r4710 r4826 60 60 #include "MHillas.h" 61 61 62 #include <fstream>63 64 62 #include <TArrayF.h> 65 63 #include <TEllipse.h> -
trunk/MagicSoft/Mars/mimage/MHillasExt.cc
r4710 r4826 63 63 #include "MHillasExt.h" 64 64 65 #include <fstream>66 65 #include <TArrayF.h> 67 66 -
trunk/MagicSoft/Mars/mimage/MHillasSrc.cc
r4817 r4826 69 69 #include "MHillasSrc.h" 70 70 71 #include <fstream>72 71 #include <TArrayF.h> 73 72 … … 99 98 100 99 fDCA = -1; 101 fDCADelta 100 fDCADelta = 0; 102 101 } 103 102 -
trunk/MagicSoft/Mars/mimage/MImagePar.cc
r4710 r4826 36 36 ///////////////////////////////////////////////////////////////////////////// 37 37 #include "MImagePar.h" 38 39 #include <fstream>40 38 41 39 #include "MLog.h" -
trunk/MagicSoft/Mars/mimage/MImgCleanStd.cc
r4717 r4826 605 605 606 606 #ifdef DEBUG 607 607 *fLog << all << "Calc Islands" << endl; 608 608 #endif 609 609 // Takes roughly 10% of the time -
trunk/MagicSoft/Mars/mimage/MNewImagePar.cc
r4710 r4826 69 69 #include "MNewImagePar.h" 70 70 71 #include <fstream>72 73 71 #include "MLog.h" 74 72 #include "MLogManip.h"
Note:
See TracChangeset
for help on using the changeset viewer.