#ifndef ROOT_TreeSearch_PatternGenerator
#define ROOT_TreeSearch_PatternGenerator
#include "Pattern.h"
#include "PatternTree.h"
#include <vector>
using std::vector;
namespace TreeSearch {
class PatternGenerator {
public:
PatternGenerator();
virtual ~PatternGenerator();
PatternTree* Generate( TreeParam_t parameters );
PatternTree* Generate( UInt_t maxdepth, Double_t detector_width,
const char* zpos, Double_t maxslope );
struct Statistics_t {
UInt_t nPatterns, nLinks, nBytes, MaxChildListLength, nHashBytes;
ULong64_t nAllPatterns;
Double_t BuildTime;
};
Pattern* GetRoot() const { return fHashTable[0].fPattern; }
const Statistics_t& GetStatistics() const { return fStats; }
void Print( Option_t* opt="", std::ostream& os = std::cout ) const;
private:
class HashNode {
friend class PatternGenerator;
private:
Pattern* fPattern;
UInt_t fMinDepth;
void UsedAtDepth( UInt_t depth ) {
if( depth < fMinDepth ) fMinDepth = depth;
}
public:
HashNode( Pattern* pat = 0 ) : fPattern(pat), fMinDepth(kMaxUInt) {}
Pattern* GetPattern() const { return fPattern; }
};
UInt_t fNlevels;
UInt_t fNplanes;
Double_t fMaxSlope;
vector<double> fZ;
vector<HashNode> fHashTable;
Statistics_t fStats;
HashNode* AddHash( Pattern* pat );
void CalcStatistics();
void ClearStatistics();
void DeleteTree();
HashNode* Find( const Pattern& pat );
UInt_t Hash( const Pattern& pat ) const;
bool LineTest( const Pattern& pat ) const;
void MakeChildNodes( HashNode* parent, UInt_t depth );
bool SlopeTest( const Pattern& pat, UInt_t depth ) const;
ClassDef(PatternGenerator,0)
};
}
#endif