KaliVeda
Toolkit for HIC analysis
KVNuclearChart.h
1 
4 #ifndef __KVNUCLEARCHART_H
5 #define __KVNUCLEARCHART_H
6 
7 #include "KVBase.h"
8 #include "TH2.h"
9 #include "KVList.h"
10 #include "KVNucleus.h"
11 #include "TPaveText.h"
12 #include "KVCanvas.h"
13 #include "KVNumberList.h"
14 
15 #include <TVirtualPad.h>
16 
24 class KVNuclearChart : public KVBase {
25 
26 protected:
27  Int_t fNmin;
28  Int_t fNmax;
29  Int_t fZmin;
30  Int_t fZmax;
31 
32  Bool_t fOwnHisto;
33 
34  Int_t fNm[7];
35  Double_t fZmMin[7], fZmMax[7], fNmMin[7], fNmMax[7];
36 
37  Int_t fShowSymbol;
39 
40  TH2* fHisto;
45  TPaveText* fSymbol;
46  TPaveText* fInfo;
48  TVirtualPad* fPad;
50 
51  void update_pad()
52  {
53  if (fPad) {
54  fPad->Modified();
55  fPad->Update();
56  }
57  }
58 
59 public:
61  KVNuclearChart(Int_t nMin = 0, Int_t nMax = -1, Int_t zMin = 0, Int_t zMax = -1, Double_t life = 1.e-06);
63  virtual ~KVNuclearChart();
64  void Copy(TObject&) const;
65 
66  void Draw(Option_t* option = "");
67  void ShowNucleusInfo(KVNucleus* nuc);
68  void ShowLevelScheme(const char* decays); // *MENU*
70  {
71  fCurrentNuc = nuc;
72  }
73 
74  Int_t GetShowSymbol()
75  {
76  return fShowSymbol;
77  }
78  void SetShowSymbol(Int_t value = 1); // *TOGGLE*
79  void ShowSymbol();
80  void ShowBoxSymbols(Bool_t on = kTRUE);
81  void SetBoxSymbolSize(Float_t size = 0.02);
82 
84  {
85  return fShowMagicNumbers;
86  }
87  void SetShowMagicNumbers(Int_t value = 1); // *TOGGLE*
88  void ShowMagicNumbers();
89 
91  {
92  return fCanvas;
93  }
94 
95  virtual void Delete(Option_t* option = "")
96  {
97  KVBase::Delete(option);
98  }
99  virtual void DrawClass() const
100  {
101  KVBase::DrawClass();
102  }
103  virtual TObject* DrawClone(Option_t* option = "") const
104  {
105  return KVBase::DrawClone(option);
106  }
107  virtual void Dump() const
108  {
109  KVBase::Dump();
110  }
111 
112  virtual void Inspect() const
113  {
114  KVBase::Inspect();
115  }
116  virtual void SaveAs(const char* filename = "", Option_t* option = "") const
117  {
118  KVBase::SaveAs(filename, option);
119  }
120  virtual void SetDrawOption(Option_t* option = "")
121  {
122  KVBase::SetDrawOption(option);
123  }
124 
125  virtual void SetTitle(const char* title)
126  {
127  KVBase::SetTitle(title);
128  }
129  virtual void SetName(const char* name)
130  {
131  KVBase::SetName(name);
132  }
133 
134 
135  ClassDef(KVNuclearChart, 1) //Used to draw nuclear chart
136 };
137 
138 #endif
Base class for KaliVeda framework.
Definition: KVBase.h:142
TCanvas with mouse-controlled dynamic zoom and pan & scan.
Definition: KVCanvas.h:54
Extended TList class which owns its objects by default.
Definition: KVList.h:28
Used to draw nuclear chart.
virtual void Dump() const
virtual ~KVNuclearChart()
virtual void SetTitle(const char *title)
TVirtualPad * fPad
void SetCurrentNuc(KVNucleus *nuc)
virtual void SaveAs(const char *filename="", Option_t *option="") const
KVCanvas * GetCanvas()
void ShowNucleusInfo(KVNucleus *nuc)
TPaveText * fInfo
KVList fNucleusBoxList
Int_t GetShowSymbol()
virtual void DrawClass() const
Double_t fZmMin[7]
Int_t GetShowMagicNumbers()
virtual void Delete(Option_t *option="")
KVNucleus * fCurrentNuc
void ShowLevelScheme(const char *decays)
Double_t fNmMax[7]
void SetShowMagicNumbers(Int_t value=1)
virtual void Inspect() const
void Copy(TObject &) const
KVCanvas * fCanvas
virtual TObject * DrawClone(Option_t *option="") const
Int_t fShowMagicNumbers
TPaveText * fSymbol
Double_t fNmMin[7]
KVNucleus * fShownNucleus
virtual void SetDrawOption(Option_t *option="")
void SetBoxSymbolSize(Float_t size=0.02)
KVNuclearChart(Int_t nMin=0, Int_t nMax=-1, Int_t zMin=0, Int_t zMax=-1, Double_t life=1.e-06)
KVNuclearChart();.
void ShowBoxSymbols(Bool_t on=kTRUE)
draw name of isotope in each box
void SetShowSymbol(Int_t value=1)
void Draw(Option_t *option="")
Double_t fZmMax[7]
virtual void SetName(const char *name)
Description of properties and kinematics of atomic nuclei.
Definition: KVNucleus.h:126