GSI Object Oriented Online Offline (Go4) GO4-6.4.0
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
TGo4ASImage.h
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
14#ifndef TGO4ASIMAGE_H
15#define TGO4ASIMAGE_H
16
17class TH2;
18class TPad;
19class TGo4ViewPanel;
20
21#ifndef __NOGO4ASI__
22
23#include "TASImage.h"
24
32class TGo4ASImage : public TASImage {
33 public:
35 virtual ~TGo4ASImage();
36
37 void SetHistogramContent(TH2 *histo);
38
39 void SetDrawData(TH2 *histo, TGo4ViewPanel *panel, TPad *pad);
40
41 void SetSelectedRange(double rxmin, double rxmax, double rymin, double rymax);
42
43 void Zoom(UInt_t offX, UInt_t offY, UInt_t width, UInt_t height) override; //*MENU*
44
45 void UnZoom() override; //*MENU*
46
48 void ClosePaletteEditor();
49
50 // old code
51 TGo4ASImage(TH2 *) {}
52
53 TH2 *GetHistogram() const { return nullptr; }
54
56 void SetHistogramRanges(TH2 *) {}
57
59 void SetZoom(TH2 *) {}
60
61 private:
62
64
65 TPad *fxPad{nullptr};
66
67 double fxMinX{0.};
68 double fxMaxX{1.};
69 double fxMinY{0.};
70 double fxMaxY{1.};
71
72 double fdWidth{0.};
73 double fdHeight{0.};
74
75};
76
77#else
78
79// give a dummy for the Qt Slots!
80#include "TObject.h"
81
82class TGo4ASImage : public TObject {
83 public:
84 TGo4ASImage() {}
85 virtual ~TGo4ASImage() {}
86
87 void SetHistogramContent(TH2 *) {}
88
89 void SetDrawData(TH2 *, TGo4ViewPanel *, TPad *) {}
90
91 void SetSelectedRange(double, double, double, double) {}
92
93 void SetPaletteEnabled(bool) {}
94
95};
96
97#endif // ASImage disable switch
98
99#endif //TGO4ASIMAGE_H
Special ASImage for display of 2d histograms in go4 viewpanel.
Definition TGo4ASImage.h:32
void SetDrawData(TH2 *histo, TGo4ViewPanel *panel, TPad *pad)
double fxMaxY
Definition TGo4ASImage.h:70
double fdHeight
original width of image (histogram)
Definition TGo4ASImage.h:73
TPad * fxPad
Definition TGo4ASImage.h:65
void UnZoom() override
double fxMinY
Definition TGo4ASImage.h:69
double fxMaxX
Definition TGo4ASImage.h:68
void ClosePaletteEditor()
Use this to close palette editor properly.
TGo4ViewPanel * fxPanel
Definition TGo4ASImage.h:63
void SetZoom(TH2 *)
sets zoom of image according to current limits of histo
Definition TGo4ASImage.h:59
virtual ~TGo4ASImage()
void SetSelectedRange(double rxmin, double rxmax, double rymin, double rymax)
void SetHistogramContent(TH2 *histo)
TH2 * GetHistogram() const
Definition TGo4ASImage.h:53
void Zoom(UInt_t offX, UInt_t offY, UInt_t width, UInt_t height) override
TGo4ASImage(TH2 *)
Definition TGo4ASImage.h:51
double fxMinX
Definition TGo4ASImage.h:67
void SetHistogramRanges(TH2 *)
sets limits of histo according to current zoom scale of image
Definition TGo4ASImage.h:56
double fdWidth
Definition TGo4ASImage.h:72