GET library
GETCfgAsAd.hh
Go to the documentation of this file.
1 //======================================================================
2 /*! \file GETCfgAsAd.hh
3  *
4  * Include file for the GETCfgAsAd class.
5  */
6 //======================================================================
7 
8 #ifndef GET_CFG_ASAD_HH
9 #define GET_CFG_ASAD_HH
10 
11 //----------------------------------------------------------------------
12 #include "GETCommon.hh"
13 #include "GETCfgTools.hh"
14 #include "GETCfgAsAdGenerator.hh"
15 #include "GETCfgAGet.hh"
16 
17 class GETAsAd;
18 
19 //======================================================================
20 /*! \class GETCfgAsAd
21  *
22  * Setup configuration information:
23  * - for Reduced CoBo system
24  * - for full GET system (not yet ready)
25  *
26  */
28 {
29  //------------------------------------------------------------
30  /*! \object_doc */
32  //------------------------------------------------------------
33 
34  public:
35  GETAsAd * parent; ///< GET object the configuration is related to
36  GETCfgAGet ** cfg_aget; ///< Array of pointers to AGet configurations
37  u_int cfg_aget_num; ///< Number of AGet chips configurations
38 
39  // ---- Control ----
40  bool is_active; ///< Whether the AsAd board is active and should be configured.
41 
42 
43  public:
44  //----------------------------------------------------------
45  /** @name Constructors, affectation, destructor */
46  //@{
47  GETCfgAsAd ( GETAsAd * p = NULL );
48  virtual ~GETCfgAsAd ( );
49  //@}
50 
51  //----------------------------------------------------------
52  /** @name GET architecture related functions */
53  //@{
54  virtual string GetFullId ( ) const;
55 
56  GETAsAd * GetParentAsAd ( ) const; // inline
57  GETCfgAGet * GetAGetConfig ( u_int i ) const; // inline
58  //@}
59 
60  //----------------------------------------------------------
61  /** @name XML configuration functions */
62  //@{
63  int GetXMLConfig ( DOMNode * node );
64  int GetXMLConfigGenerator ( DOMNode * node );
65  //@}
66 
67  //----------------------------------------------------------
68  /** @name ROOT related functions */
69  //@{
70  public:
71 
72  /*! for use within ROOT.*/
74  //@}
75 };
76 
77 
78 //----------------------------------------------------------------------
79 // Inline functions
80 #include "icc/GETCfgAsAd.icc"
81 
82 
83 //======================================================================
84 #endif
ClassDef(GETCfgAsAd, 0)
Definition: GETAsAd.hh:32
GETAsAd * GetParentAsAd() const
Definition: GETCfgAsAd.icc:13
int GetXMLConfig(DOMNode *node)
Definition: GETCfgAsAd.cpp:89
GETCfgAGet * GetAGetConfig(u_int i) const
Definition: GETCfgAsAd.icc:20
Definition: GETCfgAsAdGenerator.hh:21
Definition: GETCfgAGet.hh:24
GObject(GETCfgAsAd)
virtual ~GETCfgAsAd()
Definition: GETCfgAsAd.cpp:52
GETAsAd * parent
GET object the configuration is related to.
Definition: GETCfgAsAd.hh:35
int GetXMLConfigGenerator(DOMNode *node)
Definition: GETCfgAsAd.cpp:196
Definition: GETCfgAsAd.hh:27
virtual string GetFullId() const
Definition: GETCfgAsAd.cpp:77
GETCfgAGet ** cfg_aget
Array of pointers to AGet configurations.
Definition: GETCfgAsAd.hh:36
GETCfgAsAd(GETAsAd *p=NULL)
Definition: GETCfgAsAd.cpp:17
u_int cfg_aget_num
Number of AGet chips configurations.
Definition: GETCfgAsAd.hh:37
bool is_active
Whether the AsAd board is active and should be configured.
Definition: GETCfgAsAd.hh:40