Electric Tiger DAQ  1.0.0
Data Acquisition Software for the Electric Tiger Experiment
experiment_parameters.h
1 #ifndef EXPERIMENT_PARAMETERS_H
2 #define EXPERIMENT_PARAMETERS_H
3 
4 //C System-Headers
5 //
6 //C++ System headers
7 #include <vector>
8 #include <string>
9 #include <ostream>
10 #include <mutex>
11 //Qt Headers
12 //
13 //OpenCV Headers
14 //
15 //Boost Headers
16 //
17 //Project specific headers
18 #include "../Generics/generics.h"
19 
21 
22  public:
23 
24  const std::string save_file_path = "/home/bephillips2/workspace/Electric_Tiger_Control_Code/data/";
25  const double length_of_tune = 3.0;
26  const double revs_per_iterations = 2.5;
27  const double start_length = 7.0;
28  const double nwa_span_MHz = 400.0;
29  const uint nwa_points = 401;
30  const double nwa_power_dBm = -15.0;
31  const double freq_window_MHz = 100.0;
32  const double digitizer_rate_MHz = 50.0;
33  const uint num_averages = 10000;
34 
35  const TCPSocketParam psu_switch = TCPSocketParam( "Switch", "10.95.100.174", 9221 );
36  const TCPSocketParam network_analyzer = TCPSocketParam( "NetworkAnalyzer", "10.95.100.176", 1234 );
37  const TCPSocketParam stepper = TCPSocketParam( "Stepper", "10.95.100.177", 7776 );
38  const TCPSocketParam signal_generator = TCPSocketParam( "SignalGenerator", "10.95.100.175", 5025 );
39  const TCPSocketParam arduino = TCPSocketParam( "Arduino", ";10.66.192.41", 23 );
40 
41 };
42 
43 #endif // EXPERIMENT_PARAMETERS_H
Definition: experiment_parameters.h:20
Definition: configprocessor.h:38