| 1 | /* ======================================================================== *\
|
|---|
| 2 | ! $Name: not supported by cvs2svn $:$Id: MHCamera.h,v 1.63 2007-02-01 14:42:02 tbretz Exp $
|
|---|
| 3 | \* ======================================================================== */
|
|---|
| 4 | #ifndef MARS_MHCamera
|
|---|
| 5 | #define MARS_MHCamera
|
|---|
| 6 |
|
|---|
| 7 | #ifndef MARS_MAGIC
|
|---|
| 8 | #include "MAGIC.h"
|
|---|
| 9 | #endif
|
|---|
| 10 | #ifndef ROOT_TArrayC
|
|---|
| 11 | #include <TArrayC.h>
|
|---|
| 12 | #endif
|
|---|
| 13 | #ifndef ROOT_TArrayI
|
|---|
| 14 | #include <TArrayI.h>
|
|---|
| 15 | #endif
|
|---|
| 16 | #ifndef ROOT_MArrayD
|
|---|
| 17 | #include <MArrayD.h>
|
|---|
| 18 | #endif
|
|---|
| 19 | #ifndef ROOT_TClonesArray
|
|---|
| 20 | #include <TClonesArray.h>
|
|---|
| 21 | #endif
|
|---|
| 22 | #ifndef ROOT_TH1
|
|---|
| 23 | #include <TH1.h>
|
|---|
| 24 | #endif
|
|---|
| 25 | #ifndef ROOT_TCanvas
|
|---|
| 26 | #include <TCanvas.h>
|
|---|
| 27 | #endif
|
|---|
| 28 |
|
|---|
| 29 | class TPaveStats;
|
|---|
| 30 | class TProfile;
|
|---|
| 31 |
|
|---|
| 32 | class MGeomCam;
|
|---|
| 33 | class MCamEvent;
|
|---|
| 34 | class MRflEvtData;
|
|---|
| 35 | class MCerPhotEvt;
|
|---|
| 36 | class MImgCleanStd;
|
|---|
| 37 |
|
|---|
| 38 | class MHCamera : public TH1D
|
|---|
| 39 | {
|
|---|
| 40 | public:
|
|---|
| 41 | enum {
|
|---|
| 42 | kProfile = BIT(18), // FIXME: When changing change max/min!
|
|---|
| 43 | kFreezed = BIT(19),
|
|---|
| 44 | kNoLegend = BIT(20),
|
|---|
| 45 | kNoScale = BIT(21),
|
|---|
| 46 | kNoUnused = BIT(22),
|
|---|
| 47 | kErrorMean = BIT(23)/*,
|
|---|
| 48 | kSqrtVariance = BIT(21),
|
|---|
| 49 | kSinglePixelProfile = BIT(22)*/
|
|---|
| 50 | };
|
|---|
| 51 | protected:
|
|---|
| 52 | MGeomCam *fGeomCam; // pointer to camera geometry (y-axis)
|
|---|
| 53 | TArrayC fUsed; // array containing flags
|
|---|
| 54 | TArrayI fBinEntries; // number of entries per bin
|
|---|
| 55 |
|
|---|
| 56 | TList *fNotify; //!
|
|---|
| 57 |
|
|---|
| 58 | //#if ROOT_VERSION_CODE < ROOT_VERSION(4,00,03)
|
|---|
| 59 | Bool_t fFreezed; //! Just a dummy!!!! ([Set,Is]Freezed)
|
|---|
| 60 | //#endif
|
|---|
| 61 |
|
|---|
| 62 | Float_t fAbberation;
|
|---|
| 63 |
|
|---|
| 64 | void Init();
|
|---|
| 65 | /*
|
|---|
| 66 | Stat_t Profile(Stat_t val) const
|
|---|
| 67 | {
|
|---|
| 68 | if (!TestBit(kProfile))
|
|---|
| 69 | return val;
|
|---|
| 70 |
|
|---|
| 71 | const Stat_t n = TH1D::GetEntries();
|
|---|
| 72 | return n>0 ? val/n : val;
|
|---|
| 73 | }
|
|---|
| 74 | */
|
|---|
| 75 | Int_t GetColor(Float_t val, Float_t min, Float_t max, Bool_t islog);
|
|---|
| 76 |
|
|---|
| 77 | void PaintIndices(Int_t type);
|
|---|
| 78 | void Update(Bool_t islog, Bool_t isbox, Bool_t iscol, Bool_t issame);
|
|---|
| 79 | void UpdateLegend(Float_t min, Float_t max, Bool_t islog);
|
|---|
| 80 | void SetRange();
|
|---|
| 81 |
|
|---|
| 82 | TPaveStats *GetStatisticBox();
|
|---|
| 83 |
|
|---|
| 84 | Int_t GetPixelIndex(Int_t px, Int_t py, Float_t conv=1) const;
|
|---|
| 85 |
|
|---|
| 86 | void PaintAxisTitle();
|
|---|
| 87 |
|
|---|
| 88 | enum {
|
|---|
| 89 | kIsUsed = BIT(1)
|
|---|
| 90 | };
|
|---|
| 91 |
|
|---|
| 92 | void ResetUsed(Int_t idx) { CLRBIT(fUsed[idx], kIsUsed); }
|
|---|
| 93 |
|
|---|
| 94 | Bool_t FindVal(const TArrayI &arr, Int_t val) const
|
|---|
| 95 | {
|
|---|
| 96 | const Int_t n = arr.GetSize();
|
|---|
| 97 | if (n==0)
|
|---|
| 98 | return kTRUE;
|
|---|
| 99 |
|
|---|
| 100 | const Int_t *p = arr.GetArray();
|
|---|
| 101 | const Int_t *end = p+n;
|
|---|
| 102 | while (p<end)
|
|---|
| 103 | if (val==*p++)
|
|---|
| 104 | return kTRUE;
|
|---|
| 105 |
|
|---|
| 106 | return kFALSE;
|
|---|
| 107 | }
|
|---|
| 108 | Bool_t MatchSector(Int_t idx, const TArrayI §or, const TArrayI &aidx) const;
|
|---|
| 109 |
|
|---|
| 110 | // This is a trick to remove TH1 entries from the context menu
|
|---|
| 111 | TH1 *Rebin(Int_t ngroup=2, const char *newname="", const Double_t *bin=0) { return this; }
|
|---|
| 112 | TH1 *Rebin(Int_t ngroup=2, const char *newname="") { return this; }
|
|---|
| 113 | void DrawPanel() {}
|
|---|
| 114 |
|
|---|
| 115 | Int_t Fill(Axis_t x);
|
|---|
| 116 | Int_t Fill(const char *name, Stat_t w) { return -1; }
|
|---|
| 117 | void FillN(Int_t ntimes, const Axis_t *x, const Double_t *w, Int_t stride=1) {}
|
|---|
| 118 | void FillN(Int_t, const Axis_t *, const Axis_t *, const Double_t *, Int_t) {}
|
|---|
| 119 |
|
|---|
| 120 | public:
|
|---|
| 121 | MHCamera();
|
|---|
| 122 | MHCamera(const MGeomCam &geom, const char *name="", const char *title="");
|
|---|
| 123 | ~MHCamera();
|
|---|
| 124 |
|
|---|
| 125 | TObject *Clone(const char *newname="") const;
|
|---|
| 126 |
|
|---|
| 127 | void SetGeometry(const MGeomCam &geom, const char *name="", const char *title="");
|
|---|
| 128 | const MGeomCam* GetGeometry() const { return fGeomCam; }
|
|---|
| 129 |
|
|---|
| 130 | Bool_t IsUsed(Int_t idx) const { return TESTBIT(const_cast<TArrayC&>(fUsed)[idx], kIsUsed); }
|
|---|
| 131 | void SetUsed(Int_t idx) { SETBIT(fUsed[idx], kIsUsed); }
|
|---|
| 132 | void SetAllUsed() { fUsed.Reset(BIT(kIsUsed)); }
|
|---|
| 133 |
|
|---|
| 134 | Int_t Fill(Axis_t x, Axis_t y, Stat_t w);
|
|---|
| 135 | Int_t Fill(Axis_t x, Stat_t w);
|
|---|
| 136 |
|
|---|
| 137 | //void AddPixContent(Int_t idx) const { AddBinContent(idx+1); }
|
|---|
| 138 | //void AddPixContent(Int_t idx, Stat_t w) const { AddBinContent(idx+1, w); }
|
|---|
| 139 |
|
|---|
| 140 | // This is a trick to remove TH1 entries from the context menu
|
|---|
| 141 | /*
|
|---|
| 142 | void Add(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1) { TH1::Add(h1, h2, c1, c2); }
|
|---|
| 143 | void Add(TF1 *h1, Double_t c1=1) { TH1::Add(h1, c1); }
|
|---|
| 144 | void Add(const TH1 *h1, Double_t c1=1) { TH1::Add(h1, c1); }
|
|---|
| 145 | void Divide(TF1 *f1, Double_t c1=1) { TH1::Divide(f1, c1); }
|
|---|
| 146 | void Divide(const TH1 *h1) { TH1::Divide(h1); }
|
|---|
| 147 | 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); }
|
|---|
| 148 | void Multiply(TF1 *h1, Double_t c1=1) { TH1::Multiply(h1, c1); }
|
|---|
| 149 | void Multiply(const TH1 *h1) { TH1::Multiply(h1); }
|
|---|
| 150 | 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); }
|
|---|
| 151 | */
|
|---|
| 152 |
|
|---|
| 153 | void FitPanel() { TH1::FitPanel(); }
|
|---|
| 154 |
|
|---|
| 155 | virtual Double_t GetPixContent(Int_t idx) const { return GetBinContent(idx+1); }
|
|---|
| 156 | virtual void AddCamContent(const MCamEvent &evt, Int_t type=0);
|
|---|
| 157 | virtual void AddCamContent(const MHCamera &evt, Int_t type=0);
|
|---|
| 158 | virtual void AddCamContent(const TArrayD &arr, const TArrayC *used=NULL);
|
|---|
| 159 | virtual void AddCamContent(const MArrayD &arr, const TArrayC *used=NULL);
|
|---|
| 160 | virtual void SetCamContent(const MCamEvent &evt, Int_t type=0) { Reset(); AddCamContent(evt, type); }
|
|---|
| 161 | virtual void SetCamContent(const MHCamera &cam, Int_t type=0) { Reset(); AddCamContent(cam, type); }
|
|---|
| 162 | virtual void SetCamContent(const TArrayD &evt, const TArrayC *used=NULL) { Reset(); AddCamContent(evt, used); }
|
|---|
| 163 | virtual void SetCamContent(const MArrayD &evt, const TArrayC *used=NULL) { Reset(); AddCamContent(evt, used); }
|
|---|
| 164 |
|
|---|
| 165 | virtual void SetCamError(const MCamEvent &evt, Int_t type=0);
|
|---|
| 166 | virtual void SetUsed(const TArrayC &arr);
|
|---|
| 167 |
|
|---|
| 168 | virtual void CntCamContent(const MCamEvent &evt, Double_t threshold, Int_t type=0, Bool_t isabove=kTRUE);
|
|---|
| 169 | virtual void CntCamContent(const MCamEvent &evt, TArrayD threshold, Int_t type=0, Bool_t isabove=kTRUE);
|
|---|
| 170 | virtual void CntCamContent(const TArrayD &evt, Double_t threshold, Bool_t ispos=kTRUE);
|
|---|
| 171 | virtual void CntCamContent(const MCamEvent &event, Int_t type1, const MCamEvent &thresevt, Int_t type2, Double_t threshold, Bool_t isabove);
|
|---|
| 172 |
|
|---|
| 173 | Stat_t GetBinContent(Int_t bin) const;
|
|---|
| 174 | Stat_t GetBinContent(Int_t binx, Int_t biny) const { return GetBinContent(binx); }
|
|---|
| 175 | Stat_t GetBinContent(Int_t binx, Int_t biny, Int_t binz) const { return GetBinContent(binx); }
|
|---|
| 176 | Stat_t GetBinError(Int_t bin) const;
|
|---|
| 177 | Stat_t GetBinError(Int_t binx, Int_t biny) const { return GetBinError(binx); }
|
|---|
| 178 | Stat_t GetBinError(Int_t binx, Int_t biny, Int_t binz) const { return GetBinError(binx); }
|
|---|
| 179 |
|
|---|
| 180 | Double_t GetMinimum(Bool_t ball) const { return GetMinimumSectors(TArrayI(), TArrayI(), ball); }
|
|---|
| 181 | Double_t GetMaximum(Bool_t ball) const { return GetMaximumSectors(TArrayI(), TArrayI(), ball); }
|
|---|
| 182 |
|
|---|
| 183 | Double_t GetMinimum(Double_t gt) const { return GetMinimumSectors(TArrayI(), TArrayI(), kFALSE); } // FIXME: To be done: Minimum greater than
|
|---|
| 184 | Double_t GetMaximum(Double_t lt) const { return GetMaximumSectors(TArrayI(), TArrayI(), kFALSE); } // FIXME: To be done: Maximum lower than
|
|---|
| 185 |
|
|---|
| 186 | Double_t GetMinimum() const { return GetMinimum(0.0); } // FIXME: To be done: Minimum greater than
|
|---|
| 187 | Double_t GetMaximum() const { return GetMaximum(0.0); } // FIXME: To be done: Maximum lower than
|
|---|
| 188 |
|
|---|
| 189 | Double_t GetMinimumSector(Int_t sector, Int_t aidx, Bool_t ball=kFALSE) const
|
|---|
| 190 | {
|
|---|
| 191 | return GetMinimumSectors(TArrayI(1, §or), TArrayI(1, &aidx), ball);
|
|---|
| 192 | }
|
|---|
| 193 | Double_t GetMaximumSector(Int_t sector, Int_t aidx, Bool_t ball=kFALSE) const
|
|---|
| 194 | {
|
|---|
| 195 | return GetMaximumSectors(TArrayI(1, §or), TArrayI(1, &aidx), ball);
|
|---|
| 196 | }
|
|---|
| 197 | Double_t GetMinimumSectors(const TArrayI §or, const TArrayI &aidx, Bool_t ball=kFALSE) const;
|
|---|
| 198 | Double_t GetMaximumSectors(const TArrayI §or, const TArrayI &aidx, Bool_t ball=kFALSE) const;
|
|---|
| 199 |
|
|---|
| 200 | void SetLevels(const TArrayF &arr);
|
|---|
| 201 |
|
|---|
| 202 | void FillRandom(const char *fname, Int_t ntimes=5000) { TH1::FillRandom(fname, ntimes); }
|
|---|
| 203 | void FillRandom(TH1 *h, Int_t ntimes=5000) { TH1::FillRandom(h, ntimes); }
|
|---|
| 204 | void FillRandom();
|
|---|
| 205 |
|
|---|
| 206 | void PrintInfo() const { Print(""); } // *MENU*
|
|---|
| 207 | void Reset(Option_t *);
|
|---|
| 208 | void Reset() { Reset(""); } // *MENU*
|
|---|
| 209 | TH1 *DrawCopy() const/* { gPad=NULL; return TH1D::DrawCopy(); }*/; // *MENU*
|
|---|
| 210 | TH1 *DrawCopy(Option_t *o) const { return TH1D::DrawCopy(o); }
|
|---|
| 211 |
|
|---|
| 212 | void Print(Option_t *) const;
|
|---|
| 213 | void Paint(Option_t *option="");
|
|---|
| 214 | void Draw(Option_t *option="");
|
|---|
| 215 | TObject *DrawClone(Option_t *option="") const;
|
|---|
| 216 | void DrawProjection (Int_t fit=0) const;
|
|---|
| 217 | void DrawRadialProfile() const;
|
|---|
| 218 | void DrawAzimuthProfile() const;
|
|---|
| 219 |
|
|---|
| 220 | void SavePrimitive(ostream &out, Option_t *);
|
|---|
| 221 | void SavePrimitive(ofstream &out, Option_t *);
|
|---|
| 222 | Int_t DistancetoPrimitive(Int_t px, Int_t py);
|
|---|
| 223 | char *GetObjectInfo(Int_t px, Int_t py) const;
|
|---|
| 224 | void ExecuteEvent(Int_t event, Int_t px, Int_t py);
|
|---|
| 225 | void SetDrawOption(Option_t *option); //*MENU*
|
|---|
| 226 |
|
|---|
| 227 | void SetPalette(Int_t ncolors, Int_t *colors);
|
|---|
| 228 |
|
|---|
| 229 | void SetPrettyPalette(); // *MENU*
|
|---|
| 230 | void SetDeepBlueSeaPalette(); // *MENU*
|
|---|
| 231 | void SetInvDeepBlueSeaPalette(); // *MENU*
|
|---|
| 232 |
|
|---|
| 233 | void SetFreezed(Bool_t f=kTRUE) { f ? SetBit(kFreezed) : ResetBit(kFreezed); } // *TOGGLE* *GETTER=IsFreezed
|
|---|
| 234 | Bool_t IsFreezed() const { return TestBit(kFreezed); }
|
|---|
| 235 | //void SetOptStat(Int_t os=-1) { fOptStat = os; } // *MENU*
|
|---|
| 236 |
|
|---|
| 237 | void SetErrorSpread(Bool_t f=kTRUE) { f ? ResetBit(kErrorMean) : SetBit(kErrorMean); } // *TOGGLE* *GETTER=IsErrorSpread
|
|---|
| 238 | Bool_t IsErrorSpread() const { return !TestBit(kErrorMean); }
|
|---|
| 239 |
|
|---|
| 240 | void SetAbberation(Float_t f=0.0713) { fAbberation=f; } // *MENU*
|
|---|
| 241 |
|
|---|
| 242 | void SetAutoScale() { fMinimum = fMaximum = -1111; } // *MENU*
|
|---|
| 243 | void SetMinMax(Double_t min=-1111, Double_t max=-1111) { SetMinimum(min); SetMaximum(max); } // *MENU*
|
|---|
| 244 |
|
|---|
| 245 | void AddNotify(TObject *event);
|
|---|
| 246 |
|
|---|
| 247 | Stat_t GetMean(Bool_t ball) const { return GetMeanSectors(TArrayI(), TArrayI(), ball); }
|
|---|
| 248 | Stat_t GetMedian(Bool_t ball) const { return GetMedianSectors(TArrayI(), TArrayI(), ball); }
|
|---|
| 249 | Stat_t GetRMS(Bool_t ball) const { return GetRmsSectors(TArrayI(), TArrayI(), ball); }
|
|---|
| 250 | Stat_t GetDev(Bool_t ball) const { return GetDevSectors(TArrayI(), TArrayI(), ball); }
|
|---|
| 251 |
|
|---|
| 252 | Stat_t GetMean(Int_t=0) const { return GetMeanSectors(TArrayI(), TArrayI(), kFALSE); }
|
|---|
| 253 | Stat_t GetMedian(Int_t=0) const { return GetMedianSectors(TArrayI(), TArrayI(), kFALSE); }
|
|---|
| 254 | Stat_t GetRMS(Int_t=0) const { return GetRmsSectors(TArrayI(), TArrayI(), kFALSE); }
|
|---|
| 255 | Stat_t GetDev(Int_t=0) const { return GetRmsSectors(TArrayI(), TArrayI(), kFALSE); }
|
|---|
| 256 |
|
|---|
| 257 | Stat_t GetMeanSector(Int_t sector, Int_t aidx, Bool_t ball=kFALSE) const
|
|---|
| 258 | {
|
|---|
| 259 | return GetMeanSectors(TArrayI(1, §or), TArrayI(1, &aidx), ball);
|
|---|
| 260 | }
|
|---|
| 261 | Stat_t GetMedianSector(Int_t sector, Int_t aidx, Bool_t ball=kFALSE) const
|
|---|
| 262 | {
|
|---|
| 263 | return GetMedianSectors(TArrayI(1, §or), TArrayI(1, &aidx), ball);
|
|---|
| 264 | }
|
|---|
| 265 | Stat_t GetRmsSector(Int_t sector, Int_t aidx, Bool_t ball=kFALSE) const
|
|---|
| 266 | {
|
|---|
| 267 | return GetRmsSectors(TArrayI(1, §or), TArrayI(1, &aidx), ball);
|
|---|
| 268 | }
|
|---|
| 269 | Stat_t GetDevSector(Int_t sector, Int_t aidx, Bool_t ball=kFALSE) const
|
|---|
| 270 | {
|
|---|
| 271 | return GetDevSectors(TArrayI(1, §or), TArrayI(1, &aidx), ball);
|
|---|
| 272 | }
|
|---|
| 273 |
|
|---|
| 274 | Stat_t GetMeanSectors(const TArrayI §or, const TArrayI &aidx, Bool_t all=kFALSE) const;
|
|---|
| 275 | Stat_t GetMedianSectors(const TArrayI §or, const TArrayI &aidx, Bool_t all=kFALSE) const;
|
|---|
| 276 | Stat_t GetRmsSectors(const TArrayI §or, const TArrayI &aidx, Bool_t all=kFALSE) const;
|
|---|
| 277 | Stat_t GetDevSectors(const TArrayI §or, const TArrayI &aidx, Bool_t all=kFALSE) const;
|
|---|
| 278 |
|
|---|
| 279 | UInt_t GetNumPixels() const;
|
|---|
| 280 |
|
|---|
| 281 | TH1D *Projection(const char *name="_py", const Int_t nbins=50) const
|
|---|
| 282 | {
|
|---|
| 283 | return ProjectionS(TArrayI(), TArrayI(), name,nbins);
|
|---|
| 284 | }
|
|---|
| 285 | TH1D *ProjectionS(Int_t sector, Int_t aidx, const char *name="_py", const Int_t nbins=50) const
|
|---|
| 286 | {
|
|---|
| 287 | return ProjectionS(TArrayI(1, §or), TArrayI(1, &aidx), name, nbins);
|
|---|
| 288 | }
|
|---|
| 289 | TH1D *ProjectionS(const TArrayI §or, const TArrayI &aidx, const char *name="_py", const Int_t nbins=50) const;
|
|---|
| 290 |
|
|---|
| 291 | TProfile *RadialProfile(const char *name="_rad", Int_t nbins=25) const { return RadialProfileS(TArrayI(), TArrayI(), name, nbins);}
|
|---|
| 292 | TProfile *RadialProfileS(Int_t sector, Int_t aidx, const char *name="_rad", const Int_t nbins=25) const
|
|---|
| 293 | {
|
|---|
| 294 | return RadialProfileS(TArrayI(1, §or), TArrayI(1, &aidx), name, nbins);
|
|---|
| 295 | }
|
|---|
| 296 | TProfile *RadialProfileS(const TArrayI §or, const TArrayI &aidx, const char *name="_rad", const Int_t nbins=25) const;
|
|---|
| 297 |
|
|---|
| 298 | TProfile *AzimuthProfile(const char *name="_azi", Int_t nbins=25) const { return AzimuthProfileA(TArrayI(), name, nbins); }
|
|---|
| 299 | TProfile *AzimuthProfile(Int_t aidx, const char *name="_rad", const Int_t nbins=25) const
|
|---|
| 300 | {
|
|---|
| 301 | return AzimuthProfileA(TArrayI(1, &aidx), name, nbins);
|
|---|
| 302 | }
|
|---|
| 303 | TProfile *AzimuthProfileA(const TArrayI &aidx, const char *name="_rad", const Int_t nbins=25) const;
|
|---|
| 304 |
|
|---|
| 305 | void CamDraw(TCanvas &c, const Int_t x, const Int_t y,
|
|---|
| 306 | const Int_t fit, const Int_t rad=0, const Int_t azi=0,
|
|---|
| 307 | TObject *notify=NULL);
|
|---|
| 308 |
|
|---|
| 309 | const MGeomCam &GetGeomCam() const { return *fGeomCam; }
|
|---|
| 310 |
|
|---|
| 311 | ClassDef(MHCamera, 1) // Displays the magic camera
|
|---|
| 312 | };
|
|---|
| 313 |
|
|---|
| 314 | #endif
|
|---|
| 315 |
|
|---|
| 316 | /* ------------ OK ---------------
|
|---|
| 317 | virtual void Browse(TBrowser *b);
|
|---|
| 318 | virtual void FillRandom(const char *fname, Int_t ntimes=5000);
|
|---|
| 319 | virtual void FillRandom(TH1 *h, Int_t ntimes=5000);
|
|---|
| 320 |
|
|---|
| 321 | virtual Int_t GetQuantiles(Int_t nprobSum, Double_t *q, const Double_t *probSum=0);
|
|---|
| 322 | virtual Axis_t GetRandom();
|
|---|
| 323 | virtual void GetStats(Stat_t *stats) const;
|
|---|
| 324 | virtual Stat_t GetSumOfWeights() const;
|
|---|
| 325 | virtual Int_t GetSumw2N() const {return fSumw2.fN;}
|
|---|
| 326 | virtual Stat_t GetRMS(Int_t axis=1) const;
|
|---|
| 327 |
|
|---|
| 328 | virtual Int_t GetNbinsX() const {return fXaxis.GetNbins();}
|
|---|
| 329 | virtual Int_t GetNbinsY() const {return fYaxis.GetNbins();}
|
|---|
| 330 | virtual Int_t GetNbinsZ() const {return fZaxis.GetNbins();}
|
|---|
| 331 |
|
|---|
| 332 | // ------------- to check -------------------
|
|---|
| 333 |
|
|---|
| 334 | virtual Double_t ComputeIntegral();
|
|---|
| 335 | virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
|
|---|
| 336 | virtual void Draw(Option_t *option="");
|
|---|
| 337 | virtual TH1 *DrawCopy(Option_t *option="") const;
|
|---|
| 338 | virtual TH1 *DrawNormalized(Option_t *option="", Double_t norm=1) const;
|
|---|
| 339 | virtual Int_t BufferEmpty(Bool_t deleteBuffer=kFALSE);
|
|---|
| 340 | virtual void Eval(TF1 *f1, Option_t *option="");
|
|---|
| 341 | virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
|
|---|
| 342 | virtual void FillN(Int_t ntimes, const Axis_t *x, const Double_t *w, Int_t stride=1);
|
|---|
| 343 | virtual void FillN(Int_t, const Axis_t *, const Axis_t *, const Double_t *, Int_t) {;}
|
|---|
| 344 | virtual Int_t FindBin(Axis_t x, Axis_t y=0, Axis_t z=0);
|
|---|
| 345 | virtual TObject *FindObject(const char *name) const;
|
|---|
| 346 | virtual TObject *FindObject(const TObject *obj) const;
|
|---|
| 347 | virtual Int_t Fit(const char *formula ,Option_t *option="" ,Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0); // *MENU*
|
|---|
| 348 | virtual Int_t Fit(TF1 *f1 ,Option_t *option="" ,Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0);
|
|---|
| 349 | virtual void FitPanel(); // *MENU*
|
|---|
| 350 | TH1 *GetAsymmetry(TH1* h2, Double_t c2=1, Double_t dc2=0);
|
|---|
| 351 | Int_t GetBufferLength() const {return (Int_t)fBuffer[0];}
|
|---|
| 352 | Int_t GetBufferSize () const {return fBufferSize;}
|
|---|
| 353 | const Double_t *GetBuffer() const {return fBuffer;}
|
|---|
| 354 | static Int_t GetDefaultBufferSize();
|
|---|
| 355 | virtual Double_t *GetIntegral() {return fIntegral;}
|
|---|
| 356 |
|
|---|
| 357 | TList *GetListOfFunctions() const { return fFunctions; }
|
|---|
| 358 |
|
|---|
| 359 | virtual Int_t GetNdivisions(Option_t *axis="X") const;
|
|---|
| 360 | virtual Color_t GetAxisColor(Option_t *axis="X") const;
|
|---|
| 361 | virtual Color_t GetLabelColor(Option_t *axis="X") const;
|
|---|
| 362 | virtual Style_t GetLabelFont(Option_t *axis="X") const;
|
|---|
| 363 | virtual Float_t GetLabelOffset(Option_t *axis="X") const;
|
|---|
| 364 | virtual Float_t GetLabelSize(Option_t *axis="X") const;
|
|---|
| 365 | virtual Float_t GetTitleOffset(Option_t *axis="X") const;
|
|---|
| 366 | virtual Float_t GetTitleSize(Option_t *axis="X") const;
|
|---|
| 367 | virtual Float_t GetTickLength(Option_t *axis="X") const;
|
|---|
| 368 | virtual Float_t GetBarOffset() const {return Float_t(0.001*Float_t(fBarOffset));}
|
|---|
| 369 | virtual Float_t GetBarWidth() const {return Float_t(0.001*Float_t(fBarWidth));}
|
|---|
| 370 | virtual Int_t GetContour(Double_t *levels=0);
|
|---|
| 371 | virtual Double_t GetContourLevel(Int_t level) const;
|
|---|
| 372 | virtual Double_t GetContourLevelPad(Int_t level) const;
|
|---|
| 373 |
|
|---|
| 374 | virtual void GetCenter(Axis_t *center) const {fXaxis.GetCenter(center);}
|
|---|
| 375 | TDirectory *GetDirectory() const {return fDirectory;}
|
|---|
| 376 | virtual Stat_t GetEntries() const;
|
|---|
| 377 | virtual TF1 *GetFunction(const char *name) const;
|
|---|
| 378 | virtual Int_t GetDimension() const { return fDimension; }
|
|---|
| 379 | virtual void GetLowEdge(Axis_t *edge) const {fXaxis.GetLowEdge(edge);}
|
|---|
| 380 | virtual Double_t GetMaximum() const;
|
|---|
| 381 | virtual Int_t GetMaximumBin() const;
|
|---|
| 382 | virtual Int_t GetMaximumBin(Int_t &locmax, Int_t &locmay, Int_t &locmaz) const;
|
|---|
| 383 | virtual Double_t GetMaximumStored() const {return fMaximum;}
|
|---|
| 384 | virtual Double_t GetMinimum() const;
|
|---|
| 385 | virtual Int_t GetMinimumBin() const;
|
|---|
| 386 | virtual Int_t GetMinimumBin(Int_t &locmix, Int_t &locmiy, Int_t &locmiz) const;
|
|---|
| 387 | virtual Double_t GetMinimumStored() const {return fMinimum;}
|
|---|
| 388 | virtual Stat_t GetMean(Int_t axis=1) const;
|
|---|
| 389 | virtual Double_t GetNormFactor() const {return fNormFactor;}
|
|---|
| 390 | virtual char *GetObjectInfo(Int_t px, Int_t py) const;
|
|---|
| 391 | Option_t *GetOption() const {return fOption.Data();}
|
|---|
| 392 |
|
|---|
| 393 | TVirtualHistPainter *GetPainter();
|
|---|
| 394 |
|
|---|
| 395 | TAxis *GetXaxis() const;
|
|---|
| 396 | TAxis *GetYaxis() const;
|
|---|
| 397 | TAxis *GetZaxis() const;
|
|---|
| 398 | virtual Stat_t Integral(Option_t *option="") const;
|
|---|
| 399 | virtual Stat_t Integral(Int_t binx1, Int_t binx2, Option_t *option="") const;
|
|---|
| 400 | virtual Stat_t Integral(Int_t, Int_t, Int_t, Int_t, Option_t * ="") const {return 0;}
|
|---|
| 401 | virtual Stat_t Integral(Int_t, Int_t, Int_t, Int_t, Int_t, Int_t, Option_t * ="" ) const {return 0;}
|
|---|
| 402 | virtual Double_t KolmogorovTest(TH1 *h2, Option_t *option="") const;
|
|---|
| 403 | virtual void LabelsDeflate(Option_t *axis="X");
|
|---|
| 404 | virtual void LabelsInflate(Option_t *axis="X");
|
|---|
| 405 | virtual void LabelsOption(Option_t *option="h", Option_t *axis="X");
|
|---|
| 406 | virtual Int_t Merge(TCollection *list);
|
|---|
| 407 | virtual void Multiply(TF1 *h1, Double_t c1=1);
|
|---|
| 408 | virtual void Multiply(const TH1 *h1);
|
|---|
| 409 | virtual void Multiply(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option=""); // *MENU*
|
|---|
| 410 | virtual void Paint(Option_t *option="");
|
|---|
| 411 | virtual void Print(Option_t *option="") const;
|
|---|
| 412 | virtual void PutStats(Stat_t *stats);
|
|---|
| 413 | virtual TH1 *Rebin(Int_t ngroup=2, const char*newname=""); // *MENU*
|
|---|
| 414 | virtual void RebinAxis(Axis_t x, Option_t *axis="X");
|
|---|
| 415 | virtual void Rebuild(Option_t *option="");
|
|---|
| 416 | virtual void RecursiveRemove(TObject *obj);
|
|---|
| 417 | virtual void Reset(Option_t *option="");
|
|---|
| 418 | virtual void SavePrimitive(ofstream &out, Option_t *option);
|
|---|
| 419 | virtual void Scale(Double_t c1=1);
|
|---|
| 420 | virtual void SetAxisColor(Color_t color=1, Option_t *axis="X");
|
|---|
| 421 | virtual void SetAxisRange(Axis_t xmin, Axis_t xmax, Option_t *axis="X");
|
|---|
| 422 | virtual void SetBarOffset(Float_t offset=0.25) {fBarOffset = Short_t(1000*offset);}
|
|---|
| 423 | virtual void SetBarWidth(Float_t width=0.5) {fBarWidth = Short_t(1000*width);}
|
|---|
| 424 | virtual void SetBinContent(Int_t bin, Stat_t content);
|
|---|
| 425 | virtual void SetBinContent(Int_t binx, Int_t biny, Stat_t content);
|
|---|
| 426 | virtual void SetBinContent(Int_t binx, Int_t biny, Int_t binz, Stat_t content);
|
|---|
| 427 | virtual void SetBinError(Int_t bin, Stat_t error);
|
|---|
| 428 | virtual void SetBinError(Int_t binx, Int_t biny, Stat_t error);
|
|---|
| 429 | virtual void SetBinError(Int_t binx, Int_t biny, Int_t binz, Stat_t error);
|
|---|
| 430 | virtual void SetBins(Int_t nx, Axis_t xmin, Axis_t xmax);
|
|---|
| 431 | virtual void SetBins(Int_t nx, Axis_t xmin, Axis_t xmax, Int_t ny, Axis_t ymin, Axis_t ymax);
|
|---|
| 432 | virtual void SetBins(Int_t nx, Axis_t xmin, Axis_t xmax, Int_t ny, Axis_t ymin, Axis_t ymax,
|
|---|
| 433 | Int_t nz, Axis_t zmin, Axis_t zmax);
|
|---|
| 434 | virtual void SetBinsLength(Int_t = -1) { } //refefined in derived classes
|
|---|
| 435 | virtual void SetBuffer(Int_t buffersize, Option_t *option="");
|
|---|
| 436 | virtual void SetCellContent(Int_t binx, Int_t biny, Stat_t content);
|
|---|
| 437 | virtual void SetCellError(Int_t binx, Int_t biny, Stat_t content);
|
|---|
| 438 | virtual void SetContent(const Stat_t *content);
|
|---|
| 439 | virtual void SetContour(Int_t nlevels, const Double_t *levels=0);
|
|---|
| 440 | virtual void SetContourLevel(Int_t level, Double_t value);
|
|---|
| 441 | static void SetDefaultBufferSize(Int_t buffersize=1000);
|
|---|
| 442 | virtual void SetDirectory(TDirectory *dir);
|
|---|
| 443 | virtual void SetEntries(Stat_t n) {fEntries = n;};
|
|---|
| 444 | virtual void SetError(const Stat_t *error);
|
|---|
| 445 | virtual void SetLabelColor(Color_t color=1, Option_t *axis="X");
|
|---|
| 446 | virtual void SetLabelFont(Style_t font=62, Option_t *axis="X");
|
|---|
| 447 | virtual void SetLabelOffset(Float_t offset=0.005, Option_t *axis="X");
|
|---|
| 448 | virtual void SetLabelSize(Float_t size=0.02, Option_t *axis="X");
|
|---|
| 449 |
|
|---|
| 450 | virtual void SetMaximum(Double_t maximum=-1111); // *MENU*
|
|---|
| 451 | virtual void SetMinimum(Double_t minimum=-1111); // *MENU*
|
|---|
| 452 | virtual void SetName(const char *name); // *MENU*
|
|---|
| 453 | virtual void SetNameTitle(const char *name, const char *title);
|
|---|
| 454 | virtual void SetNdivisions(Int_t n=510, Option_t *axis="X");
|
|---|
| 455 | virtual void SetNormFactor(Double_t factor=1) {fNormFactor = factor;}
|
|---|
| 456 | virtual void SetStats(Bool_t stats=kTRUE);
|
|---|
| 457 | virtual void SetOption(Option_t *option=" ") {fOption = option;}
|
|---|
| 458 | virtual void SetTickLength(Float_t length=0.02, Option_t *axis="X");
|
|---|
| 459 | virtual void SetTitleOffset(Float_t offset=1, Option_t *axis="X");
|
|---|
| 460 | virtual void SetTitleSize(Float_t size=0.02, Option_t *axis="X");
|
|---|
| 461 | virtual void SetTitle(const char *title);
|
|---|
| 462 | virtual void SetXTitle(const char *title) {fXaxis.SetTitle(title);}
|
|---|
| 463 | virtual void SetYTitle(const char *title) {fYaxis.SetTitle(title);}
|
|---|
| 464 | virtual void SetZTitle(const char *title) {fZaxis.SetTitle(title);}
|
|---|
| 465 | virtual void Smooth(Int_t ntimes=1); // *MENU*
|
|---|
| 466 | static void SmoothArray(Int_t NN, Double_t *XX, Int_t ntimes=1);
|
|---|
| 467 | static Double_t SmoothMedian(Int_t n, Double_t *a);
|
|---|
| 468 | virtual void Sumw2();
|
|---|
| 469 | void UseCurrentStyle();
|
|---|
| 470 |
|
|---|
| 471 | ClassDef(TH1,4) //1-Dim histogram base class
|
|---|
| 472 | };
|
|---|
| 473 |
|
|---|
| 474 | */
|
|---|