4 #include "KVDalitzPlot.h"
15 KVDalitzPlot::
KVDalitzPlot(const
char* name, const
char* title, Bool_t ordered, Int_t nbinsx, Double_t xlow, Double_t xup, Int_t nbinsy, Double_t ylow, Double_t yup) :
16 TH2F(name, title, nbinsx, xlow, xup, nbinsy, ylow, yup)
107 result +=
FillMe(a1, a2, a3);
108 result +=
FillMe(a2, a3, a1);
109 result +=
FillMe(a3, a1, a2);
110 result +=
FillMe(a1, a3, a2);
111 result +=
FillMe(a2, a1, a3);
112 result +=
FillMe(a3, a2, a1);
122 Double_t sum = a1 + a2 + a3;
124 Double_t a1n = a1 / sum;
125 Double_t a2n = a2 / sum;
127 Double_t xI = 1. / TMath::Sqrt(3) * (a1n + 2 * a2n);
130 return TH2F::Fill(xI, yI);
141 GetXaxis()->SetNdivisions(506);
142 GetXaxis()->SetLabelFont(42);
143 GetXaxis()->SetLabelSize(0.0);
144 GetXaxis()->SetTitleSize(0.035);
145 GetXaxis()->SetTickLength(0);
146 GetXaxis()->SetTitleFont(42);
147 GetXaxis()->SetAxisColor(0);
148 GetXaxis()->SetLabelColor(0);
150 GetYaxis()->SetNdivisions(506);
151 GetYaxis()->SetLabelFont(42);
152 GetYaxis()->SetLabelSize(0.0);
153 GetYaxis()->SetTitleSize(0.035);
154 GetYaxis()->SetTickLength(0);
155 GetYaxis()->SetTitleFont(42);
156 GetYaxis()->SetAxisColor(0);
157 GetYaxis()->SetLabelColor(0);
164 gPad->GetCanvas()->SetRightMargin(0.001);
165 gPad->GetCanvas()->SetTopMargin(0.001);
167 TCanvas* cc = gPad->GetCanvas();
168 if (cc->InheritsFrom(
"KVCanvas"))((
KVCanvas*)cc)->DisableClass(
"TLine");
173 gPad->SetBorderMode(0);
174 gPad->SetBorderSize(2);
176 gPad->SetFrameBorderMode(0);
177 gPad->SetFrameLineColor(0);
195 lb1 =
new TLine(0.5758319, 1., 0., 0.);
196 lb1->SetLineWidth(2);
198 lb2 =
new TLine(0.5758319, 1., 1.15, 0.);
199 lb2->SetLineWidth(2);
201 lb3 =
new TLine(0., 0., 1.15, 0.);
202 lb3->SetLineWidth(2);
206 gPad->SetFrameLineColor(0);
224 lc1 =
new TLine(0.575, 1, 0.575, 0.333);
225 lc1->SetLineWidth(2);
226 lc1->SetLineStyle(9);
228 lc2 =
new TLine(0, 0, 0.575, 0.333);
229 lc2->SetLineWidth(2);
230 lc2->SetLineStyle(9);
232 lc3 =
new TLine(0.575, 0.333, 1.15, 0);
233 lc3->SetLineWidth(2);
234 lc3->SetLineStyle(9);
237 gPad->SetFrameLineColor(0);
257 TH1F* h1 =
new TH1F(Form(
"distance_%s", GetName()), Form(
"distance_%s", GetName()), 150, 0, 1.5);
258 for (Int_t nx = 1; nx <= GetNbinsX(); nx += 1) {
259 Double_t xx = GetXaxis()->GetBinCenter(nx);
260 for (Int_t ny = 1; ny <= GetNbinsY(); ny += 1) {
261 Double_t yy = GetYaxis()->GetBinCenter(ny);
262 Double_t dist = TMath::Sqrt(TMath::Power(xx - 0.5, 2.) + TMath::Power(yy - 1. / 3., 2.));
263 h1->Fill(dist, GetBinContent(nx, ny));
TCanvas with mouse-controlled dynamic zoom and pan & scan.
Fill 3D observables in a dalitz plot ,.
void Draw(Option_t *opt="")
void SetShowBorder(Int_t value=1)
Int_t FillMe(Double_t a1, Double_t a2, Double_t a3)
void SetShowCenter(Int_t value=1)
KVDalitzPlot()
Default constructor.
void Copy(TObject &) const
virtual ~KVDalitzPlot()
Destructor.
Int_t FillAsDalitz(Double_t a1, Double_t a2, Double_t a3)
TH1 * GetDistanceFromCenter()