-
Notifications
You must be signed in to change notification settings - Fork 14
/
Options.hh
107 lines (92 loc) · 2.41 KB
/
Options.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#ifndef _OPTIONS_HH_
#define _OPTIONS_HH_
#include <string>
#include <vector>
#include <fstream>
#include <streambuf>
#include <iostream>
#include <stdexcept>
#include <memory>
#include <mongocxx/pool.hpp>
#include <mongocxx/client.hpp>
#include <mongocxx/database.hpp>
#include <mongocxx/collection.hpp>
#include <bsoncxx/document/view.hpp>
#include <bsoncxx/document/value.hpp>
struct BoardType{
int link;
int crate;
int board;
std::string type;
std::string host;
unsigned int vme_address;
};
struct RegisterType{
std::string reg;
std::string val;
};
struct CrateOptions{
float pulser_freq;
int neutron_veto;
int muon_veto;
int led_trigger;
int s_in;
};
struct HEVOptions{
int signal_threshold;
int sign;
int rise_time_cut;
int inner_ring_factor;
int outer_ring_factor;
int integration_threshold;
int parameter_0;
int parameter_1;
int parameter_2;
int parameter_3;
int window;
int prescaling;
int component_status;
int width_cut;
int delay;
std::string address;
std::string required;
};
struct fax_options_t {
int tpc_size;
double rate;
double drift_speed;
double e_absorbtion_length;
};
class MongoLog;
class Options{
public:
Options(std::shared_ptr<MongoLog>&, std::string, std::string, mongocxx::collection*, std::shared_ptr<mongocxx::pool>&, std::string, std::string);
~Options();
int GetInt(std::string, int=-1);
long int GetLongInt(std::string, long int=-1);
double GetDouble(std::string, double=-1);
std::string GetString(std::string, std::string="");
std::string Hostname() {return fHostname;}
std::vector<BoardType> GetBoards(std::string);
std::vector<RegisterType> GetRegisters(int, bool=false);
std::vector<uint16_t> GetDAC(int, int, uint16_t);
int GetCrateOpt(CrateOptions &ret);
int GetHEVOpt(HEVOptions &ret);
int16_t GetChannel(int, int);
int GetNestedInt(std::string, int);
std::vector<uint16_t> GetThresholds(int);
int GetFaxOptions(fax_options_t&);
void UpdateDAC(std::map<int, std::vector<uint16_t>>&);
private:
int Load(std::string, mongocxx::collection*, std::string);
bsoncxx::document::view bson_options;
bsoncxx::document::value *bson_value;
std::shared_ptr<MongoLog> fLog;
std::string fHostname;
std::string fDetector;
std::shared_ptr<mongocxx::pool> fPool;
mongocxx::pool::entry fClient; // yes
mongocxx::database fDB;
mongocxx::collection fDAC_collection;
};
#endif