Skip to content

Instantly share code, notes, and snippets.

@pdeperio
Created September 15, 2015 02:46
Show Gist options
  • Save pdeperio/75b5ab8faa4d033bc377 to your computer and use it in GitHub Desktop.
Save pdeperio/75b5ab8faa4d033bc377 to your computer and use it in GitHub Desktop.
Much more simplified config file for XENON100 light output
##
# XENON100-specific light ouput configuration settings
##
# This is just for setting up pax
[pax]
parent_configuration = "XENON100"
[Table.TableWriter]
output_format = 'root' # hdf5, csv, numpy, html, json, root
# Write to file every time a chunk is converted to records
# If false, or output format does not support it, will write all at end
write_in_chunks = False
# Fields to leave out of the output.
# If you dump to e.g. json, you may want to ignore area_per_channel and does_channel_contribute
fields_to_ignore = ['hits',
'pulses',
'sum_waveforms',
'sum_waveform',
'sum_waveform_top',
'channel_waveforms',
'all_hits',
'raw_data',
'area_per_channel', # Useful, but takes a LOT of space
'does_channel_have_noise', # Takes little disk space, but a lot of memory
'does_channel_contribute', # Same here
]
# Global settings, passed to every plugin
[DEFAULT]
# Time in the event at which trigger occurs. Set to None or leave out if there is no trigger
trigger_time_in_event = 209 * us # Jelle: I have no idea if this is right. Anybody?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment