QwAnalysis
QwTrackingTree.h
Go to the documentation of this file.
1 /*!
2  * \file QwTrackingTree.h
3  * \brief Definition of the track search tree
4  *
5  * \author Wouter Deconinck
6  * \date 2009-12-11
7  */
8 
9 #ifndef QWTRACKINGTREE_H
10 #define QWTRACKINGTREE_H
11 
12 // Standard C and C++ headers
13 #include <iostream>
14 #include <cstdio>
15 #include <cstdlib>
16 #include <cstring>
17 #include <cassert>
18 #include <cmath>
19 #include <inttypes.h>
20 using std::cout;
21 using std::cerr;
22 using std::endl;
23 using std::string;
24 
25 // Boost filesystem headers
26 #include "boost/filesystem/operations.hpp"
27 #include "boost/filesystem/path.hpp"
28 namespace bfs = boost::filesystem;
29 
30 // Qweak tree object headers
31 #include "treenode.h"
32 #include "nodenode.h"
33 #include "shortnode.h"
34 #include "shorttree.h"
37 
38 // Qweak headers
39 #include "QwTypes.h"
40 #include "QwGeometry.h"
41 #include "VQwTrackingElement.h"
42 
43 // Definitions
44 #define HSHSIZ 511 ///< Length of the hash table (as header define)
45 
46 // Forward declarations
48 
49 /**
50  * \class QwTrackingTree
51  * \ingroup QwTracking
52  * \brief Creates and manages the treesearch pattern database.
53  *
54  * The pattern database is used to determine whether subsets
55  * of hits resemble track segments.
56  */
58 
59  public:
60 
61  /// \brief Default constructor
62  QwTrackingTree(unsigned int numlayers);
63  /// \brief Destructor
64  virtual ~QwTrackingTree();
65 
66  /// Set the debug level
67  void SetDebugLevel (const int debuglevel) { fDebug = debuglevel; };
68  /// Set the maximum allowed slope
69  void SetMaxSlope (const double maxslope) { fMaxSlope = maxslope; };
70 
71  /// Print the full tree and hash table
72  void Print(const Option_t* options = 0) const { PrintTree(); PrintHashTable(); };
73  /// \brief Print the full tree
74  void PrintTree() const;
75  /// \brief Print the hash table
76  void PrintHashTable() const;
77 
78  void SetGeometry(const QwGeometry& geometry) { fGeometry = geometry; };
79 
80  int consistent (
81  treenode *testnode,
82  int level,
83  QwDetectorInfo* detector);
84  treenode* existent (treenode *node, int hash);
86 
87  /// \brief Recursively generate the treesearch pattern database
88  void marklin (
89  treenode *father,
90  int level,
91  QwDetectorInfo* detector);
92 
93  long writetree (
94  const string& filename,
95  treenode *tn,
96  int levels,
97  int tlayers,
98  double width);
99 
101  const string& filename,
102  int levels,
103  int tlayers,
104  double rwidth,
105  bool skipreading);
106 
108  const string& filename,
109  int levels,
110  int tlayer,
111  double width,
112  QwDetectorInfo* detector,
113  bool regenerate);
114 
115  private:
116 
117  /// Name of the tree directory (in $QWSCRATCH), as static member field
118  static const std::string fgTreeDir;
119 
120  /// Detector (or set of detectors) represented by this search tree
122 
123  int fDebug; ///< Debug level
124 
125  // Number of rows in the bit pattern (VDC wires or HDC planes)
126  unsigned int fNumLayers; ///< Number of detector planes
127  unsigned int& fNumPlanes; ///< Number of planes in the region 2 HDCs
128  unsigned int& fNumWires; ///< Number of wires in a region 3 VDC group
129 
130  unsigned int fHashSize; ///< Length of the hash table (as member field)
131 
132  double fMaxSlope; ///< Maximum allowed slope for tracks in this detector
133  int fNumPatterns; ///< Number of valid patterns in the tree
134 
135  /// Reference
136  int fRef;
137  /// Maximum number of references in the cached tree file
138  int fMaxRef;
139 
140  int fMaxLevel; /*!< maximum level of the bin division within
141  the treesearch database,
142  i.e.: resolution = width / (2^maxlevel) */
143 
144  /// Father node: the main entry point to the tree
146 
147  /// Hash table: the list of all nodes in the tree, organized in linked
148  /// lists and sorted by hash value; an array of pointers to treenodes.
149  //treenode* fHashTable[HSHSIZ];
151 
152  private:
153 
154  /// \brief Recursive method for pulling in the concise treesearch search database
155  int _writetree (treenode *tn, FILE *fp, int32_t tlayers);
156  /// \brief Recursive method to read the concise treesearch database from disk
157  int _readtree (FILE *file, shorttree *stb, shortnode **father, int32_t tlayers);
158  /// \brief Recursive method to initialize and generate the treesearch database
160  int32_t tlayer,
161  QwDetectorInfo* detector);
162 
163 }; // class QwTrackingTree
164 
165 #endif // QWTRACKINGTREE_H
treenode * fFather
Father node: the main entry point to the tree.
int _readtree(FILE *file, shorttree *stb, shortnode **father, int32_t tlayers)
Recursive method to read the concise treesearch database from disk.
QwTrackingTreeRegion * inittree(const string &filename, int levels, int tlayer, double width, QwDetectorInfo *detector, bool regenerate)
A container for the pattern databases for each detector region.
int consistent(treenode *testnode, int level, QwDetectorInfo *detector)
Determines whether the pattern is geometrically possible.
treenode ** fHashTable
unsigned int & fNumWires
Number of wires in a region 3 VDC group.
int fRef
Reference.
void PrintHashTable() const
Print the hash table.
int fNumPatterns
Number of valid patterns in the tree.
treenode * _inittree(int32_t tlayer, QwDetectorInfo *detector)
Recursive method to initialize and generate the treesearch database.
Definition of nodenode which links treenodes to their siblings.
Similar to a treenode.
Definition: shorttree.h:44
void Print(const Option_t *options=0) const
Print the full tree and hash table.
unsigned int fHashSize
Length of the hash table (as member field)
QwTrackingTreeRegion * readtree(const string &filename, int levels, int tlayers, double rwidth, bool skipreading)
void SetDebugLevel(const int debuglevel)
Set the debug level.
int fDebug
Debug level.
void PrintTree() const
Print the full tree.
Creates and manages the treesearch pattern database.
Definition of a shortnode, the short version of a nodenode.
treenode * nodeexists(nodenode *nd, treenode *tr)
Definition of a treenode which contains the bits that make up a tree pattern.
double fMaxSlope
Maximum allowed slope for tracks in this detector.
void SetGeometry(const QwGeometry &geometry)
Definition of virtual base class for all tracking elements.
Similar to a nodenode.
Definition: shortnode.h:38
long writetree(const string &filename, treenode *tn, int levels, int tlayers, double width)
This function initializes the output file. It then calls the iterative _writetree function to fill th...
QwGeometry fGeometry
Detector (or set of detectors) represented by this search tree.
Collection of QwDetectorInfo pointers that specifies an experimental geometry.
Definition: QwGeometry.h:27
virtual ~QwTrackingTree()
Destructor.
int _writetree(treenode *tn, FILE *fp, int32_t tlayers)
Recursive method for pulling in the concise treesearch search database.
static const std::string fgTreeDir
Name of the tree directory (in $QWSCRATCH), as static member field.
treenode * existent(treenode *node, int hash)
Search for a node in the search tree.
void marklin(treenode *father, int level, QwDetectorInfo *detector)
Recursively generate the treesearch pattern database.
unsigned int & fNumPlanes
Number of planes in the region 2 HDCs.
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
int fMaxRef
Maximum number of references in the cached tree file.
unsigned int fNumLayers
Number of detector planes.
QwTrackingTree(unsigned int numlayers)
Default constructor.
Virtual base class for all tracking elements.
void SetMaxSlope(const double maxslope)
Set the maximum allowed slope.