Ignore:
Timestamp:
10/15/02 17:02:46 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mgui/MCamDisplay.h

    r1426 r1540  
    1111class TBox;
    1212class TText;
     13class TArrow;
    1314class TVirtualPad;
    1415
     
    1718class MCerPhotEvt;
    1819class MCerPhotPix;
     20class MImgCleanStd;
     21class MPedestalPix;
     22class MPedestalCam;
    1923
    2024class MCamDisplay : public TObject
     
    2832    Float_t        fRange;       // the range in millimeters of the present geometry
    2933
    30     Float_t        fMinPhe;      // The minimal number of Phe
    31     Float_t        fMaxPhe;      // The maximum number of Phe
     34    Int_t          fColors[50];
    3235
    33     Int_t          fColors[50];
     36    TArrow        *fArrowX;      // Coordinate System
     37    TArrow        *fArrowY;      // Coordinate System
     38
     39    TText         *fLegRadius;   // Coordinate System
     40    TText         *fLegDegree;   // Coordinate System
    3441
    3542    TClonesArray  *fPixels;      // array of all hexagons
     
    4754    MHexagon &operator[](int i) { return *((MHexagon*)fPixels->At(i)); }
    4855
    49     void  SetPixColor(const MCerPhotPix &pix, const Int_t i);
    50     Int_t GetColor(Float_t wert);
     56    void  SetPixColor(const MCerPhotPix &pix, const Int_t i, Float_t min, Float_t max);
     57    void  SetPixColorRatio(const MCerPhotPix &pix, Float_t min, Float_t max);
     58    void  SetPixColorLevel(const MCerPhotPix &pix, Float_t lvl1, Float_t lvl2);
     59    void  SetPixColorError(const MCerPhotPix &pix, const Int_t i, Float_t min, Float_t max);
     60    void  SetPixColorPedestal(const MPedestalPix &pix, Int_t i, Float_t min, Float_t max);
     61    Int_t GetColor(Float_t val, Float_t min, Float_t max);
    5162
    52     void UpdateLegend();
     63    void UpdateLegend(Float_t min, Float_t max);
    5364    void Paint(Option_t *option="");
    5465
     
    5970    void SetAutoScale(Bool_t input=kTRUE) { fAutoScale = input; }
    6071    void DrawPhotNum(const MCerPhotEvt *event);
     72    void DrawRatio(const MCerPhotEvt *event);
     73    void DrawLevels(const MCerPhotEvt *event, Float_t lvl1, Float_t lvl2);
     74    void DrawErrorPhot(const MCerPhotEvt *event);
     75    void DrawLevels(const MCerPhotEvt *event, const MImgCleanStd &clean);
     76    void DrawPedestals(const MPedestalCam *event);
    6177
    6278    void DrawPixelNumbers();
Note: See TracChangeset for help on using the changeset viewer.