![]() |
KaliVeda
Toolkit for HIC analysis
|
Base class for graphical cuts used in particle identification.
Definition at line 28 of file KVIDentifier.h.
#include <KVIDentifier.h>
Public Member Functions | |
KVIDentifier () | |
Default constructor. More... | |
KVIDentifier (const KVIDentifier &) | |
KVIDentifier (const TCutG &) | |
copy a TCutG More... | |
KVIDentifier (const TGraph &) | |
copy a TGraph More... | |
virtual | ~KVIDentifier () |
Destructor. More... | |
virtual Int_t | AddPointAtTheEnd () |
virtual void | ChechHierarchy (KVIDentifier *gr) |
virtual void | CloneScaleStore (Int_t newzt, Int_t newat, Double_t dy=0., Double_t sx=1., Double_t sy=1.) |
Int_t | Compare (const TObject *) const |
virtual Int_t | ContinueDrawing () |
Continue to draw an existing the line. More... | |
void | Copy (TObject &obj) const |
Copy attributes of this identifier into 'obj'. More... | |
void | CopyGraph (const TGraph &) |
Copy coordinates of points from the TGraph. More... | |
void | CopyGraph (TGraph *) |
Copy coordinates of points from the TGraph. More... | |
virtual Int_t | DecreaseNumberOfPoints () |
virtual void | Delete (Option_t *option="") |
virtual void | DrawClass () const |
virtual TObject * | DrawClone (Option_t *option="") const |
virtual void | DrawPanel () |
virtual void | Dump () const |
void | ExtendLine (bool fromBeginning, Double_t Limit, Option_t *Direction) |
void | ExtendLine (Double_t, Option_t *Direction="") |
virtual TFitResultPtr | Fit (const char *formula, Option_t *option="", Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0) |
virtual TFitResultPtr | Fit (TF1 *f1, Option_t *option="", Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0) |
virtual void | FitPanel () |
virtual Int_t | GetA () const |
virtual Int_t | GetID () const |
virtual Int_t | GetMassFormula () const |
KVIDGraph * | GetParent () const |
Get pointer to parent ID graph. More... | |
virtual Double_t | GetPID () const |
virtual Int_t | GetZ () const |
virtual Int_t | IncreaseNumberOfPoints () |
virtual Int_t | InsertPoint () |
Insert a new point at the mouse position. More... | |
virtual Int_t | InsertSmoothPoint () |
Insert a new point at the mouse X position using a smooth evaluation of the Y. More... | |
virtual void | Inspect () const |
virtual Bool_t | OnlyZId () const |
virtual void | Print (Option_t *opt) const |
virtual void | ReadAsciiFile (std::ifstream &) |
virtual Int_t | RemoveFirstPoint () |
virtual Int_t | RemoveLastPoint () |
virtual Int_t | RemovePoint () |
virtual Int_t | RemovePoint (Int_t i) |
virtual void | SaveAs (const char *filename="", Option_t *option="") const |
virtual void | Scale (Double_t sx=-1, Double_t sy=-1) |
virtual void | Scale (TF1 *sx, TF1 *sy) |
virtual void | SetA (Int_t atnum) |
virtual void | SetAandZ (Int_t atnum, Int_t ztnum) |
virtual void | SetDrawOption (Option_t *option="") |
virtual void | SetFillAttributes () |
virtual void | SetLineAttributes () |
virtual void | SetMarkerAttributes () |
virtual void | SetMassFormula (Int_t mf) |
virtual void | SetMaximum (Double_t maximum=-1111) |
virtual void | SetMinimum (Double_t minimum=-1111) |
virtual void | SetName (const char *name) |
virtual void | SetOnlyZId (Bool_t onlyz=kTRUE) |
void | SetParent (KVIDGraph *) |
Set pointer to parent ID graph. More... | |
virtual void | SetTitle (const char *title="") |
virtual void | SetZ (Int_t ztnum) |
virtual Int_t | SortPoints (Bool_t ascending=kTRUE) |
virtual Bool_t | TestPoint (Double_t, Double_t) |
virtual void | WaitForPrimitive () |
virtual void | WriteAsciiFile (std::ofstream &, const Char_t *name_prefix="") |
Private Member Functions | |
void | init () |
virtual void | ReadAsciiFile_extras (std::ifstream &) |
virtual void | SetNameFromNucleus () |
virtual void | WriteAsciiFile_extras (std::ofstream &, const Char_t *="") |
Private Attributes | |
Int_t | fA |
dummy variables used by context menu dialog boxes More... | |
Bool_t | fGridOnlyZId |
=kTRUE if parent grid has OnlyZId set More... | |
KVNucleus | fIon |
ion/nucleus corresponding to this identifier More... | |
Int_t | fMassFormula |
OPTION={GetMethod="GetMassFormula";SetMethod="SetMassFormula";Items=(0="Beta-stability", 1="VEDA mass", 2="EAL mass", 3="EAL residues", 99="2Z+1")} More... | |
KVIDGraph * | fParent |
parent identification map or grid More... | |
Int_t | fZ |
dummy variables used by context menu dialog boxes More... | |
Friends | |
class | KVIDGraph |
KVIDentifier::KVIDentifier | ( | ) |
Default constructor.
Definition at line 59 of file KVIDentifier.cpp.
KVIDentifier::KVIDentifier | ( | const KVIDentifier & | gr | ) |
copy constructor we do not copy the fParent pointer to parent grid, it is left NULL.
Definition at line 108 of file KVIDentifier.cpp.
KVIDentifier::KVIDentifier | ( | const TCutG & | gr | ) |
copy a TCutG
Definition at line 81 of file KVIDentifier.cpp.
KVIDentifier::KVIDentifier | ( | const TGraph & | gr | ) |
copy a TGraph
Definition at line 93 of file KVIDentifier.cpp.
|
virtual |
Destructor.
Definition at line 71 of file KVIDentifier.cpp.
|
virtual |
Insert a new point at the end its position is extrapolated from the two last points assuming linear evolution (yy = a*xx + bb) The KVIDentifier has to have at least 2 points
Definition at line 808 of file KVIDentifier.cpp.
|
virtual |
Check if the line has been draw from left to right or right to left In this last case, we invert the filling order
Definition at line 740 of file KVIDentifier.cpp.
|
virtual |
Create a new line from the selected one with a new Z and A (optional) this new line is scale from the selected one with a vertical sy and horizontal sx (optional) factor you need to undraw and draw the grid to see its implementation
Definition at line 531 of file KVIDentifier.cpp.
Int_t KVIDentifier::Compare | ( | const TObject * | ) | const |
Dummy method used for sorting, can be redefined in more specific implementations. A priori we don't know how to "order" the identification cuts.
Definition at line 284 of file KVIDentifier.cpp.
|
virtual |
Continue to draw an existing the line.
Definition at line 678 of file KVIDentifier.cpp.
void KVIDentifier::Copy | ( | TObject & | obj | ) | const |
Copy attributes of this identifier into 'obj'.
Definition at line 123 of file KVIDentifier.cpp.
void KVIDentifier::CopyGraph | ( | const TGraph & | graph | ) |
Copy coordinates of points from the TGraph.
Definition at line 186 of file KVIDentifier.cpp.
void KVIDentifier::CopyGraph | ( | TGraph * | graph | ) |
Copy coordinates of points from the TGraph.
Definition at line 167 of file KVIDentifier.cpp.
|
virtual |
Definition at line 905 of file KVIDentifier.cpp.
|
inlinevirtual |
-— The following redeclarations are here just to remove the MENU tag which -— is present in TObject.h, to stop these methods appearing in the ID line context menus
Definition at line 188 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 192 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 196 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 160 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 201 of file KVIDentifier.h.
void KVIDentifier::ExtendLine | ( | bool | fromBeginning, |
Double_t | Limit, | ||
Option_t * | Direction | ||
) |
Add a straight-line segment at the end or the beginning of the line depending on fromBeginning.
Definition at line 462 of file KVIDentifier.cpp.
void KVIDentifier::ExtendLine | ( | Double_t | Limit, |
Option_t * | Direction = "" |
||
) |
Right-clicking an identifier and selecting this method from the context menu allows to add a straight-line segment at the end or the beginning of the line (whichever is closest to the mouse).
Definition at line 425 of file KVIDentifier.cpp.
|
inlinevirtual |
Definition at line 165 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 169 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 156 of file KVIDentifier.h.
|
inlinevirtual |
Reimplemented in KVIDCutLine, and KVIDCutContour.
Definition at line 75 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 71 of file KVIDentifier.h.
|
inlinevirtual |
Reimplemented in KVIDCutLine, and KVIDCutContour.
Definition at line 115 of file KVIDentifier.h.
KVIDGraph * KVIDentifier::GetParent | ( | ) | const |
Get pointer to parent ID graph.
Definition at line 144 of file KVIDentifier.cpp.
|
virtual |
Definition at line 951 of file KVIDentifier.cpp.
|
inlinevirtual |
Reimplemented in KVIDCutLine, and KVIDCutContour.
Definition at line 79 of file KVIDentifier.h.
|
virtual |
Definition at line 870 of file KVIDentifier.cpp.
|
private |
Default initialisations We set marker size and style for the underlying TGraph, this way a small circle is drawn at each point. Also SetEditable(kFALSE) is used to stop it being modified using the mouse. SetMarkerStyle(kCircle);
Definition at line 38 of file KVIDentifier.cpp.
|
virtual |
Insert a new point at the mouse position.
Reimplemented in KVIDContour.
Definition at line 573 of file KVIDentifier.cpp.
|
virtual |
Insert a new point at the mouse X position using a smooth evaluation of the Y.
Definition at line 640 of file KVIDentifier.cpp.
|
inlinevirtual |
Definition at line 205 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 103 of file KVIDentifier.h.
|
virtual |
Print out for identification cut The optional "opt" string, if given, is printed in parentheses after the line's name This is used by KVIDGraph in order to show which are "ID" cuts and which are "OK" cuts (i.e. used to define an identifiable area in a data map).
Reimplemented in KVIDZALine, and KVIDCsIRLLine.
Definition at line 301 of file KVIDentifier.cpp.
|
virtual |
Read coordinates of identifier in file buffer stream Format is :
number_of_points x1 y1 x2 y2 ... etc. etc.
Definition at line 256 of file KVIDentifier.cpp.
|
inlineprivatevirtual |
Does nothing. Can be overridden in child classes in order to read any extra information in between the name of the object and the number of points.
Reimplemented in KVIDZALine, KVIDZAContour, KVIDCutLine, and KVIDCutContour.
Definition at line 46 of file KVIDentifier.h.
|
virtual |
Remove the first point The KVIDentifier has to have at least 2 points
Definition at line 835 of file KVIDentifier.cpp.
|
virtual |
Remove the first point The KVIDentifier has to have at least 2 points
Definition at line 854 of file KVIDentifier.cpp.
|
virtual |
Definition at line 772 of file KVIDentifier.cpp.
|
inlinevirtual |
Definition at line 240 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 209 of file KVIDentifier.h.
|
virtual |
Scale the coordinates of every point of the cut according to X_0 —> sx*X_0 Y_0 —> sy*Y_0 Default argument value '-1' means leave coordinate unchanged
Definition at line 321 of file KVIDentifier.cpp.
|
virtual |
Apply to the coordinates of every point the transformation X_0 —> sx(X_0,Y_0) Y_0 —> sy(X_0,Y_0) if sx & sy are two-dimensional functions (inherits from TF2), otherwise we apply the transformation X_0 —> sx(X_0) Y_0 —> sy(Y_0) for sx & sy one-dimensionsal (TF1) functions.
Definition at line 350 of file KVIDentifier.cpp.
|
inlinevirtual |
Reimplemented in KVIDCutLine, and KVIDCutContour.
Definition at line 88 of file KVIDentifier.h.
|
inlinevirtual |
Reimplemented in KVIDCutLine, and KVIDCutContour.
Definition at line 93 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 213 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 221 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 217 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 225 of file KVIDentifier.h.
|
inlinevirtual |
Reimplemented in KVIDCutLine, and KVIDCutContour.
Definition at line 107 of file KVIDentifier.h.
|
inlinevirtual |
-— The following redeclarations are here just to remove the MENU tag which -— is present in TGraph.h, to stop these methods appearing in the ID line context menus
Definition at line 144 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 148 of file KVIDentifier.h.
|
virtual |
-— The following redeclarations are here just to remove the MENU tag which -— is present in TNamed.h, to stop these methods appearing in the ID line context menus
Reimplemented in KVIDZALine, KVIDCutLine, and KVIDCutContour.
Definition at line 23 of file KVIDentifier.cpp.
|
inlineprivatevirtual |
Definition at line 47 of file KVIDentifier.h.
|
inlinevirtual |
Definition at line 99 of file KVIDentifier.h.
void KVIDentifier::SetParent | ( | KVIDGraph * | p | ) |
Set pointer to parent ID graph.
Definition at line 155 of file KVIDentifier.cpp.
|
inlinevirtual |
Definition at line 152 of file KVIDentifier.h.
|
inlinevirtual |
Reimplemented in KVIDCutLine, and KVIDCutContour.
Definition at line 83 of file KVIDentifier.h.
|
virtual |
Definition at line 940 of file KVIDentifier.cpp.
|
inlinevirtual |
Abstract method, should be overridden in child classes. Used to test whether a point (x,y) in the ID map is identifiable.
Reimplemented in KVIDCutLine, and KVIDCutContour.
Definition at line 120 of file KVIDentifier.h.
|
virtual |
Method used to draw a new identifier in the active pad Override in child classes so that gPad->WaitPrimitive has correct arguments
Reimplemented in KVIDLine.
Definition at line 398 of file KVIDentifier.cpp.
|
virtual |
Write name and coordinates of identifier in file buffer stream Optional string name_prefix will be written just in front of the name of the object. Format is :
+classname name_prefix:name_of_object number_of_points x1 y1 x2 y2 ... etc. etc.
Definition at line 215 of file KVIDentifier.cpp.
|
inlineprivatevirtual |
Does nothing. Can be overridden in child classes in order to write any extra information in between the name of the object and the number of points.
Reimplemented in KVIDZALine, KVIDZAContour, KVIDCutLine, and KVIDCutContour.
Definition at line 42 of file KVIDentifier.h.
|
friend |
Definition at line 29 of file KVIDentifier.h.
|
private |
dummy variables used by context menu dialog boxes
Definition at line 37 of file KVIDentifier.h.
|
private |
=kTRUE if parent grid has OnlyZId set
Definition at line 34 of file KVIDentifier.h.
|
private |
ion/nucleus corresponding to this identifier
Definition at line 33 of file KVIDentifier.h.
|
private |
OPTION={GetMethod="GetMassFormula";SetMethod="SetMassFormula";Items=(0="Beta-stability", 1="VEDA mass", 2="EAL mass", 3="EAL residues", 99="2Z+1")}
Definition at line 38 of file KVIDentifier.h.
|
private |
parent identification map or grid
Definition at line 32 of file KVIDentifier.h.
|
private |
dummy variables used by context menu dialog boxes
Definition at line 36 of file KVIDentifier.h.