source: trunk/MagicSoft/Mars/mhist/MHCamera.h@ 2333

Last change on this file since 2333 was 2298, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 14.5 KB
Line 
1#ifndef MARS_MHCamera
2#define MARS_MHCamera
3
4#ifndef MARS_MAGIC
5#include "MAGIC.h"
6#endif
7#ifndef ROOT_TArrayC
8#include <TArrayC.h>
9#endif
10#ifndef ROOT_TArrayI
11#include <TArrayI.h>
12#endif
13#ifndef ROOT_TClonesArray
14#include <TClonesArray.h>
15#endif
16#ifndef ROOT_TH1
17#include <TH1.h>
18#endif
19
20class TPaveStats;
21
22class MGeomCam;
23class MCamEvent;
24class MRflEvtData;
25class MCerPhotEvt;
26class MImgCleanStd;
27
28class MHCamera : public TH1D
29{
30private:
31 MGeomCam *fGeomCam; // pointer to camera geometry (y-axis)
32 TArrayC fUsed; // array containing flags
33
34 TArrayI fColors; //! Color conversion table
35 TList *fNotify; //!
36
37 //Int_t fOptStat;
38
39 //TGStatusBar *fStatusBar;
40
41 Int_t GetColor(Float_t val, Float_t min, Float_t max, Bool_t islog);
42
43 void Update(Bool_t islog, Bool_t isbox, Bool_t iscol);
44 void UpdateLegend(Float_t min, Float_t max, Bool_t islog);
45 void SetRange();
46
47 TPaveStats *GetStatisticBox();
48
49 Int_t GetPixelIndex(Int_t px, Int_t py) const;
50
51 void PaintAxisTitle();
52
53 enum {
54 kIsUsed = BIT(1)
55 };
56
57 void SetUsed(Int_t idx) { SETBIT(fUsed[idx], kIsUsed); }
58 void ResetUsed(Int_t idx) { CLRBIT(fUsed[idx], kIsUsed); }
59
60 // This is a trick to remove TH1 entries from the context menu
61 TH1 *Rebin(Int_t ngroup=2, const char*newname="") { return this; }
62 void DrawPanel() {}
63
64 Int_t Fill(Axis_t x);
65 Int_t Fill(Axis_t x, Stat_t w);
66 Int_t Fill(const char *name, Stat_t w) { return -1; }
67 void FillN(Int_t ntimes, const Axis_t *x, const Double_t *w, Int_t stride=1) {}
68 void FillN(Int_t, const Axis_t *, const Axis_t *, const Double_t *, Int_t) {}
69
70public:
71 MHCamera();
72 MHCamera(const MGeomCam &geom, const char *name="", const char *title="");
73 ~MHCamera();
74
75 Bool_t IsUsed(Int_t idx) const { return TESTBIT(const_cast<TArrayC&>(fUsed)[idx], kIsUsed); }
76
77 Int_t Fill(Axis_t x, Axis_t y, Stat_t w);
78
79 //void AddPixContent(Int_t idx) const { AddBinContent(idx+1); }
80 //void AddPixContent(Int_t idx, Stat_t w) const { AddBinContent(idx+1, w); }
81
82 // This is a trick to remove TH1 entries from the context menu
83 /*
84 void Add(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1) { TH1::Add(h1, h2, c1, c2); }
85 void Add(TF1 *h1, Double_t c1=1) { TH1::Add(h1, c1); }
86 void Add(const TH1 *h1, Double_t c1=1) { TH1::Add(h1, c1); }
87 void Divide(TF1 *f1, Double_t c1=1) { TH1::Divide(f1, c1); }
88 void Divide(const TH1 *h1) { TH1::Divide(h1); }
89 void Divide(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option="") { TH1::Divide(h1, h2, c1, c2, option); }
90 void Multiply(TF1 *h1, Double_t c1=1) { TH1::Multiply(h1, c1); }
91 void Multiply(const TH1 *h1) { TH1::Multiply(h1); }
92 void Multiply(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option="") { TH1::Multiply(h1, h2, c1, c2, option); }
93 */
94
95 void FitPanel() { TH1::FitPanel(); }
96
97 virtual Double_t GetPixContent(Int_t idx) const { return GetBinContent(idx+1); }
98 virtual void AddCamContent(const MCamEvent &evt, Int_t type=0);
99 virtual void AddCamContent(const MHCamera &evt, Int_t type=0);
100 virtual void AddCamContent(const TArrayD &arr, const TArrayC *used=NULL);
101 virtual void SetCamContent(const MCamEvent &evt, Int_t type=0) { Reset(); AddCamContent(evt, type); }
102 virtual void SetCamContent(const TArrayD &evt, const TArrayC *used=NULL) { Reset(); AddCamContent(evt, used); }
103 virtual void SetCamContent(const MHCamera &d, Int_t type=0) { Reset(); AddCamContent(d, type); fEntries=d.fEntries; }
104 virtual void CntCamContent(const MCamEvent &evt, Double_t threshold, Int_t type=0);
105 virtual void CntCamContent(const TArrayD &evt, Double_t threshold, Bool_t ispos=kTRUE);
106
107 Double_t GetMinimum(Bool_t all) const;
108 Double_t GetMaximum(Bool_t all) const;
109
110 Double_t GetMinimum() const { return GetMinimum(0/*kTRUE*/); }
111 Double_t GetMaximum() const { return GetMaximum(0/*kTRUE*/); }
112
113 void FillLevels(const MCerPhotEvt &event, Float_t lvl1, Float_t lvl2);
114 void FillLevels(const MCerPhotEvt &event, const MImgCleanStd &clean);
115
116 void FillRandom(const char *fname, Int_t ntimes=5000) { TH1::FillRandom(fname, ntimes); }
117 void FillRandom(TH1 *h, Int_t ntimes=5000) { TH1::FillRandom(h, ntimes); }
118 void FillRandom();
119
120 void DrawPixelIndices();
121 void DrawSectorIndices();
122
123 void PrintInfo() const { Print(""); } // *MENU*
124 void Print(Option_t *) const;
125 void Paint(Option_t *option="");
126 void Reset(Option_t * = "");
127 void Draw(Option_t *option="");
128 void SavePrimitive(ofstream &out, Option_t *);
129 Int_t DistancetoPrimitive(Int_t px, Int_t py);
130 char *GetObjectInfo(Int_t px, Int_t py) const;
131 void ExecuteEvent(Int_t event, Int_t px, Int_t py);
132
133 void SetPalette(Int_t ncolors, Int_t *colors);
134
135 void SetPrettyPalette(); // *MENU*
136 void SetDeepBlueSeaPalette(); // *MENU*
137 void SetInvDeepBlueSeaPalette(); // *MENU*
138
139 void SetAutoScale(); // *MENU*
140 //void SetOptStat(Int_t os=-1); // *MENU*
141
142 void SetPix(const Int_t pixnum, const Int_t color, Float_t min, Float_t max); // New function added by M.Lopez in 31-01-03
143
144 void AddNotify(const MCamEvent &event) { fNotify->Add((TObject*)(&event)); }
145
146 Stat_t GetMean(Int_t axis=-1) const;
147 Stat_t GetRMS(Int_t axis=-1) const;
148
149 UInt_t GetNumPixels() const;
150
151 //void SetStatusBar(TGStatusBar *bar) { fStatusBar = bar; }
152
153 const MGeomCam &GetGeomCam() const { return *fGeomCam; }
154
155 ClassDef(MHCamera, 1) // Displays the magic camera
156};
157
158inline void MHCamera::SetAutoScale() { fMinimum = fMaximum = -1111; }
159//inline void MHCamera::SetOptStat(Int_t os) { fOptStat = os; }
160
161#endif
162
163/* ------------ OK ---------------
164 virtual void Browse(TBrowser *b);
165 virtual void FillRandom(const char *fname, Int_t ntimes=5000);
166 virtual void FillRandom(TH1 *h, Int_t ntimes=5000);
167
168 virtual Int_t GetQuantiles(Int_t nprobSum, Double_t *q, const Double_t *probSum=0);
169 virtual Axis_t GetRandom();
170 virtual void GetStats(Stat_t *stats) const;
171 virtual Stat_t GetSumOfWeights() const;
172 virtual Int_t GetSumw2N() const {return fSumw2.fN;}
173 virtual Stat_t GetRMS(Int_t axis=1) const;
174
175 virtual Int_t GetNbinsX() const {return fXaxis.GetNbins();}
176 virtual Int_t GetNbinsY() const {return fYaxis.GetNbins();}
177 virtual Int_t GetNbinsZ() const {return fZaxis.GetNbins();}
178
179 // ------------- to check -------------------
180
181 virtual Double_t ComputeIntegral();
182 virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
183 virtual void Draw(Option_t *option="");
184 virtual TH1 *DrawCopy(Option_t *option="") const;
185 virtual TH1 *DrawNormalized(Option_t *option="", Double_t norm=1) const;
186 virtual Int_t BufferEmpty(Bool_t deleteBuffer=kFALSE);
187 virtual void Eval(TF1 *f1, Option_t *option="");
188 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
189 virtual void FillN(Int_t ntimes, const Axis_t *x, const Double_t *w, Int_t stride=1);
190 virtual void FillN(Int_t, const Axis_t *, const Axis_t *, const Double_t *, Int_t) {;}
191 virtual Int_t FindBin(Axis_t x, Axis_t y=0, Axis_t z=0);
192 virtual TObject *FindObject(const char *name) const;
193 virtual TObject *FindObject(const TObject *obj) const;
194 virtual Int_t Fit(const char *formula ,Option_t *option="" ,Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0); // *MENU*
195 virtual Int_t Fit(TF1 *f1 ,Option_t *option="" ,Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0);
196 virtual void FitPanel(); // *MENU*
197 TH1 *GetAsymmetry(TH1* h2, Double_t c2=1, Double_t dc2=0);
198 Int_t GetBufferLength() const {return (Int_t)fBuffer[0];}
199 Int_t GetBufferSize () const {return fBufferSize;}
200 const Double_t *GetBuffer() const {return fBuffer;}
201 static Int_t GetDefaultBufferSize();
202 virtual Double_t *GetIntegral() {return fIntegral;}
203
204 TList *GetListOfFunctions() const { return fFunctions; }
205
206 virtual Int_t GetNdivisions(Option_t *axis="X") const;
207 virtual Color_t GetAxisColor(Option_t *axis="X") const;
208 virtual Color_t GetLabelColor(Option_t *axis="X") const;
209 virtual Style_t GetLabelFont(Option_t *axis="X") const;
210 virtual Float_t GetLabelOffset(Option_t *axis="X") const;
211 virtual Float_t GetLabelSize(Option_t *axis="X") const;
212 virtual Float_t GetTitleOffset(Option_t *axis="X") const;
213 virtual Float_t GetTitleSize(Option_t *axis="X") const;
214 virtual Float_t GetTickLength(Option_t *axis="X") const;
215 virtual Float_t GetBarOffset() const {return Float_t(0.001*Float_t(fBarOffset));}
216 virtual Float_t GetBarWidth() const {return Float_t(0.001*Float_t(fBarWidth));}
217 virtual Int_t GetContour(Double_t *levels=0);
218 virtual Double_t GetContourLevel(Int_t level) const;
219 virtual Double_t GetContourLevelPad(Int_t level) const;
220
221 virtual void GetCenter(Axis_t *center) const {fXaxis.GetCenter(center);}
222 TDirectory *GetDirectory() const {return fDirectory;}
223 virtual Stat_t GetEntries() const;
224 virtual TF1 *GetFunction(const char *name) const;
225 virtual Int_t GetDimension() const { return fDimension; }
226 virtual void GetLowEdge(Axis_t *edge) const {fXaxis.GetLowEdge(edge);}
227 virtual Double_t GetMaximum() const;
228 virtual Int_t GetMaximumBin() const;
229 virtual Int_t GetMaximumBin(Int_t &locmax, Int_t &locmay, Int_t &locmaz) const;
230 virtual Double_t GetMaximumStored() const {return fMaximum;}
231 virtual Double_t GetMinimum() const;
232 virtual Int_t GetMinimumBin() const;
233 virtual Int_t GetMinimumBin(Int_t &locmix, Int_t &locmiy, Int_t &locmiz) const;
234 virtual Double_t GetMinimumStored() const {return fMinimum;}
235 virtual Stat_t GetMean(Int_t axis=1) const;
236 virtual Double_t GetNormFactor() const {return fNormFactor;}
237 virtual char *GetObjectInfo(Int_t px, Int_t py) const;
238 Option_t *GetOption() const {return fOption.Data();}
239
240 TVirtualHistPainter *GetPainter();
241
242 TAxis *GetXaxis() const;
243 TAxis *GetYaxis() const;
244 TAxis *GetZaxis() const;
245 virtual Stat_t Integral(Option_t *option="") const;
246 virtual Stat_t Integral(Int_t binx1, Int_t binx2, Option_t *option="") const;
247 virtual Stat_t Integral(Int_t, Int_t, Int_t, Int_t, Option_t * ="") const {return 0;}
248 virtual Stat_t Integral(Int_t, Int_t, Int_t, Int_t, Int_t, Int_t, Option_t * ="" ) const {return 0;}
249 virtual Double_t KolmogorovTest(TH1 *h2, Option_t *option="") const;
250 virtual void LabelsDeflate(Option_t *axis="X");
251 virtual void LabelsInflate(Option_t *axis="X");
252 virtual void LabelsOption(Option_t *option="h", Option_t *axis="X");
253 virtual Int_t Merge(TCollection *list);
254 virtual void Multiply(TF1 *h1, Double_t c1=1);
255 virtual void Multiply(const TH1 *h1);
256 virtual void Multiply(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option=""); // *MENU*
257 virtual void Paint(Option_t *option="");
258 virtual void Print(Option_t *option="") const;
259 virtual void PutStats(Stat_t *stats);
260 virtual TH1 *Rebin(Int_t ngroup=2, const char*newname=""); // *MENU*
261 virtual void RebinAxis(Axis_t x, Option_t *axis="X");
262 virtual void Rebuild(Option_t *option="");
263 virtual void RecursiveRemove(TObject *obj);
264 virtual void Reset(Option_t *option="");
265 virtual void SavePrimitive(ofstream &out, Option_t *option);
266 virtual void Scale(Double_t c1=1);
267 virtual void SetAxisColor(Color_t color=1, Option_t *axis="X");
268 virtual void SetAxisRange(Axis_t xmin, Axis_t xmax, Option_t *axis="X");
269 virtual void SetBarOffset(Float_t offset=0.25) {fBarOffset = Short_t(1000*offset);}
270 virtual void SetBarWidth(Float_t width=0.5) {fBarWidth = Short_t(1000*width);}
271 virtual void SetBinContent(Int_t bin, Stat_t content);
272 virtual void SetBinContent(Int_t binx, Int_t biny, Stat_t content);
273 virtual void SetBinContent(Int_t binx, Int_t biny, Int_t binz, Stat_t content);
274 virtual void SetBinError(Int_t bin, Stat_t error);
275 virtual void SetBinError(Int_t binx, Int_t biny, Stat_t error);
276 virtual void SetBinError(Int_t binx, Int_t biny, Int_t binz, Stat_t error);
277 virtual void SetBins(Int_t nx, Axis_t xmin, Axis_t xmax);
278 virtual void SetBins(Int_t nx, Axis_t xmin, Axis_t xmax, Int_t ny, Axis_t ymin, Axis_t ymax);
279 virtual void SetBins(Int_t nx, Axis_t xmin, Axis_t xmax, Int_t ny, Axis_t ymin, Axis_t ymax,
280 Int_t nz, Axis_t zmin, Axis_t zmax);
281 virtual void SetBinsLength(Int_t = -1) { } //refefined in derived classes
282 virtual void SetBuffer(Int_t buffersize, Option_t *option="");
283 virtual void SetCellContent(Int_t binx, Int_t biny, Stat_t content);
284 virtual void SetCellError(Int_t binx, Int_t biny, Stat_t content);
285 virtual void SetContent(const Stat_t *content);
286 virtual void SetContour(Int_t nlevels, const Double_t *levels=0);
287 virtual void SetContourLevel(Int_t level, Double_t value);
288 static void SetDefaultBufferSize(Int_t buffersize=1000);
289 virtual void SetDirectory(TDirectory *dir);
290 virtual void SetEntries(Stat_t n) {fEntries = n;};
291 virtual void SetError(const Stat_t *error);
292 virtual void SetLabelColor(Color_t color=1, Option_t *axis="X");
293 virtual void SetLabelFont(Style_t font=62, Option_t *axis="X");
294 virtual void SetLabelOffset(Float_t offset=0.005, Option_t *axis="X");
295 virtual void SetLabelSize(Float_t size=0.02, Option_t *axis="X");
296
297 virtual void SetMaximum(Double_t maximum=-1111); // *MENU*
298 virtual void SetMinimum(Double_t minimum=-1111); // *MENU*
299 virtual void SetName(const char *name); // *MENU*
300 virtual void SetNameTitle(const char *name, const char *title);
301 virtual void SetNdivisions(Int_t n=510, Option_t *axis="X");
302 virtual void SetNormFactor(Double_t factor=1) {fNormFactor = factor;}
303 virtual void SetStats(Bool_t stats=kTRUE);
304 virtual void SetOption(Option_t *option=" ") {fOption = option;}
305 virtual void SetTickLength(Float_t length=0.02, Option_t *axis="X");
306 virtual void SetTitleOffset(Float_t offset=1, Option_t *axis="X");
307 virtual void SetTitleSize(Float_t size=0.02, Option_t *axis="X");
308 virtual void SetTitle(const char *title);
309 virtual void SetXTitle(const char *title) {fXaxis.SetTitle(title);}
310 virtual void SetYTitle(const char *title) {fYaxis.SetTitle(title);}
311 virtual void SetZTitle(const char *title) {fZaxis.SetTitle(title);}
312 virtual void Smooth(Int_t ntimes=1); // *MENU*
313 static void SmoothArray(Int_t NN, Double_t *XX, Int_t ntimes=1);
314 static Double_t SmoothMedian(Int_t n, Double_t *a);
315 virtual void Sumw2();
316 void UseCurrentStyle();
317
318 ClassDef(TH1,4) //1-Dim histogram base class
319};
320
321*/
Note: See TracBrowser for help on using the repository browser.