diff options
-rw-r--r-- | example_config.ini | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/example_config.ini b/example_config.ini new file mode 100644 index 0000000..c0fc146 --- /dev/null +++ b/example_config.ini @@ -0,0 +1,40 @@ +[RF] +central_frequency = 6.83468e9 +frequency_span = 100e3 +initial_frequency = 6.834e9 +frequency_export_name = rfFreq + +[DAQ] +# channels to grab and their meaning +ain0 = transmission +ain1 = lockin +ain2 = davll +ain3 = ain3_undefined +# commented out channels will not be processed or stored +# dac0 = dac0_undefined +# dac1 = dac1_undefined2 + +[Plot] +x_axis_data = rfFreq + +[Plot_channels_visibility] +transmission = yes +lockin = yes +davll = yes + +[Plot_channels_colors] +# color specification will be evaluated and should match PyQtGraph.mkColor(args) +# for example +# (R,G,B,Alpha) tuple: example_trace = (255,0,255,100) +# or color name: example_trace = 'g' +transmission = (20,20,20,100) +lockin = (85,170,255,100) +davll = (255,0,255,100) +ain3_undefined = (0,85,255,100) + + +[Save] +save_prefix = eit +data_dir = z:\data.VAMPIRE + + |