Class Reference for E1039 Core & Analysis Software
PatternDBUtil.h
Go to the documentation of this file.
1 
9 #ifndef _PatternDBUtil_H
10 #define _PatternDBUtil_H
11 
12 #include "PatternDB.h"
13 #include "FastTracklet.h"
14 //#include "SRawEvent.h"
15 
16 #include <map>
17 
19 {
20  public:
21 
22  static int BuildPatternDB (const std::string & fin, const std::string & fout, PatternDB & db);
23 
24  static PatternDB* LoadPatternDB (const std::string & fin);
25 
28  const unsigned int X, const unsigned int Xp,
29  const unsigned int U, const unsigned int Up,
30  const unsigned int V, const unsigned int Vp);
31 
33  const Tracklet tracklet,
34  const PatternDB::STATION station);
35 
37  const std::vector< std::pair<unsigned int, unsigned int> > & det_elem_pairs,
38  const PatternDB::STATION &station);
39 
40  static int LooseMode() {
41  return PatternDBUtil::_loose_mode;
42  }
43 
44  static void LooseMode(bool a = true) {
45  PatternDBUtil::_loose_mode = a;
46  }
47 
48  static int ResScaleDC1() {
49  return PatternDBUtil::_RESOLUTION1_;
50  }
51 
52  static void ResScaleDC1(const int a) {
53  PatternDBUtil::_RESOLUTION1_ = a;
54  }
55 
56  static int ResScaleDC2() {
57  return PatternDBUtil::_RESOLUTION2_;
58  }
59 
60  static void ResScaleDC2(const int a) {
61  PatternDBUtil::_RESOLUTION2_ = a;
62  }
63 
64  static int ResScaleDC3() {
65  return PatternDBUtil::_RESOLUTION3_;
66  }
67 
68  static void ResScaleDC3(const int a) {
69  PatternDBUtil::_RESOLUTION3_ = a;
70  }
71 
72  static int Verbosity() {
73  return PatternDBUtil::verbosity;
74  }
75 
76  static void Verbosity(int verbosity) {
77  PatternDBUtil::verbosity = verbosity;
78  }
79 
80  protected:
81 
83  virtual ~PatternDBUtil(){}
84 
85 
86  private:
87 
88  static std::map<unsigned int, unsigned int> _detid_view;
89 
90  static int verbosity;
91  static bool _loose_mode;
92  static int _RESOLUTION1_;
93  static int _RESOLUTION2_;
94  static int _RESOLUTION3_;
95 };
96 
97 
98 #endif /*_PatternDBUtil_H*/
PatternDB utilities.
Definition: PatternDBUtil.h:19
static int ResScaleDC2()
Definition: PatternDBUtil.h:56
static TrackletKey EncodeTrackletKey(PatternDB::STATION, const unsigned int X, const unsigned int Xp, const unsigned int U, const unsigned int Up, const unsigned int V, const unsigned int Vp)
virtual ~PatternDBUtil()
Definition: PatternDBUtil.h:83
static int BuildPatternDB(const std::string &fin, const std::string &fout, PatternDB &db)
static int ResScaleDC1()
Definition: PatternDBUtil.h:48
static void LooseMode(bool a=true)
Definition: PatternDBUtil.h:44
static int LooseMode()
Definition: PatternDBUtil.h:40
static void ResScaleDC2(const int a)
Definition: PatternDBUtil.h:60
static void ResScaleDC3(const int a)
Definition: PatternDBUtil.h:68
static int Verbosity()
Definition: PatternDBUtil.h:72
static void ResScaleDC1(const int a)
Definition: PatternDBUtil.h:52
static PatternDB * LoadPatternDB(const std::string &fin)
static void Verbosity(int verbosity)
Definition: PatternDBUtil.h:76
static TrackletKey GetTrackletKey(const Tracklet tracklet, const PatternDB::STATION station)
static int ResScaleDC3()
Definition: PatternDBUtil.h:64
PatternDB interface objects.
Definition: PatternDB.h:117