11 #include "KVIDZAGrid.h"
12 #include "KVIDZALine.h"
13 #include "KVNucleus.h"
25 const Char_t* function,
26 Double_t xmin, Double_t xmax, Int_t npar,
27 Int_t x_par, Int_t y_par)
28 :
KVTGIDZ(name, function, xmin, xmax, npar, x_par, y_par)
49 :
KVTGIDZ(name, npar, type, light, -1)
58 SetParameter(2,
fZorA);
82 Int_t za = (Int_t) Id;
98 return (
KVIDLine*)g->Add(
"ID",
"KVIDZALine");
124 Double_t xmin, Double_t xmax, Bool_t log_scale)
144 static Int_t Ziso[] = {
154 static Int_t Aiso[] = {
164 static Int_t nisotopes = 24;
165 static Int_t Zindex_start[] = { -1, 0, 3, 6, 9, 12, 15, 18, 21 };
166 static Int_t Zindex_stop[] = { -1, 2, 5, 8, 11, 14, 17, 20, 23 };
168 if (Z <= Ziso[nisotopes - 1]) {
171 for (
int iso = Zindex_start[Z]; iso <= Zindex_stop[Z]; iso++) {
176 Double_t idlab = 100. * Ziso[iso] + Aiso[iso];
180 SetParameter(
"Z", (Double_t) Ziso[iso]);
185 Double_t logXmin = TMath::Log(TMath::Max(xmin, 1.0));
187 dX = (TMath::Log(xmax) - logXmin) / (npoints - 1.);
189 dX = (xmax - xmin) / (Double_t)(npoints - 1);
191 for (Int_t i = 0; i < npoints; i++) {
195 X = TMath::Exp(logXmin + i * dX);
197 X = xmin + dX * ((Double_t) i);
204 SetParameter(
"X", X);
205 SetParameter(
"Y", Y);
207 Y += Eval((Double_t) Aiso[iso]);
209 if (!TMath::IsNaN(Y))
210 new_line->SetPoint(p_index++, X, Y);
225 Double_t idlab = 100. * Z + A;
229 SetParameter(
"Z", (Double_t) Z);
232 Double_t Y = 0., X, dX = (xmax - xmin) / (Double_t)(npoints - 1);
234 for (Int_t i = 0; i < npoints; i++) {
237 X = xmin + dX * ((Double_t) i);
244 SetParameter(
"X", X);
245 SetParameter(
"Y", Y);
247 Y += Eval((Double_t) A);
249 if (!TMath::IsNaN(Y))
250 new_line->SetPoint(p_index++, X, Y);
Abstract base class for 2D identification grids in e.g. (dE,E) maps.
Base class for lines/cuts used for particle identification in 2D data maps.
virtual void SetA(Int_t atnum)
virtual void SetZ(Int_t ztnum)
static Int_t GetAFromZ(Double_t, Char_t mt)
Base class for charged particle Z & A identfication using functionals developed by L....
void AddLineToGrid(KVIDGrid *g, Int_t ID, Int_t npoints, Double_t xmin, Double_t xmax, Bool_t logscale=kFALSE)
virtual void SetIdent(KVIDLine *, Double_t ID)
virtual KVIDLine * AddLine(KVIDGrid *)
Add a new KVIDZALine to the grid.
Abstract base class for charged particle Z identfication using functionals developed by L....
Int_t fZorA
used for Z (1) or A (0) identification
Int_t fMassFormula
mass formula used to calculate A from Z (if Z identification used)