QwAnalysis
QwTracking::shortnode Class Reference

Similar to a nodenode. More...

#include <shortnode.h>

+ Inheritance diagram for QwTracking::shortnode:
+ Collaboration diagram for QwTracking::shortnode:

Public Member Functions

 shortnode ()
 Default constructor. More...
 
 ~shortnode ()
 Destructor. More...
 
void SetNext (shortnode *next)
 Set the next node. More...
 
shortnodeGetNext () const
 Get the next node. More...
 
shortnodenext () const
 Get the next node (non-standard notation) More...
 
void SetTree (shorttree *tree, int ntrees=1)
 Set the tree. More...
 
shorttreeGetTree (int i=0) const
 Get the tree. More...
 
void SetNumberOfTrees (int ntrees)
 Set the number of trees (if allocated as an array) More...
 
int GetNumberOfTrees () const
 Get the number of trees. More...
 
void Print (bool recursive=false, int indent=0)
 Print some debugging information. More...
 
- Public Member Functions inherited from QwObjectCounter< shortnode >
 QwObjectCounter ()
 Default constructor. More...
 
 QwObjectCounter (const QwObjectCounter &)
 Copy constructor. More...
 
virtual ~QwObjectCounter ()
 Destructor. More...
 

Private Attributes

shortnodefNext
 Link to the next node. More...
 
shorttreefTree
 
int fNTrees
 Number of trees pointed at by the pointer above. More...
 

Static Private Attributes

static int fDebug = 0
 Debug level. More...
 

Friends

std::ostream & operator<< (std::ostream &stream, const shortnode &sn)
 Output stream operator. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from QwObjectCounter< shortnode >
static size_t GetObjectsCreated ()
 Get number of objects ever created. More...
 
static size_t GetObjectsAlive ()
 Get number of objects still alive. More...
 

Detailed Description

Similar to a nodenode.

Definition at line 38 of file shortnode.h.

Constructor & Destructor Documentation

QwTracking::shortnode::shortnode ( )

Default constructor.

Constructor sets the debug level to zero

Definition at line 31 of file shortnode.cc.

References fNext, fNTrees, and fTree.

32 {
33  // Initialize pointers
34  fNext = 0;
35  fTree = 0;
36  // No tree pointed at yet
37  fNTrees = 0;
38 }
int fNTrees
Number of trees pointed at by the pointer above.
Definition: shortnode.h:57
shortnode * fNext
Link to the next node.
Definition: shortnode.h:50
shorttree * fTree
Definition: shortnode.h:54
QwTracking::shortnode::~shortnode ( )

Destructor.

Destructor deletes the memory occupied by the next nodes and daughter tree

Definition at line 43 of file shortnode.cc.

References fNext.

44 {
45  // Delete the next node in the linked list (recursion)
46  if (fNext) delete fNext;
47 }
shortnode * fNext
Link to the next node.
Definition: shortnode.h:50

Member Function Documentation

shortnode* QwTracking::shortnode::GetNext ( ) const
inline

Get the next node.

Definition at line 69 of file shortnode.h.

References fNext.

Referenced by QwTrackingTreeSearch::_SearchTreeLines(), and QwTrackingTreeRegion::PrintNodes().

69 { return fNext; };
shortnode * fNext
Link to the next node.
Definition: shortnode.h:50

+ Here is the caller graph for this function:

int QwTracking::shortnode::GetNumberOfTrees ( ) const
inline

Get the number of trees.

Definition at line 81 of file shortnode.h.

References fNTrees.

Referenced by QwTrackingTreeRegion::PrintNodes(), and QwTrackingTreeRegion::~QwTrackingTreeRegion().

81 { return fNTrees; };
int fNTrees
Number of trees pointed at by the pointer above.
Definition: shortnode.h:57

+ Here is the caller graph for this function:

shorttree * QwTracking::shortnode::GetTree ( int  i = 0) const

Get the tree.

Get the tree, or an indexed tree if this is an array of trees.

Parameters
iThe index of the tree (default is zero)
Returns
Pointer to the tree

Definition at line 54 of file shortnode.cc.

References fNTrees, and fTree.

Referenced by QwTrackingTreeSearch::_SearchTreeLines(), QwTracking::operator<<(), QwTrackingTreeRegion::PrintNodes(), QwTrackingTreeRegion::PrintTrees(), and QwTrackingTreeRegion::~QwTrackingTreeRegion().

