Changeset 9350 for trunk/MagicSoft


Ignore:
Timestamp:
02/19/09 16:37:49 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9349 r9350  
    5050     - Use the new Resize function of MPhotonEvent to make sure
    5151       that the memory is not allocated forever.
     52
     53   * mimage/MHHillas.cc, mimage/MMHillas.Ext.cc, mimage/MHHillasSrc.cc:
     54     - converted default binning from mm to deg
    5255
    5356
  • trunk/MagicSoft/Mars/mimage/MHHillas.cc

    r9344 r9350  
    7474    fTitle = title ? title : "Source independent image parameters";
    7575
    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);
    7979    fDelta   = new TH1F("Delta",  "Angle (Main axis - x-axis)",      101, -90,  90);
    8080
     
    114114    bins.Apply(*fSize);
    115115
    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);
    117117    fCenter->SetDirectory(NULL);
    118118    fCenter->SetXTitle("x [mm]");
  • trunk/MagicSoft/Mars/mimage/MHHillasExt.cc

    r9344 r9350  
    122122    MBinning binsx, binsy;
    123123
    124     binsx.SetEdges(51, -326, 326);
     124    binsx.SetEdges(51, -1.1, 1.1);
    125125    binsx.Apply(fHM3Long);
    126126    binsx.Apply(fHM3Trans);
    127127
    128     binsx.SetEdges(51, -593, 593);
     128    binsx.SetEdges(51, -2.0, 2.0);
    129129    binsx.Apply(fHAsym);
    130130
    131     binsx.SetEdges(100,     0,  445);
     131    binsx.SetEdges(100,     0,  1.5);
    132132    binsy.SetEdges(100, -0.04, 0.04);
    133133    MH::SetBinning(&fHSlopeL, &binsx, &binsy);
  • trunk/MagicSoft/Mars/mimage/MHHillasSrc.cc

    r9344 r9350  
    7575    //
    7676    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);
    7878    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);
    8080    fDCADelta = new TH1F("DCADelta", "Angle between shower and x-axis",  80,     0, 360);
    8181
Note: See TracChangeset for help on using the changeset viewer.