pflib v2.7.0-1-gd371ab6a
Polarfire Interaction Library
pftool_hardcoded_values.h
1#ifndef PFTOOL_HARDCODED_VALUES_H
2#define PFTOOL_HARDCODED_VALUES_H
3
4#include <vector>
5
7 std::vector<int> led_dac_values{1600, 1625, 1650, 1675, 1700, 1725, 1750};
8
9 int num_led_events = 10000;
10 int led_calib_length = 2;
11 int led_calib_offset = 19;
12 int led_l1offset = 8;
13 int charge_l1offset = 8;
14 int calib_length = 2;
15 int calib_offset = 14;
16 int SiPM_bias = 3784;
17 int lowrange_dac_min = 0;
18 int lowrange_dac_max = 2047;
19 int highrange_fine_dac_min = 0;
20 int highrange_fine_dac_max = 300;
21 int highrange_coarse_dac_min = 300;
22 int highrange_coarse_dac_max = 2047;
23 int highrange_dac_max = 2047;
24 int coarse_steps = 25;
25 int fine_steps = 50;
26 int events_per_step = 3;
27
28 // Number of samples - 1
29 int num_extra_samples = 7;
30
31 std::string l1offset_page = "DIGITAL_HALF_";
32 std::string l1offset_parameter = "L1OFFSET";
33
34 std::string intctest_page = "REFERENCE_VOLTAGE_";
35 std::string intctest_parameter = "INTCTEST";
36
37
38
39};
40
41#endif /* PFTOOL_HARDCODED_VALUES_H */
Definition of settings.
Definition: DetectorConfiguration.cxx:22
Definition: pftool_hardcoded_values.h:6