Analysis  version 7.0 - august 2014
GEVPadContourList.hh
Go to the documentation of this file.
1 //======================================================================
2 /*! \file GEVPadContourList.hh
3  *
4  * Déclaration des méthodes de la classe GEVPadContourList.
5  */
6 //======================================================================
7 
8 #ifndef GEV_PAD_CONTOUR_LIST_HH
9 #define GEV_PAD_CONTOUR_LIST_HH
10 
11 // includes
12 #include "GListT.hh"
13 #include "GEVPadContour.hh"
14 
15 //======================================================================
16 /*! \class GEVPadContourList
17  *
18  * Classe qui définit une liste de contours à afficher dans un pad.
19  */
20 class GEVPadContourList : public GListT<GEVPadContour>
21 {
22 //----------------------------------------------------------------------
23  /*! \object_doc */
25 //----------------------------------------------------------------------
26 
27  /// Itérateur des tracés de contours
28  typedef GListIterT<GEVPadContour> iterator;
29 
30  protected:
31 
32  public:
33 
34 //----------------------------------------------------------------------
35 // CONSTRUCTEUR / AFFECTATION / DESTRUCTEUR
36 
37  // Constructeur
39 
40  // Constructeur de recopie
41  GEVPadContourList ( const GEVPadContourList & original );
42 
43  // Destructeur
44  virtual ~GEVPadContourList ( );
45 
46  // Opérateur d'affectation
47  GEVPadContourList & operator = ( const GEVPadContourList & original );
48 
49 //----------------------------------------------------------------------
50 
51  GListIterT<GEVPadContour> Find ( const RContour * ct ) const;
52  GListIterT<GEVPadContour> Find ( const string & ct_name ) const;
53 
54  virtual void ResetCounts ( ) const;
55 
56 //----------------------------------------------------------------------
57 // pour ROOT...
58  public:
59  /*! Définition à usage de ROOT... */
61 };
62 
63 
64 //======================================================================
65 #endif
GListIterT< GEVPadContour > Find(const RContour *ct) const
Definition: GEVPadContourList.cpp:58
ClassDef(GEVPadContourList, 0)
GEVPadContourList & operator=(const GEVPadContourList &original)
Definition: GEVPadContourList.cpp:41
virtual void ResetCounts() const
Definition: GEVPadContourList.cpp:106
GEVPadContourList()
Definition: GEVPadContourList.cpp:19
GObject(GEVPadContourList)
virtual ~GEVPadContourList()
Definition: GEVPadContourList.cpp:34
Definition: GEVPadContourList.hh:20
GListIterT< GEVPadContour > iterator
Itérateur des tracés de contours.
Definition: GEVPadContourList.hh:28