275 Error(
"Add",
"Attempt to add histograms with different number of bins");
282 for (bin = 1; bin <=
fNcells; bin++) {
289 Error(
"Add",
"Attempt to add histograms with different bin limits");
299 Bool_t resetStats = (c1 < 0);
313 for (bin = 1; bin <=
fNcells; bin++) {
329 if (i == 1) s1[i] += c1 * c1 * s2[i];
330 else s1[i] += c1 * s2[i];
343 Warning(
"Add",
"Not implement for TH2Poly");
352 Warning(
"Add",
"Not implement for TH2Poly");
363 Int_t nl, nr, mb, mt;
364 Double_t xclipl, xclipr, yclipb, yclipt;
365 Double_t binXmax, binXmin, binYmax, binYmin;
387 for (
int i = nl; i <= nr; i++) {
390 for (
int j = mb; j <= mt; j++) {
396 if ((binXmin >= xclipl) && (binXmax <= xclipr) &&
397 (binYmax <= yclipt) && (binYmin >= yclipb)){
453 for (
int i = 0; i<
fNCells; i++) {
462 while((obj = next())){
490 while ((obj = next())) {
514 while ((obj = next())) {
547 if (overflow != -5)
return overflow;
567 while ((obj=next())) {
582 return Fill(x, y, 1.0);
598 if (overflow != -5) {
624 while ((obj=next())) {
660 while ((obj = next())) {
686 for (
int i = 0; i < ntimes; i += stride) {
687 Fill(x[i], y[i], w[i]);
709 while ((obj=next())) {
735 if (bin >
fNcells || bin == 0 || bin < -9)
return 0;
748 if (bin < 0) bin = 0;
764 if (bin > (
fNcells))
return "";
765 if (bin < 0)
return "";
774 if (bin > (
fNcells))
return "";
775 if (bin < 0)
return "";
795 while ((obj=next())) {
819 while ((obj=next())) {
822 if (c>max && c<maxval) max=
c;
843 while ((obj=next())) {
867 while ((obj=next())) {
870 if (c<min && c>minval) min=
c;
885 xloop = xstart; yloop = ystart + a/2.0;
886 for (
int sCounter = 0; sCounter < s; sCounter++) {
891 if(sCounter%2 == 0){numberOfHexagonsInTheRow = k;}
892 else{numberOfHexagonsInTheRow = k - 1;}
917 if (sCounter%2 == 0) xloop += a*
TMath::Sqrt(3)/2.0;
997 if (!gl)
return inter;
1000 while ((g = (
TGraph*) next())) {
1006 if (inter)
return inter;
1021 Bool_t p0R, p0L, p0T, p0B, p0xM, p0yM, p1R, p1L, p1T;
1022 Bool_t p1B, p1xM, p1yM, p0In, p1In;
1024 for (
int counter = 0; counter < (bn-1); counter++) {
1026 p0L = x[counter] <= xclipl;
1027 p1L = x[counter + 1] <= xclipl;
1028 if (p0L && p1L)
continue;
1029 p0R = x[counter] >= xclipr;
1030 p1R = x[counter + 1] >= xclipr;
1031 if (p0R && p1R)
continue;
1032 p0T = y[counter] >= yclipt;
1033 p1T = y[counter + 1] >= yclipt;
1034 if (p0T && p1T)
continue;
1035 p0B = y[counter] <= yclipb;
1036 p1B = y[counter + 1] <= yclipb;
1037 if (p0B && p1B)
continue;
1040 p0xM = !p0R && !p0L;
1041 p0yM = !p0T && !p0B;
1042 p1xM = !p1R && !p1L;
1043 p1yM = !p1T && !p1B;
1044 p0In = p0xM && p0yM;
1045 p1In = p1xM && p1yM;
1050 if (p1In)
return kTRUE;
1057 if (p0xM && p1xM)
return kTRUE;
1058 if (p0yM && p1yM)
return kTRUE;
1063 xcoord[0] = x[counter];
1064 xcoord[1] = x[counter + 1];
1065 ycoord[0] = y[counter];
1066 ycoord[1] = y[counter + 1];
1133 for (
auto h2pAsObj : *coll) {
1134 if (!
Add((
TH1*)h2pAsObj, 1.)) {
1135 Warning(
"Merge",
"An issue was encountered during the merge operation.");
1147 out <<
" "<<std::endl;
1153 static Int_t hcounter = 0;
1158 histName += hcounter;
1160 const char *hname = histName.
Data();
1163 out << hname <<
" = new " <<
ClassName() <<
"(\"" << hname <<
"\", \"" 1174 while((obj = next())){
1177 Form(
"th2poly%s",histName.
Data()));
1181 out<<
" "<<std::endl;
1183 for (bin=1;bin<=
fNcells;bin++) {
1186 out<<
" "<<hname<<
"->SetBinContent("<<bin<<
","<<bc<<
");"<<std::endl;
1192 for (bin=1;bin<=
fNcells;bin++) {
1195 out<<
" "<<hname<<
"->SetBinError("<<bin<<
","<<be<<
");"<<std::endl;
1218 if (bin > (
fNcells) || bin == 0 || bin < -9 )
return;
1263 fNumber = bin_number;
1278 if (fPoly)
delete fPoly;
1298 if (!gl)
return fArea;
1301 while ((g = (
TGraph*) next())) {
1303 fArea = fArea + g->
Integral(0,bn-1);
1316 if (fXmax != -1111)
return fXmax;
1326 for (i=1; i<bn; i++) {
if (fXmax < bx[i]) fXmax = bx[i];}
1332 if (!gl)
return fXmax;
1336 while ((g = (
TGraph*) next())) {
1339 if (first) {fXmax = bx[0]; first =
kFALSE;}
1340 for (i=0; i<bn; i++) {
if (fXmax < bx[i]) fXmax = bx[i];}
1352 if (fXmin != -1111)
return fXmin;
1362 for (i=1; i<bn; i++) {
if (fXmin > bx[i]) fXmin = bx[i];}
1368 if (!gl)
return fXmin;
1372 while ((g = (
TGraph*) next())) {
1375 if (first) {fXmin = bx[0]; first =
kFALSE;}
1376 for (i=0; i<bn; i++) {
if (fXmin > bx[i]) fXmin = bx[i];}
1388 if (fYmax != -1111)
return fYmax;
1398 for (i=1; i<bn; i++) {
if (fYmax < by[i]) fYmax = by[i];}
1404 if (!gl)
return fYmax;
1408 while ((g = (
TGraph*) next())) {
1411 if (first) {fYmax = by[0]; first =
kFALSE;}
1412 for (i=0; i<bn; i++) {
if (fYmax < by[i]) fYmax = by[i];}
1424 if (fYmin != -1111)
return fYmin;
1434 for (i=1; i<bn; i++) {
if (fYmin > by[i]) fYmin = by[i];}
1440 if (!gl)
return fYmin;
1444 while ((g = (
TGraph*) next())) {
1447 if (first) {fYmin = by[0]; first =
kFALSE;}
1448 for (i=0; i<bn; i++) {
if (fYmin > by[i]) fYmin = by[i];}
Double_t Integral(Option_t *option="") const
Returns the integral of bin contents.
virtual const char * GetName() const
Returns name of object.
Int_t FindBin(Double_t x, Double_t y, Double_t z=0)
Returns the bin number of the bin at the given coordinate.
Bool_t * fCompletelyInside
Double_t GetBinError(Int_t bin) const
Returns the value of error associated to bin number bin.
virtual void PutStats(Double_t *stats)
Replace current statistics with the values in array stats.
RooArgList L(const RooAbsArg &v1)
Int_t GetBinNumber() const
void ChangePartition(Int_t n, Int_t m)
Changes the number of partition cells in the histogram.
virtual Double_t GetNormFactor() const
TAxis fYaxis
Y axis descriptor.
virtual void Scale(Double_t c1=1, Option_t *option="")
Multiply this histogram by a constant c1.
Long64_t Merge(TCollection *)
Merge TH2Polys Given the special nature of the TH2Poly, the merge is implemented in terms of subseque...
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
virtual Double_t GetSumOfWeights() const
Return the sum of weights excluding under/overflows.
A TMultiGraph is a collection of TGraph (or derived) objects.
void Initialize(Double_t xlow, Double_t xup, Double_t ylow, Double_t yup, Int_t n, Int_t m)
Initializes the TH2Poly object. This method is called by the constructor.
void ToLower()
Change string to lower-case.
virtual Bool_t Add(const TH1 *h1, Double_t c1)
Performs the operation: this = this + c1*h1.
virtual Int_t IsInside(Double_t x, Double_t y) const
Return 1 if the point (x,y) is inside one of the graphs 0 otherwise.
Bool_t IsInside(Double_t x, Double_t y) const
Return "true" if the point (x,y) is inside the bin.
TArrayD fSumw2
Array of sum of squares of weights.
void SetBinContentChanged(Bool_t flag)
virtual Double_t Integral(Int_t first=0, Int_t last=-1) const
Integrate the TGraph data within a given (index) range.
Helper class to represent a bin in the TH2Poly histogram.
void AddBinToPartition(TH2PolyBin *bin)
For the 3D Painter.
Double_t fTsumwx2
Total Sum of weight*X*X.
virtual void GetStats(Double_t *stats) const
fill the array stats from the contents of this histogram The array stats must be correctly dimensione...
TDirectory * fDirectory
!Pointer to directory holding this histogram
static const double x2[5]
virtual const char * ClassName() const
Returns name of class to which the object belongs.
const char * GetBinTitle(Int_t bin) const
Returns the bin title.
const char * GetBinName(Int_t bin) const
Returns the bin name.
Int_t AddBin(TObject *poly)
Adds a new bin to the histogram.
Bool_t IsIntersecting(TH2PolyBin *bin, Double_t xclipl, Double_t xclipr, Double_t yclipb, Double_t yclipt)
Returns kTRUE if the input bin is intersecting with the input rectangle (xclipl, xclipr, yclipb, yclipt)
virtual ~TH2Poly()
Destructor.
Double_t GetXMax()
Returns the maximum value for the x coordinates of the bin.
Double_t GetYMin()
Returns the minimum value for the y coordinates of the bin.
Bool_t IsInside(T xp, T yp, Int_t np, T *x, T *y)
Double_t GetYMax()
Returns the maximum value for the y coordinates of the bin.
virtual void SetContent(const Double_t *content)
Replace bin contents by the contents of array content.
virtual void ResetStats()
Reset the statistics including the number of entries and replace with values calculates from bin cont...
void SetContent(Double_t content)
Double_t fTsumwx
Total Sum of weight*X.
Double_t GetBinContent(Int_t bin) const
Returns the content of the input bin For the overflow/underflow/sea bins: -1 | -2 | -3 ---+----+---- ...
Double_t fMinimum
Minimum value for plotting.
TObject * GetPolygon() const
TObject * Clone(const char *newname="") const
Make a complete copy of the underlying object.
void Initialize(Bool_t useTMVAStyle=kTRUE)
virtual void GetStats(Double_t *stats) const
Fill the array stats from the contents of this histogram The array stats must be correctly dimensionn...
void SetBinContent(Int_t bin, Double_t content)
Sets the contents of the input bin to the input content Negative values between -1 and -9 are for the...
virtual ~TH2PolyBin()
Destructor.
Double_t GetContent() const
Collection abstract base class.
Double_t fEntries
Number of entries.
Int_t GetNumberOfBins() const
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
char * Form(const char *fmt,...)
virtual TObject * At(Int_t idx) const
Returns the object at position idx. Returns 0 if idx is out of range.
void SetFloat(Bool_t flag=true)
When set to kTRUE, allows the histogram to expand if a bin outside the limits is added.
virtual void SetName(const char *name)
Change the name of this histogram.
virtual Int_t GetSumw2N() const
static const double x1[5]
virtual void SavePrimitiveHelp(std::ostream &out, const char *hname, Option_t *option="")
Helper function for the SavePrimitive functions from TH1 or classes derived from TH1, eg TProfile, TProfile2D.
Double_t fTsumw
Total Sum of weights.
Double_t GetMinimum() const
Returns the minimum value of the histogram.
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
virtual Double_t GetEntries() const
Return the current number of entries.
void Honeycomb(Double_t xstart, Double_t ystart, Double_t a, Int_t k, Int_t s)
Bins the histogram using a honeycomb structure.
int CompareTo(const char *cs, ECaseCompare cmp=kExact) const
Compare a string to char *cs2.
void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
void ClearBinContents()
Clears the contents of all bins in the histogram.
virtual TObject * Clone(const char *newname="") const
Make a clone of an object using the Streamer facility.
Mother of all ROOT objects.
Double_t fMaximum
Maximum value for plotting.
TList * GetListOfGraphs() const
void Reset(Option_t *option)
Reset this histogram: contents, errors, etc.
virtual void Add(TObject *obj)
virtual void Sumw2(Bool_t flag=kTRUE)
Create structure to store sum of squares of weights.
A Graph is a graphics object made of two arrays X and Y with npoints each.
Double_t GetArea()
Returns the area of the bin.
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Int_t fDimension
!Histogram dimension (1, 2 or 3 dim)
virtual void SetEntries(Double_t n)
TAxis fXaxis
X axis descriptor.
virtual void SetTitle(const char *title)
Change (i.e.
virtual Int_t IsInside(Double_t x, Double_t y) const
Return 1 if the point (x,y) is inside the polygon defined by the graph vertices 0 otherwise...
Double_t Sqrt(Double_t x)
virtual void Reset(Option_t *option="")
Reset this histogram: contents, errors, etc.
virtual const char * GetName() const
Returns name of object.
virtual void Set(Int_t nbins, Double_t xmin, Double_t xmax)
Initialize axis with fix bins.
Double_t GetXMin()
Returns the minimum value for the x coordinates of the bin.
Double_t * fBuffer
[fBufferSize] entry buffer
Bool_t IsIntersectingPolygon(Int_t bn, Double_t *x, Double_t *y, Double_t xclipl, Double_t xclipr, Double_t yclipb, Double_t yclipt)
Returns kTRUE if the input polygon (bn, x, y) is intersecting with the input rectangle (xclipl...
Double_t GetMaximum() const
Returns the maximum value of the histogram.
void FillN(Int_t ntimes, const Double_t *x, const Double_t *y, const Double_t *w, Int_t stride=1)
Fills a 2-D histogram with an array of values and weights.
Int_t Fill(Double_t x, Double_t y)
Increment the bin containing (x,y) by 1.
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
TH2Poly()
Default Constructor. No boundaries specified.
2D Histogram with Polygonal Bins
virtual const char * GetTitle() const
Returns title of object.
void SetNewBinAdded(Bool_t flag)
TH2PolyBin()
Default constructor.
Int_t fNcells
number of bins(1D), cells (2D) +U/Overflows
const char * Data() const
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a primitive as a C++ statement(s) on output stream "out".