Class Reference for E1039 Core & Analysis Software
PatternDB.h
Go to the documentation of this file.
1 
9 #ifndef _H_PatternDB_H_
10 #define _H_PatternDB_H_
11 
12 #include <phool/PHObject.h>
13 
14 #include <iostream>
15 #include <limits>
16 #include <string>
17 #include <set>
18 //#include <tuple>
19 
20 class TrackletKey : public TObject{
21 public:
22  TrackletKey() : St(0), X(0), U(0), V(0) {}
23  TrackletKey(const unsigned char st, const unsigned char x, const unsigned char u, const unsigned char v) : St(st), X(x), U(u), V(v){}
25  St(k.St), X(k.X), U(k.U), V(k.V){}
26 
27  unsigned char St;
28  unsigned char X;
29  unsigned char U;
30  unsigned char V;
31 
32  bool operator == (const TrackletKey & k) const;
33 
34  bool operator != (const TrackletKey & k) const;
35 
36  bool operator < (const TrackletKey & k) const;
37 
38  friend std::ostream & operator << (std::ostream &out, const TrackletKey &key) {
39  std::cout
40  <<"TrackletKey: "
41  << " { "
42  << (unsigned int)key.St
43  << ", " << (unsigned int)key.X
44  << ", " << (unsigned int)key.U
45  << ", " << (unsigned int)key.V
46  << " } ";
47 
48  return out;
49  }
50 
52 };
53 
54 class PartTrackKey : public TObject{
55 public:
57  PartTrackKey(const TrackletKey & i0, const TrackletKey & i1) : k0(i0), k1(i1) {}
59  k0(k.k0), k1(k.k1) {}
60 
63 
64  bool operator == (const PartTrackKey & k) const {if (k0==k.k0 and k1==k.k1) return true; return false;}
65  bool operator != (const PartTrackKey & k) const {if (k0==k.k0 and k1==k.k1) return false; return true;}
66  bool operator < (const PartTrackKey & k) const {
67  if (k0<k.k0) return true;
68  else if(k0==k.k0 and k1<k.k1) return true;
69  return false;
70  }
71 
72  friend std::ostream & operator << (std::ostream &out, const PartTrackKey &key) {
73  std::cout
74  <<"PartTrackKey: " << std::endl
75  << key.k0
76  << key.k1;
77 
78  return out;
79  }
80 
82 };
83 
84 class GlobTrackKey : public TObject{
85 public:
87  GlobTrackKey(const TrackletKey & i0, const TrackletKey & i1, const TrackletKey & i2) : k0(i0), k1(i1), k2(i2) {}
89  k0(k.k0), k1(k.k1), k2(k.k2) {}
90 
94 
95  bool operator == (const GlobTrackKey & k) const {if (k0==k.k0 and k1==k.k1 and k2==k.k2) return true; return false;}
96  bool operator != (const GlobTrackKey & k) const {if (k0==k.k0 and k1==k.k1 and k2==k.k2) return false; return true;}
97  bool operator < (const GlobTrackKey & k) const {
98  if (k0<k.k0) return true;
99  else if(k0==k.k0 and k1<k.k1) return true;
100  else if(k0==k.k0 and k1==k.k1 and k2<k.k2) return true;
101  return false;
102  }
103 
104  friend std::ostream & operator << (std::ostream &out, const GlobTrackKey &key) {
105  std::cout
106  <<"GlobTrackKey: " << std::endl
107  << key.k0
108  << key.k1
109  << key.k2;
110 
111  return out;
112  }
113 
115 };
116 
117 class PatternDB : public PHObject {
118 
119 public:
120 
121  //typedef std::tuple<unsigned int, unsigned int> TrackletKey;
122  //typedef std::tuple<TrackletKey, TrackletKey> PartTrackKey;
123 
124  const static TrackletKey ERR_KEY;
125 
127 
128  PatternDB();
129  virtual ~PatternDB() {}
130 
131  // PHObject virtual overloads
132  virtual void identify(std::ostream& os = std::cout) const;
133  virtual void Reset() {*this = PatternDB();};
134  virtual int isValid() const;
135  virtual PatternDB* Clone() const {return (new PatternDB(*this));}
136 
137  //static void print(const TrackletKey &k);
138  //static void print(const PartTrackKey &k);
139 
140  void print();
141 
142  std::set<TrackletKey> St1;
143  std::set<TrackletKey> St2;
144  std::set<TrackletKey> St3;
145  std::set<PartTrackKey> St23;
146  std::set<GlobTrackKey> St123;
147 
149 };
150 
151 
152 
153 
154 #endif /* _H_PatternDB_H_ */
bool operator!=(const GlobTrackKey &k) const
Definition: PatternDB.h:96
TrackletKey k0
Definition: PatternDB.h:91
bool operator<(const GlobTrackKey &k) const
Definition: PatternDB.h:97
GlobTrackKey(const TrackletKey &i0, const TrackletKey &i1, const TrackletKey &i2)
Definition: PatternDB.h:87
bool operator==(const GlobTrackKey &k) const
Definition: PatternDB.h:95
friend std::ostream & operator<<(std::ostream &out, const GlobTrackKey &key)
Definition: PatternDB.h:104
TrackletKey k2
Definition: PatternDB.h:93
ClassDef(GlobTrackKey, 1)
TrackletKey k1
Definition: PatternDB.h:92
GlobTrackKey(const GlobTrackKey &k)
Definition: PatternDB.h:88
bool operator==(const PartTrackKey &k) const
Definition: PatternDB.h:64
ClassDef(PartTrackKey, 1)
friend std::ostream & operator<<(std::ostream &out, const PartTrackKey &key)
Definition: PatternDB.h:72
TrackletKey k1
Definition: PatternDB.h:62
PartTrackKey(const PartTrackKey &k)
Definition: PatternDB.h:58
bool operator!=(const PartTrackKey &k) const
Definition: PatternDB.h:65
bool operator<(const PartTrackKey &k) const
Definition: PatternDB.h:66
TrackletKey k0
Definition: PatternDB.h:61
PartTrackKey(const TrackletKey &i0, const TrackletKey &i1)
Definition: PatternDB.h:57
PatternDB interface objects.
Definition: PatternDB.h:117
ClassDef(PatternDB, 1)
std::set< TrackletKey > St2
Definition: PatternDB.h:143
static const TrackletKey ERR_KEY
Definition: PatternDB.h:124
virtual int isValid() const
isValid returns non zero if object contains vailid data
Definition: PatternDB.cxx:101
virtual void Reset()
Clear Event.
Definition: PatternDB.h:133
virtual ~PatternDB()
Definition: PatternDB.h:129
std::set< GlobTrackKey > St123
Definition: PatternDB.h:146
void print()
Definition: PatternDB.cxx:157
std::set< PartTrackKey > St23
Definition: PatternDB.h:145
std::set< TrackletKey > St1
Definition: PatternDB.h:142
virtual PatternDB * Clone() const
Definition: PatternDB.h:135
std::set< TrackletKey > St3
Definition: PatternDB.h:144
virtual void identify(std::ostream &os=std::cout) const
Definition: PatternDB.cxx:90
@ ERROR_STATION
Definition: PatternDB.h:126
unsigned char St
Definition: PatternDB.h:27
bool operator==(const TrackletKey &k) const
friend std::ostream & operator<<(std::ostream &out, const TrackletKey &key)
Definition: PatternDB.h:38
unsigned char U
Definition: PatternDB.h:29
TrackletKey(const unsigned char st, const unsigned char x, const unsigned char u, const unsigned char v)
Definition: PatternDB.h:23
bool operator<(const TrackletKey &k) const
Definition: PatternDB.cxx:57
ClassDef(TrackletKey, 1)
unsigned char X
Definition: PatternDB.h:28
TrackletKey(const TrackletKey &k)
Definition: PatternDB.h:24
bool operator!=(const TrackletKey &k) const
Definition: PatternDB.cxx:52
unsigned char V
Definition: PatternDB.h:30