KaliVeda
Toolkit for HIC analysis
KVZAFinderDialog.h
1 
4 #ifndef __KVZAFINDERDIALOG_H
5 #define __KVZAFINDERDIALOG_H
6 
7 #include "RQ_OBJECT.h"
8 
9 #include "TGFrame.h"
10 #include "TGMenu.h"
11 #include "TGListBox.h"
12 #include "TGButtonGroup.h"
13 #include "TGButton.h"
14 #include "KVIDGraph.h"
15 #include "RQ_OBJECT.h"
16 #include <TGComboBox.h>
17 #include <TGLabel.h>
18 #include <TGNumberEntry.h>
19 #include <TGTextEntry.h>
20 #include <TGProgressBar.h>
21 #include "KVCanvas.h"
22 
31  RQ_OBJECT("KVZAFinderDialog")
32 
33 protected:
34  KVIDGraph* fGrid;
35  TH2* fHisto;
36 
37  static Int_t fZmin;
38  static Int_t fZmax;
39  static TString fAList;
40  static Int_t fBinsByZ;
41  static Int_t fStepsByLine;
42 
43  TGTransientFrame* fMain;
44 
45  TGGroupFrame* fInitFrame;
46  TGHorizontalFrame* fZpFrame;
47  TGLabel* fZminLabel;
48  TGNumberEntry* fZminEntry;
49  TGLabel* fZmaxLabel;
50  TGNumberEntry* fZmaxEntry;
51  TGLabel* fZbinLabel;
52  TGNumberEntry* fZbinEntry;
53  TGHorizontalFrame* fApFrame;
54  TGLabel* fALabel;
55  TGTextEntry* fAEntry;
56 
57  TGGroupFrame* fLinearFrame;
58  TGHProgressBar* fLinearBar;
59  TGGroupFrame* fProgressFrame;
60  TGHProgressBar* fProgressBar;
61 
62  TGHorizontalFrame* fButtonsFrame;
63  TGTextButton* fTestButton;
64  TGTextButton* fCloseButton;
65 
66 public:
67  KVZAFinderDialog(KVIDGraph* g = 0, TH2* data_histo = 0);
69  virtual ~KVZAFinderDialog();
70 
71  void DoClose();
72  void CloseWindow();
73  void ProcessIdentification();
74 
75  ClassDef(KVZAFinderDialog, 1) //dialog box for KVZALineFinder classe
76 };
77 
78 #endif
int Int_t
#define RQ_OBJECT(sender_class)
#define ClassDef(name, id)
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t g
Base class for particle identification in a 2D map.
Definition: KVIDGraph.h:31
Dialog box for KVZALineFinder class.
virtual ~KVZAFinderDialog()
Destructor.
KVZAFinderDialog(KVIDGraph *g=0, TH2 *data_histo=0)