4 #include "KVZALineFinder.h"
5 #include "KVIdentificationResult.h"
6 #include "KVSpiderLine.h"
8 #include "KVIDZALine.h"
9 #include "KVIDGridEditor.h"
28 fPoints->SetMarkerStyle(21);
31 SetAList(
"1,4,7,9,11,12,14,16,19,21,23,25,27,29,31,34,37,40,41");
120 Int_t zbins = (Int_t)(zmax - zmin) * nZbin;
122 Double_t emin =
fHisto->GetXaxis()->GetXmin();
123 Double_t emax =
fHisto->GetXaxis()->GetXmax();
124 Int_t ebins =
fHisto->GetXaxis()->GetNbins();
127 fLinearHisto =
new TH2F(
"fLinearHisto",
"fLinearHisto", ebins, emin, emax, zbins, zmin, zmax);
130 fConvertHisto =
new TH2F(
"fConvertHisto",
"fConvertHisto", ebins, emin, emax, zbins, zmin, zmax);
134 Int_t events_read = 0;
135 for (
int i = 1; i <=
fHisto->GetNbinsX(); i++) {
136 for (
int j = 1; j <=
fHisto->GetNbinsY(); j++) {
137 Stat_t poids =
fHisto->GetBinContent(i, j);
138 if (poids == 0)
continue;
140 Axis_t x0 =
fHisto->GetXaxis()->GetBinCenter(i);
141 Axis_t y0 =
fHisto->GetYaxis()->GetBinCenter(j);
142 Axis_t wx =
fHisto->GetXaxis()->GetBinWidth(i);
143 Axis_t wy =
fHisto->GetYaxis()->GetBinWidth(j);
146 Int_t kmax = (Int_t) TMath::Min(20., poids);
147 Double_t weight = (kmax == 20 ? poids / 20. : 1.);
148 for (
int k = 0; k < kmax; k++) {
149 x = gRandom->Uniform(x0 - .5 * wx, x0 + .5 * wx);
150 y = gRandom->Uniform(y0 - .5 * wy, y0 + .5 * wy);
153 Float_t PID = idr->
PID;
154 if (idr->
Aident) PID = (idr->
Z + 0.1 * (idr->
PID - 2. * idr->
Z));
158 events_read += (Int_t) poids;
160 gSystem->ProcessEvents();
164 Float_t PID = idr->
PID;
165 if (idr->
Aident) PID = (idr->
Z + 0.1 * (idr->
PID - 2. * idr->
Z));
201 Int_t width = (Int_t)((xbmax - xbmin) * 1.0 / 100.);
204 Int_t widthmax = (Int_t)((xbmax - xbmin) * 1.0 / 30.);
214 for (
int xx = xbmin; xx < xbmax; xx += width) {
215 projey =
fLinearHisto->ProjectionY(
"ProjectionAfterLin", TMath::Max(xx - width / 2, xbmin), xx + width / 2);
217 Double_t yline = projey->GetMean();
218 if ((yline > zz - 0.5) && (yline < zz + 0.5)) {
219 if (i == 0) lasty = yline;
220 if (TMath::Abs(yline - lasty) < 0.2) {
221 TheLine->SetPoint(i, xline, yline);
224 if (width < widthmax) width *= 1.2;
259 TH1* tmph =
fLinearHisto->ProjectionX(Form(
"tmph%d", zz));
260 Int_t startBin = (Int_t)(tmph->GetMaximumBin() * 0.95);
265 projey =
fLinearHisto->ProjectionY(
"ProjectionAfterLin", startBin - width * 3, startBin + width * 3);
266 int nfound =
fSpectrum.Search(projey, 0.05,
"goff", 0.0001);
267 Info(
"FindALine",
"%d peack found...", nfound);
268 #if ROOT_VERSION_CODE > ROOT_VERSION(5,99,01)
269 Double_t* xpeaks =
fSpectrum.GetPositionX();
270 Double_t* ypeaks =
fSpectrum.GetPositionY();
272 Float_t* xpeaks =
fSpectrum.GetPositionX();
273 Float_t* ypeaks =
fSpectrum.GetPositionY();
275 for (
int p = 0; p < nfound; p++) {
277 if (ypeaks[p] < 10)
continue;
278 Double_t xline =
fLinearHisto->GetXaxis()->GetBinCenter(startBin);
279 Double_t yline = xpeaks[p];
283 Info(
"FindALine",
"line found but I don't know why...");
284 if (TMath::Abs(tmp->
GetY() - yline) < 0.05)
continue;
292 if (projey)
delete projey;
294 else Error(
"FindALine",
"not starting bin indicated...");
297 Int_t nLines = Lines.GetSize();
299 for (
int xx = startBin - width; xx > xbmin; xx -= width) {
300 projey =
fLinearHisto->ProjectionY(
"ProjectionAfterLin", xx - width / 2, xx + width / 2);
301 int nfound =
fSpectrum.Search(projey, 0.05,
"goff", 0.02);
302 #if ROOT_VERSION_CODE > ROOT_VERSION(5,99,01)
303 Double_t* xpeaks =
fSpectrum.GetPositionX();
304 Double_t* ypeaks =
fSpectrum.GetPositionY();
306 Float_t* xpeaks =
fSpectrum.GetPositionX();
307 Float_t* ypeaks =
fSpectrum.GetPositionY();
309 for (
int p = 0; p < nfound; p++) {
310 if (p >= nLines + 1)
continue;
311 if (ypeaks[p] < 5)
continue;
312 Double_t xline =
fLinearHisto->GetXaxis()->GetBinCenter(xx);
313 Double_t yline = xpeaks[p];
317 if ((TMath::Abs(tmp->
GetY() - yline) < 0.05))
break;
320 if ((TMath::Abs(tmp->
GetX() - xline) < 10 * width)) tmp->
AddPoint(xline, yline);
323 if (projey)
delete projey;
326 TIter nextli(&Lines);
330 for (
int xx = startBin + width; xx <= xbmax - width / 2; xx += width) {
331 projey =
fLinearHisto->ProjectionY(
"ProjectionAfterLin", xx - width / 2, xx + width / 2);
332 int nfound =
fSpectrum.Search(projey, 0.05,
"goff", 0.02);
333 #if ROOT_VERSION_CODE > ROOT_VERSION(5,99,01)
334 Double_t* xpeaks =
fSpectrum.GetPositionX();
335 Double_t* ypeaks =
fSpectrum.GetPositionY();
337 Float_t* xpeaks =
fSpectrum.GetPositionX();
338 Float_t* ypeaks =
fSpectrum.GetPositionY();
340 for (
int p = 0; p < nfound; p++) {
341 if (p >= nLines + 1)
continue;
342 if (ypeaks[p] < 5)
continue;
343 Double_t xline =
fLinearHisto->GetXaxis()->GetBinCenter(xx);
344 Double_t yline = xpeaks[p];
348 if (TMath::Abs(tmp->
GetY() - yline) < 0.05)
break;
351 if ((TMath::Abs(tmp->
GetX() - xline) < 10 * width)) tmp->
AddPoint(xline, yline);
354 if (projey)
delete projey;
366 int nn = Lines->GetSize();
371 double* yy =
new double[nn];
372 Int_t* ii =
new int[nn];
373 for (
int i = 0; i < nn; i++) yy[i] = ((
KVSpiderLine*)Lines->At(i))->GetY(0);
376 TMath::Sort(nn, yy, ii, kFALSE);
378 for (
int i = 0; i < nn; i++) {
379 if (ii[i] == 0) iMostProb = i;
382 Int_t aMostProb =
fAList.at(zz - 1);
386 for (
int i = 0; i < nn; i++) {
387 Int_t aa = aMostProb - (iMostProb - i);
415 if ((spline->
GetN() > 5)) {
419 for (
int i = 0; i < spline->
GetN(); i++) {
427 if ((i > spline->
GetN() - 3) && (std::abs(y - TheLine->GetY()[TheLine->GetN() - 1]) > 20))
continue;
428 TheLine->SetPoint(i, spline->
GetX(i), y);
432 if (!TheZLine)
continue;
433 Double_t x0 = TheLine->GetX()[0];
434 Double_t x0ref = TheZLine->GetX()[0];
435 Double_t x1ref = TheZLine->GetX()[TheZLine->GetN() - 1];
436 if ((x0 > 2.*x0ref) && (x0 < 0.15 * x1ref)) {
437 Double_t dy = (TheLine->GetY()[0]) - (TheZLine->Eval(x0));
438 for (
int i = 0; i <= TheZLine->GetN(); i++) {
439 Double_t x = TheZLine->GetX()[i];
440 Double_t y = dy + TheZLine->GetY()[i];
442 TheLine->SetPoint(TheLine->GetN(), x, y);
444 TheLine->Sort(&TGraph::CompareX, kTRUE);
447 Double_t x1 = TheLine->GetX()[TheLine->GetN() - 1];
449 Double_t dy = (TheLine->GetY()[TheLine->GetN() - 1]) - (TheZLine->Eval(x1));
450 for (
int i = TheZLine->GetN() - 1; i > 0; i--) {
451 Double_t x = TheZLine->GetX()[i];
452 Double_t y = dy + TheZLine->GetY()[i];
454 TheLine->SetPoint(TheLine->GetN(), x, y);
456 TheLine->Sort(&TGraph::CompareX, kTRUE);
526 Info(
"ProcessIdentification",
"histo linearization using Z grid...");
528 Info(
"ProcessIdentification",
"linearization done!");
534 for (
int z = zmin; z <= zmax; z++) {
541 gSystem->ProcessEvents();
546 if (zmax >= zmGrid)
return;
548 for (
int z = zmax + 1; z <= zmGrid; z++) {
551 gSystem->ProcessEvents();
Base class for KaliVeda framework.
virtual void Copy(TObject &) const
Make a copy of this object.
void Add(TString, KVIDentifier *)
virtual void SetVarX(const char *v)
const TList * GetIDTelescopes() const
virtual void SetName(const char *name)
Int_t GetMassFormula() const
KVIDentifier * GetIdentifier(Int_t Z, Int_t A) const
virtual Bool_t IsIdentifiable(Double_t, Double_t, TString *rejected_by=nullptr) const
virtual void SetVarY(const char *v)
const Char_t * GetName() const
void AddIDTelescopes(const TList *)
Associate this graph with all ID telescopes in list.
const KVList * GetIdentifiers() const
void SetGrid(KVIDGraph *gg, Bool_t histo=true)
void StartViewer()
Close();.
Base class for lines/cuts used for particle identification in 2D data maps.
void GetStartPoint(Double_t &x, Double_t &y) const
void GetEndPoint(Double_t &x, Double_t &y) const
Identification grid with lines corresponding to different nuclear isotopes (KVIDZALine)
virtual void Identify(Double_t x, Double_t y, KVIdentificationResult *) const
Base class for identification ridge lines corresponding to different nuclear species.
Base class for graphical cuts used in particle identification.
virtual Int_t GetZ() const
virtual void SetA(Int_t atnum)
virtual void SetZ(Int_t ztnum)
Full result of one attempted particle identification.
Bool_t Aident
= kTRUE if A of particle established
Double_t PID
= "real" Z if Zident==kTRUE and Aident==kFALSE, "real" A if Zident==Aident==kTRUE
Int_t Z
Z of particle found (if Zident==kTRUE)
Description of properties and kinematics of atomic nuclei.
void SetZandA(Int_t z, Int_t a)
Set atomic number and mass number.
static Int_t GetAFromZ(Double_t, Char_t mt)
Double_t GetLifeTime(Int_t z=-1, Int_t a=-1) const
Strings used to represent a set of ranges of values.
virtual TObject * Last() const
virtual TObject * First() const
Part of Spider Identification.
void Sort(bool ascending_=true)
double GetX(int n_) const
double GetY(int n_) const
bool AddPoint(double x_, double y_, bool test_=false, int n_=-1)
(try to) find mass lines from charge lines
void FindALine(Int_t zz, Int_t width=10)
TH2 * LinearizeHisto(Int_t nZbin=40)
void IncrementLinear(Float_t x)
void Copy(TObject &) const
std::vector< int > fAList
virtual ~KVZALineFinder()
Destructor.
void SetAList(const char *Alist)
void SortLines(TList *Lines)
void Increment(Float_t x)
void ProcessIdentification(Int_t zmin=-1, Int_t zmax=-1)
KVZALineFinder(KVIDZAGrid *gg, TH2 *hh)
constructor
KVIDZAGrid * fGeneratedGrid