Changeset 9350 for trunk/MagicSoft/Mars/mimage
- Timestamp:
- 02/19/09 16:37:49 (16 years ago)
- Location:
- trunk/MagicSoft/Mars/mimage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mimage/MHHillas.cc
r9344 r9350 74 74 fTitle = title ? title : "Source independent image parameters"; 75 75 76 fLength = new TH1F("Length", "Length of Ellipse", 100, 0, 296.7);77 fWidth = new TH1F("Width", "Width of Ellipse", 100, 0, 296.7);78 fDistC = new TH1F("DistC", "Distance from center of camera", 100, 0, 445);76 fLength = new TH1F("Length", "Length of Ellipse", 100, 0, 1.0); 77 fWidth = new TH1F("Width", "Width of Ellipse", 100, 0, 1.0); 78 fDistC = new TH1F("DistC", "Distance from center of camera", 100, 0, 1.5); 79 79 fDelta = new TH1F("Delta", "Angle (Main axis - x-axis)", 101, -90, 90); 80 80 … … 114 114 bins.Apply(*fSize); 115 115 116 fCenter = new TH2F("Center", "Center of gravity", 51, - 445, 445, 51, -445, 445);116 fCenter = new TH2F("Center", "Center of gravity", 51, -1.5, 1.5, 51, -1.5, 1.5); 117 117 fCenter->SetDirectory(NULL); 118 118 fCenter->SetXTitle("x [mm]"); -
trunk/MagicSoft/Mars/mimage/MHHillasExt.cc
r9344 r9350 122 122 MBinning binsx, binsy; 123 123 124 binsx.SetEdges(51, - 326, 326);124 binsx.SetEdges(51, -1.1, 1.1); 125 125 binsx.Apply(fHM3Long); 126 126 binsx.Apply(fHM3Trans); 127 127 128 binsx.SetEdges(51, - 593, 593);128 binsx.SetEdges(51, -2.0, 2.0); 129 129 binsx.Apply(fHAsym); 130 130 131 binsx.SetEdges(100, 0, 445);131 binsx.SetEdges(100, 0, 1.5); 132 132 binsy.SetEdges(100, -0.04, 0.04); 133 133 MH::SetBinning(&fHSlopeL, &binsx, &binsy); -
trunk/MagicSoft/Mars/mimage/MHHillasSrc.cc
r9344 r9350 75 75 // 76 76 fAlpha = new TH1F("Alpha", "Alpha of Ellipse", 90, -90, 90); 77 fDist = new TH1F("Dist", "Dist of Ellipse", 70, 0, 623);77 fDist = new TH1F("Dist", "Dist of Ellipse", 70, 0, 2.1); 78 78 fCosDA = new TH1F("CosDA", "cos(Delta,Alpha) of Ellipse", 101, -1, 1); 79 fDCA = new TH1F("DCA", "Distance of closest aproach", 101, - 500, 500);79 fDCA = new TH1F("DCA", "Distance of closest aproach", 101, -1.7, 1.7); 80 80 fDCADelta = new TH1F("DCADelta", "Angle between shower and x-axis", 80, 0, 360); 81 81
Note:
See TracChangeset
for help on using the changeset viewer.