Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The commented block should be uncommented whenever actual data are being analyzed.

Sets of alias to better find the relevant quantities in the h5 files are also defined in the following cell:

Code Block
languagepy
themeRDark
# helper dict to find data in file
dataDict = {'alias': 'path/in/the/h5',
			...
           }

filters =  {}
filters['alias_filt1'] = [0.03,0.35]
filters['alias_filt2'] = [40,230]
...
print('Filter selection:')
for key,value in filters.items():
	print('\t{} : {}'.format(key, value))
hist_bins = {key: 35 for key in filters.keys()}