QwAnalysis
shortnode.h
Go to the documentation of this file.
1 /*------------------------------------------------------------------------*//*!
2 
3  \file shortnode.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 a shortnode, the short version of a nodenode
13 
14 *//*-------------------------------------------------------------------------*/
15 
16 #ifndef QWTRACKINGSHORTNODE_H
17 #define QWTRACKINGSHORTNODE_H
18 
19 // System headers
20 #include <iostream>
21 
22 // Qweak headers
23 #include "QwLog.h"
24 #include "QwObjectCounter.h"
25 
26 namespace QwTracking {
27 
28 // Forward declaration due to cyclic dependency
29 class shorttree;
30 
31 /**
32  * \class shortnode
33  * \ingroup QwTracking
34  *
35  * \brief Similar to a nodenode.
36  *
37  */
38 class shortnode: public QwObjectCounter<shortnode> {
39 
40  public:
41 
42  /// \brief Default constructor
43  shortnode();
44  /// \brief Destructor
45  ~shortnode();
46 
47  private:
48 
49  /// Link to the next node
51 
52  /// Pointer to the tree with the information, this can be either a single
53  /// tree object or an entire array of trees
55 
56  /// Number of trees pointed at by the pointer above
57  int fNTrees;
58 
59  public:
60 
61  /// Set the next node
63  if (next == this) {
64  QwError << "Trying to link next to self" << QwLog::endl; return;
65  }
66  fNext = next;
67  };
68  /// Get the next node
69  shortnode* GetNext() const { return fNext; };
70  /// Get the next node (non-standard notation)
71  shortnode* next() const { return fNext; };
72 
73  /// Set the tree
74  void SetTree(shorttree* tree, int ntrees = 1) { fTree = tree; fNTrees = ntrees; };
75  /// \brief Get the tree
76  shorttree* GetTree(int i = 0) const;
77 
78  /// Set the number of trees (if allocated as an array)
79  void SetNumberOfTrees(int ntrees) { fNTrees = ntrees; };
80  /// Get the number of trees
81  int GetNumberOfTrees() const { return fNTrees; };
82 
83  private:
84 
85  static int fDebug; ///< Debug level
86 
87  public:
88 
89  /// \brief Print some debugging information
90  void Print(bool recursive = false, int indent = 0);
91  /// \brief Output stream operator
92  friend std::ostream& operator<< (std::ostream& stream, const shortnode& sn);
93 
94 }; // class shortnode
95 
96 } // namespace QwTracking
97 
98 #endif // QWTRACKINGSHORTNODE_H
~shortnode()
Destructor.
Definition: shortnode.cc:43
int fNTrees
Number of trees pointed at by the pointer above.
Definition: shortnode.h:57
void SetNext(shortnode *next)
Set the next node.
Definition: shortnode.h:62
shortnode * fNext
Link to the next node.
Definition: shortnode.h:50
shortnode * next() const
Get the next node (non-standard notation)
Definition: shortnode.h:71
shorttree * fTree
Definition: shortnode.h:54
shortnode()
Default constructor.
Definition: shortnode.cc:31
Memory management structure to count objects.
void SetNumberOfTrees(int ntrees)
Set the number of trees (if allocated as an array)
Definition: shortnode.h:79
int GetNumberOfTrees() const
Get the number of trees.
Definition: shortnode.h:81
A logfile class, based on an identical class in the Hermes analyzer.
Memory management class to count object instantiations.
Similar to a treenode.
Definition: shorttree.h:44
static int fDebug
Debug level.
Definition: shortnode.h:81
shorttree * GetTree(int i=0) const
Get the tree.
Definition: shortnode.cc:54
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
shortnode * GetNext() const
Get the next node.
Definition: shortnode.h:69
void SetTree(shorttree *tree, int ntrees=1)
Set the tree.
Definition: shortnode.h:74
Similar to a nodenode.
Definition: shortnode.h:38
void Print(bool recursive=false, int indent=0)
Print some debugging information.
Definition: shortnode.cc:67
friend std::ostream & operator<<(std::ostream &stream, const shortnode &sn)
Output stream operator.
Definition: shortnode.cc:93
#define QwError
Predefined log drain for errors.
Definition: QwLog.h:40