Analysis  version 7.0 - august 2014
GEVParamDisplayer.hh
Go to the documentation of this file.
1 //======================================================================
2 /*! \file GEVParamDisplayer.hh
3  *
4  * Déclaration de la clase GEVParamDisplayer.
5  */
6 //======================================================================
7 
8 #ifndef GEV_PARAM_DISPLAYER_HH
9 #define GEV_PARAM_DISPLAYER_HH
10 
11 #include "EventManager.hh"
12 #include "RGTextMessageRequester.hh"
13 
14 
15 /*! class GEVParamDisplayer
16  *
17  * Classe définissant une interface graphique affichant la liste des
18  * paramètres de l'événement.
19  *
20  */
21 class GEVParamDisplayer : public RGTextMessageRequester
22 {
23 //----------------------------------------------------------------------
24  /*! \object_doc */
26 //----------------------------------------------------------------------
27 
28  protected:
29  const EventManager * evt_mgr; ///< Pointeur sur le gestionnaire d'événements
30 
31  static string file_name; ///< nom de fichier de paramètres (texte)
32 
33  public:
34  // Constructeur
35  GEVParamDisplayer ( const EventManager * mgr,
36  const TGWindow * mw = NULL );
37 
38  protected:
39  // Constructeur de recopie
40  GEVParamDisplayer ( const GEVParamDisplayer & req );
41 
42  public:
43  // Destructeur
44  virtual ~GEVParamDisplayer();
45 
46 
47  virtual void Button ( Int_t n );
48 
49  /*! Pour encapsulation dans ROOT.
50  */
52 };
53 
54 #endif
55 
Definition: GEVParamDisplayer.hh:21
virtual ~GEVParamDisplayer()
Definition: GEVParamDisplayer.cpp:85
ClassDef(GEVParamDisplayer, 0)
GObject(GEVParamDisplayer)
static string file_name
nom de fichier de paramètres (texte)
Definition: GEVParamDisplayer.hh:31
virtual void Button(Int_t n)
Definition: GEVParamDisplayer.cpp:98
GEVParamDisplayer(const EventManager *mgr, const TGWindow *mw=NULL)
Definition: GEVParamDisplayer.cpp:38
Definition: EventManager.hh:59
const EventManager * evt_mgr
Pointeur sur le gestionnaire d&#39;événements.
Definition: GEVParamDisplayer.hh:29