295 Error(
"Add",
"Attempt to add histograms with different number of bins");
309 Error(
"Add",
"Attempt to add histograms with different bin limits");
334 for (bin = 0; bin <
fNcells; bin++) {
358 if (i == 1)
s1[i] +=
c1 *
c1 * s2[i];
359 else s1[i] +=
c1 * s2[i];
372 Warning(
"Add",
"Not implement for TH2Poly");
381 Warning(
"Add",
"Not implement for TH2Poly");
392 Int_t nl, nr, mb, mt;
393 Double_t xclipl, xclipr, yclipb, yclipt;
394 Double_t binXmax, binXmin, binYmax, binYmin;
416 for (
int i = nl; i <= nr; i++) {
419 for (
int j = mb; j <= mt; j++) {
425 if ((binXmin >= xclipl) && (binXmax <= xclipr) &&
426 (binYmax <= yclipt) && (binYmin >= yclipb)){
482 for (
int i = 0; i<
fNCells; i++) {
491 while((obj = next())){
519 while ((obj = next())) {
543 while ((obj = next())) {
576 if (overflow != -5)
return overflow;
596 while ((obj=next())) {
627 if (overflow != -5) {
655 while ((obj=next())) {
693 while ((obj = next())) {
719 for (
int i = 0; i < ntimes; i += stride) {
742 while ((obj=next())) {
798 if (bin < 0)
return "";
808 if (bin < 0)
return "";
828 while ((obj=next())) {
852 while ((obj=next())) {
855 if (
c>max &&
c<maxval) max=
c;
876 while ((obj=next())) {
900 while ((obj=next())) {
903 if (c<min && c>minval) min=
c;
918 xloop = xstart; yloop = ystart +
a/2.0;
919 for (
int sCounter = 0; sCounter <
s; sCounter++) {
924 if(sCounter%2 == 0){numberOfHexagonsInTheRow = k;}
925 else{numberOfHexagonsInTheRow = k - 1;}
1029 TList *gl =
mg->GetListOfGraphs();
1030 if (!gl)
return inter;
1033 while ((
g = (
TGraph*) next())) {
1039 if (inter)
return inter;
1054 Bool_t p0R, p0L, p0T, p0B, p0xM, p0yM, p1R, p1L, p1T;
1055 Bool_t p1B, p1xM, p1yM, p0In, p1In;
1057 for (
int counter = 0; counter < (bn-1); counter++) {
1059 p0L =
x[counter] <= xclipl;
1060 p1L =
x[counter + 1] <= xclipl;
1061 if (p0L && p1L)
continue;
1062 p0R =
x[counter] >= xclipr;
1063 p1R =
x[counter + 1] >= xclipr;
1064 if (p0R && p1R)
continue;
1065 p0T =
y[counter] >= yclipt;
1066 p1T =
y[counter + 1] >= yclipt;
1067 if (p0T && p1T)
continue;
1068 p0B =
y[counter] <= yclipb;
1069 p1B =
y[counter + 1] <= yclipb;
1070 if (p0B && p1B)
continue;
1073 p0xM = !p0R && !p0L;
1074 p0yM = !p0T && !p0B;
1075 p1xM = !p1R && !p1L;
1076 p1yM = !p1T && !p1B;
1077 p0In = p0xM && p0yM;
1078 p1In = p1xM && p1yM;
1083 if (p1In)
return kTRUE;
1090 if (p0xM && p1xM)
return kTRUE;
1091 if (p0yM && p1yM)
return kTRUE;
1096 xcoord[0] =
x[counter];
1097 xcoord[1] =
x[counter + 1];
1098 ycoord[0] =
y[counter];
1099 ycoord[1] =
y[counter + 1];
1166 for (
auto h2pAsObj : *coll) {
1167 if (!
Add((
TH1*)h2pAsObj, 1.)) {
1168 Warning(
"Merge",
"An issue was encountered during the merge operation.");
1180 out <<
" "<<std::endl;
1186 static Int_t hcounter = 0;
1191 histName += hcounter;
1193 const char *hname = histName.
Data();
1196 out << hname <<
" = new " <<
ClassName() <<
"(\"" << hname <<
"\", \""
1207 while((obj = next())){
1214 out<<
" "<<std::endl;
1219 out<<
" "<<hname<<
"->SetBinContent("<<bin<<
","<<bc<<
");"<<std::endl;
1228 out<<
" "<<hname<<
"->SetBinError("<<bin<<
","<<be<<
");"<<std::endl;
1277 if (!
fBins)
return false;
1279 if (!bin)
return false;
1350 fArea =
g->Integral(0,bn-1);
1355 TList *gl =
mg->GetListOfGraphs();
1356 if (!gl)
return fArea;
1359 while ((
g = (
TGraph*) next())) {
1384 for (i=1; i<bn; i++) {
if (
fXmax < bx[i])
fXmax = bx[i];}
1389 TList *gl =
mg->GetListOfGraphs();
1390 if (!gl)
return fXmax;
1394 while ((
g = (
TGraph*) next())) {
1398 for (i=0; i<bn; i++) {
if (
fXmax < bx[i])
fXmax = bx[i];}
1420 for (i=1; i<bn; i++) {
if (
fXmin > bx[i])
fXmin = bx[i];}
1425 TList *gl =
mg->GetListOfGraphs();
1426 if (!gl)
return fXmin;
1430 while ((
g = (
TGraph*) next())) {
1434 for (i=0; i<bn; i++) {
if (
fXmin > bx[i])
fXmin = bx[i];}
1456 for (i=1; i<bn; i++) {
if (
fYmax < by[i])
fYmax = by[i];}
1461 TList *gl =
mg->GetListOfGraphs();
1462 if (!gl)
return fYmax;
1466 while ((
g = (
TGraph*) next())) {
1470 for (i=0; i<bn; i++) {
if (
fYmax < by[i])
fYmax = by[i];}
1492 for (i=1; i<bn; i++) {
if (
fYmin > by[i])
fYmin = by[i];}
1497 TList *gl =
mg->GetListOfGraphs();
1498 if (!gl)
return fYmin;
1502 while ((
g = (
TGraph*) next())) {
1506 for (i=0; i<bn; i++) {
if (
fYmin > by[i])
fYmin = by[i];}
1522 in =
g->IsInside(
x,
y);
1527 in =
mg->IsInside(
x,
y);
static const double x2[5]
static const double x1[5]
virtual void Set(Int_t nbins, Double_t xmin, Double_t xmax)
Initialize axis with fix bins.
Collection abstract base class.
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
A Graph is a graphics object made of two arrays X and Y with npoints each.
Double_t * fBuffer
[fBufferSize] entry buffer
virtual void SetTitle(const char *title)
See GetStatOverflows for more information.
Int_t fNcells
number of bins(1D), cells (2D) +U/Overflows
virtual void GetStats(Double_t *stats) const
fill the array stats from the contents of this histogram The array stats must be correctly dimensione...
Double_t fTsumw
Total Sum of weights.
Double_t fTsumw2
Total Sum of squares of weights.
Double_t fTsumwx2
Total Sum of weight*X*X.
virtual Double_t GetNormFactor() const
TDirectory * fDirectory
!Pointer to directory holding this histogram
Double_t fMaximum
Maximum value for plotting.
Int_t fDimension
!Histogram dimension (1, 2 or 3 dim)
virtual void SetContent(const Double_t *content)
Replace bin contents by the contents of array content.
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,...
virtual Double_t GetBinErrorSqUnchecked(Int_t bin) const
Double_t fMinimum
Minimum value for plotting.
virtual Double_t GetEntries() const
Return the current number of entries.
virtual void ResetStats()
Reset the statistics including the number of entries and replace with values calculates from bin cont...
Double_t fEntries
Number of entries.
virtual void SetName(const char *name)
Change the name of this histogram.
TAxis fXaxis
X axis descriptor.
TArrayD fSumw2
Array of sum of squares of weights.
virtual Int_t GetSumw2N() const
TAxis fYaxis
Y axis descriptor.
virtual Double_t GetSumOfWeights() const
Return the sum of weights excluding under/overflows.
virtual void Sumw2(Bool_t flag=kTRUE)
Create structure to store sum of squares of weights.
virtual void SetEntries(Double_t n)
Double_t fTsumwx
Total Sum of weight*X.
Helper class to represent a bin in the TH2Poly histogram.
Double_t GetXMin()
Returns the minimum value for the x coordinates of the bin.
Double_t GetYMax()
Returns the maximum value for the y coordinates of the bin.
Double_t GetArea()
Returns the area of the bin.
Double_t GetYMin()
Returns the minimum value for the y coordinates of the bin.
Bool_t IsInside(Double_t x, Double_t y) const
Return "true" if the point (x,y) is inside the bin.
TH2PolyBin()
Default constructor.
Double_t GetXMax()
Returns the maximum value for the x coordinates of the bin.
Double_t GetContent() const
void SetChanged(Bool_t flag)
Int_t GetBinNumber() const
TObject * GetPolygon() const
virtual ~TH2PolyBin()
Destructor.
2D Histogram with Polygonal Bins
Double_t Integral(Option_t *option="") const
Returns the integral of bin contents.
virtual void UpdateBinContent(Int_t bin, Double_t content)
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
void ClearBinContents()
Clears the contents of all bins in the histogram.
Double_t fOverflow[kNOverflow]
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,...
void Honeycomb(Double_t xstart, Double_t ystart, Double_t a, Int_t k, Int_t s)
Bins the histogram using a honeycomb structure.
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 GetStats(Double_t *stats) const
Fill the array stats from the contents of this histogram The array stats must be correctly dimensione...
virtual TH2PolyBin * CreateBin(TObject *poly)
Create appropriate histogram bin.
virtual Double_t RetrieveBinContent(Int_t bin) const
Raw retrieval of bin content on internal data structure see convention for numbering bins in TH1::Get...
void AddBinToPartition(TH2PolyBin *bin)
For the 3D Painter.
Int_t GetNumberOfBins() const
void SetBinContentChanged(Bool_t flag)
virtual ~TH2Poly()
Destructor.
virtual Int_t Fill(Double_t x, Double_t y)
Increment the bin containing (x,y) by 1.
Bool_t * fCompletelyInside
TH2Poly()
Default Constructor. No boundaries specified.
Bool_t IsInsideBin(Int_t binnr, Double_t x, Double_t y)
Return "true" if the point (x,y) is inside the bin of binnr.
void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
TObject * Clone(const char *newname="") const
Make a complete copy of the underlying object.
virtual void Reset(Option_t *option)
Reset this histogram: contents, errors, etc.
const char * GetBinTitle(Int_t bin) const
Returns the bin title.
void SetNewBinAdded(Bool_t flag)
void ChangePartition(Int_t n, Int_t m)
Changes the number of partition cells in the histogram.
Double_t GetMinimum() const
Returns the minimum value of the histogram.
const char * GetBinName(Int_t bin) const
Returns the bin name.
virtual Double_t GetBinContent(Int_t bin) const
Returns the content of the input bin For the overflow/underflow/sea bins:
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.
virtual Bool_t Add(const TH1 *h1, Double_t c1)
Performs the operation: this = this + c1*h1.
virtual Int_t AddBin(TObject *poly)
Adds a new bin to the histogram.
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...
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,...
virtual Double_t GetBinError(Int_t bin) const
Returns the value of error associated to bin number bin.
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...
Double_t GetMaximum() const
Returns the maximum value of the histogram.
Int_t FindBin(Double_t x, Double_t y, Double_t z=0)
Returns the bin number of the bin at the given coordinate.
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.
virtual void PutStats(Double_t *stats)
Replace current statistics with the values in array stats.
virtual void Reset(Option_t *option="")
Reset this histogram: contents, errors, etc.
virtual void Add(TObject *obj)
virtual TObject * At(Int_t idx) const
Returns the object at position idx. Returns 0 if idx is out of range.
A TMultiGraph is a collection of TGraph (or derived) objects.
virtual const char * GetTitle() const
Returns title of object.
virtual TObject * Clone(const char *newname="") const
Make a clone of an object using the Streamer facility.
virtual const char * GetName() const
Returns name of object.
Mother of all ROOT objects.
virtual const char * GetName() const
Returns name of object.
virtual const char * ClassName() const
Returns name of class to which the object belongs.
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a primitive as a C++ statement(s) on output stream "out".
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
void ToLower()
Change string to lower-case.
int CompareTo(const char *cs, ECaseCompare cmp=kExact) const
Compare a string to char *cs2.
const char * Data() const
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
static constexpr double mg
static constexpr double s
static constexpr double L
Bool_t IsInside(T xp, T yp, Int_t np, T *x, T *y)
Function which returns kTRUE if point xp,yp lies inside the polygon defined by the np points in array...
Double_t Sqrt(Double_t x)