55 {
56  if (fNTrees > 1 && i < fNTrees)
57  return &(fTree[i]);
58  else
59  return fTree;
60 }
int fNTrees
Number of trees pointed at by the pointer above.
Definition: shortnode.h:57
shorttree * fTree
Definition: shortnode.h:54

+ Here is the caller graph for this function:

shortnode* QwTracking::shortnode::next ( ) const
inline

Get the next node (non-standard notation)

Definition at line 71 of file shortnode.h.

References fNext.

Referenced by SetNext().

71 { return fNext; };
shortnode * fNext
Link to the next node.
Definition: shortnode.h:50

+ Here is the caller graph for this function:

void QwTracking::shortnode::Print ( bool  recursive = false,
int  indent = 0 
)

Print some debugging information.

Print some debugging information

Parameters
recursiveFlag to enable recursive calls
indentIndentation level (for recursive calls)

Definition at line 67 of file shortnode.cc.

References QwLog::endl(), fNext, fTree, Print(), QwTracking::shorttree::Print(), and QwOut.

Referenced by Print(), and QwTracking::shorttree::Print().

68 {
69  // Print this node
70  std::string indentation;
71  for (int i = 0; i < indent; i++) indentation += " ";
72  QwOut << this << ": " << *this << QwLog::endl;
73 
74  // Print tree
75  if (recursive && fTree) {
76  QwOut << indentation << "tree: ";
77  fTree->Print(recursive,indent+1);
78  }
79 
80  // Print next node
81  if (recursive && fNext) {
82  QwOut << indentation << "next: ";
83  fNext->Print(recursive,indent);
84  }
85 }
#define QwOut
Predefined log drain for explicit output.
Definition: QwLog.h:35
shortnode * fNext
Link to the next node.
Definition: shortnode.h:50
shorttree * fTree
Definition: shortnode.h:54
void Print(bool recursive=false, int indent=0)
Print some debugging information.
Definition: shorttree.cc:61
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
void Print(bool recursive=false, int indent=0)
Print some debugging information.
Definition: shortnode.cc:67

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void QwTracking::shortnode::SetNext ( shortnode next)
inline

Set the next node.

Definition at line 62 of file shortnode.h.

References QwLog::endl(), fNext, next(), and QwError.

Referenced by QwTrackingTree::_readtree(), and QwTrackingTree::readtree().

62  {
63  if (next == this) {
64  QwError << "Trying to link next to self" << QwLog::endl; return;
65  }
66  fNext = next;
67  };
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
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
#define QwError
Predefined log drain for errors.
Definition: QwLog.h:40

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void QwTracking::shortnode::SetNumberOfTrees ( int  ntrees)
inline

Set the number of trees (if allocated as an array)

Definition at line 79 of file shortnode.h.

References fNTrees.

79 { fNTrees = ntrees; };
int fNTrees
Number of trees pointed at by the pointer above.
Definition: shortnode.h:57
void QwTracking::shortnode::SetTree ( shorttree tree,
int  ntrees = 1 
)
inline

Set the tree.

Definition at line 74 of file shortnode.h.

References fNTrees, and fTree.

Referenced by QwTrackingTree::_readtree(), and QwTrackingTree::readtree().

74 { fTree = tree; fNTrees = ntrees; };
int fNTrees
Number of trees pointed at by the pointer above.
Definition: shortnode.h:57
shorttree * fTree
Definition: shortnode.h:54

+ Here is the caller graph for this function:

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  stream,
const shortnode sn 
)
friend

Output stream operator.

Stream some info about the short node

Parameters
streamStream as lhs of the operator
snShort node as rhs of the operator
Returns
Stream as result of the operator

Definition at line 93 of file shortnode.cc.

94 {
95  stream << *(sn.GetTree());
96  return stream;
97 }

Field Documentation

int QwTracking::shortnode::fDebug = 0
staticprivate

Debug level.

Definition at line 81 of file shortnode.h.

shortnode* QwTracking::shortnode::fNext
private

Link to the next node.

Definition at line 50 of file shortnode.h.

Referenced by GetNext(), next(), Print(), SetNext(), shortnode(), and ~shortnode().

int QwTracking::shortnode::fNTrees
private

Number of trees pointed at by the pointer above.

Definition at line 57 of file shortnode.h.

Referenced by GetNumberOfTrees(), GetTree(), SetNumberOfTrees(), SetTree(), and shortnode().

shorttree* QwTracking::shortnode::fTree
private

Pointer to the tree with the information, this can be either a single tree object or an entire array of trees

Definition at line 54 of file shortnode.h.

Referenced by GetTree(), Print(), SetTree(), and shortnode().


The documentation for this class was generated from the following files: