Changeset 978 for trunk/MagicSoft


Ignore:
Timestamp:
10/23/01 16:00:30 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r968 r978  
    11                                                                  -*-*- END -*-*-
     2
     3 2001/10/23: Thomas Bretz
     4
     5   * macros/dohtml.C:
     6     - changed macro names
     7
     8   * macros/getCollArea.C:
     9     - renamed to collarea.C
     10     - make use of new fast MReadTree
     11
     12   * macros/getRate.C:
     13     - renamed to trigrate.C
     14
     15   * macros/getThreshold.C:
     16     - renamed to threshold.C
     17
     18   * Makefile.depend:
     19     - removed
     20
     21   * mgui/MCamDisplay.[h,cc]:
     22     - fixed wrong usage of new operator in TClonesArray
     23     - the aspect ratio of the Canvas is used now to display geometries
     24       correctly (no 'small CT1 camera anymore)
     25     - replaced include of MCerPhotPix by a forward declaration
     26     - replaced include of MHexagon by a forward declaration
     27
     28   * mgui/MGeomCam.[h,cc]:
     29     - added GetMaxRadius()-function
     30     - added CalcMaxRadius()-function
     31     - replaced include of MGeomPix by a forward declaration
     32     - replaced include of TObjArray by a forward declaration
     33
     34   * mgui/MGeomCamMagic.cc, mgui/MGeomCamCT1.cc:
     35     - call CalcMaxRadius in the constructor
     36
     37
     38
     39 2001/10/22: Thomas Bretz
     40
     41   * mhist/MH*.[h,cc]:
     42     - changed DrawClone according to root 3.01/06 to 'const'
     43
     44
    245
    346 2001/10/16: Thomas Bretz
  • trunk/MagicSoft/Mars/mgui/MCamDisplay.h

    r977 r978  
    2121{
    2222private:
    23     Bool_t         fAutoScale;   //  indicating the autoscale function
     23    Bool_t         fAutoScale;   // indicating the autoscale function
    2424
    25     UInt_t         fNumPixels;
    26     Int_t          fRange;
     25    UInt_t         fNumPixels;   // number of pixels in the present geometry
     26    Int_t          fRange;       // the range in millimeters of the present geometry
    2727
    28     TClonesArray  *fPixels;
     28    Float_t        fMinPhe;      // The minimal number of Phe
     29    Float_t        fMaxPhe;      // The maximum number of Phe
    2930
    30     Float_t        fMinPhe;      //  The minimal number of Phe
    31     Float_t        fMaxPhe;      //  The maximum number of Phe
     31    TClonesArray  *fPixels;      // array of all hexagons
     32    TClonesArray  *fLegend;      // array of all color bars
     33    TClonesArray  *fLegText;     // array of all texts
    3234
    33     TClonesArray  *fLegend;
    34     TClonesArray  *fLegText;
     35    TVirtualPad   *fDrawingPad;  // pad in which we are drawing
    3536
    36     TVirtualPad *fDrawingPad;
    3737
    3838    TBox  *GetBox(Int_t i)  { return (TBox*) fLegend->At(i); }
Note: See TracChangeset for help on using the changeset viewer.