QwAnalysis
nodenode.h
Go to the documentation of this file.
1 /*------------------------------------------------------------------------*//*!
2 
3  \file nodenode.h
4  \ingroup QwTracking
5 
6  \author Wolfgang Wander <wwc@hermes.desy.de>
7  \author Burnham Stokes <bestokes@jlab.org>
8  \author Wouter Deconinck <wdconinc@mit.edu>
9 
10  \date 2009-09-04 18:06:23
11 
12  \brief Definition of nodenode which links treenodes to their siblings
13 
14 *//*-------------------------------------------------------------------------*/
15 
16 #ifndef QWTRACKINGNODENODE_H
17 #define QWTRACKINGNODENODE_H
18 
19 // Qweak headers
20 #include "QwLog.h"
21 #include "treenode.h"
22 #include "QwObjectCounter.h"
23 
24 namespace QwTracking {
25 
26 // Forward declaration due to cyclic dependency
27 class treenode;
28 
29 /**
30  * \class nodenode
31  *
32  * \ingroup QwTracking
33  *
34  * \brief A nodenode is used as a pointer which links treenodes to their siblings.
35  *
36  * Together with the treenode, any tree pattern can be
37  * related to any of its family members. This allows the
38  * tree search algorithms to quickly move through the database
39  * to identify matching patterns.
40  *
41  */
42 class nodenode: public QwObjectCounter<nodenode> {
43 
44  public:
45 
46  /// \brief Constructor with next and tree pointers
47  nodenode(nodenode* next = 0, treenode* tree = 0);
48  /// \brief Destructor
49  ~nodenode();
50 
51  private:
52 
53  /// Pointer to the next node
55  /// Pointer to the next tree
57 
58  public:
59 
60  /// Set the tree
61  void SetTree(treenode* tree) {
62  fTree = tree;
63  if (! tree) QwError << "Trying to assign null tree pointer" << QwLog::endl;
64  };
65  /// Get the tree
66  treenode* GetTree() const { return fTree; };
67 
68  /// Set the next node
70  if (next == this) {
71  QwError << "Trying to link next to self" << QwLog::endl; return;
72  }
73  fNext = next;
74  };
75  /// Get the next node
76  nodenode* GetNext() const { return fNext; };
77  /// Get the next node (non-standard notation)
78  nodenode* next() const { return fNext; };
79 
80  private:
81 
82  static int fDebug; /// Debug level
83 
84 }; // class nodenode
85 
86 } // namespace QwTracking
87 
88 #endif // QWTRACKINGNODENODE_H
treenode * GetTree() const
Get the tree.
Definition: nodenode.h:66
nodenode(nodenode *next=0, treenode *tree=0)
Constructor with next and tree pointers.
Definition: nodenode.cc:31
void SetTree(treenode *tree)
Set the tree.
Definition: nodenode.h:61
Memory management structure to count objects.
void SetNext(nodenode *next)
Set the next node.
Definition: nodenode.h:69
A logfile class, based on an identical class in the Hermes analyzer.
Memory management class to count object instantiations.
treenode * fTree
Pointer to the next tree.
Definition: nodenode.h:56
Definition of a treenode which contains the bits that make up a tree pattern.
nodenode * fNext
Pointer to the next node.
Definition: nodenode.h:54
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
nodenode * next() const
Get the next node (non-standard notation)
Definition: nodenode.h:78
A nodenode is used as a pointer which links treenodes to their siblings.
Definition: nodenode.h:42
A treenode contains the bits that make up a tree pattern.
Definition: treenode.h:63
~nodenode()
Destructor.
Definition: nodenode.cc:42
nodenode * GetNext() const
Get the next node.
Definition: nodenode.h:76
#define QwError
Predefined log drain for errors.
Definition: QwLog.h:40
static int fDebug
Definition: nodenode.h:78