Changes for page DEMO - Working with FLASH data
Last modified by sndueste on 2026-02-23 16:10
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -24,4 +24,58 @@ 24 24 (% style="list-style-type: square;" %) 25 25 * for whom 26 26 * where Maxwell / local / extern 27 -* distribution 27 +* distribution\\ 28 +(% style="list-style-type: square;" %) 29 +** channel? 30 +(% style="list-style-type: square;" %) 31 +*** where official hosted (DESY, privat, conda-forge) 32 +** enviroment? 33 +(% style="list-style-type: square;" %) 34 +*** via files / already created? 35 + 36 +\\ 37 + 38 +{{code language="py" title="moved to repository?"}} 39 +class RunDirectory: 40 + 41 + def get_run_table(): 42 + ... 43 + 44 + def get_run(daq, run_number): 45 + ... 46 + 47 + 48 +class Run: 49 + 50 + def get_files(): 51 + ... 52 + 53 + def get_channels(): # of file #1? 54 + ... 55 + 56 + def get_start_time(): 57 + ... 58 + 59 + def get_stop_time(): # which? 60 + ... 61 + 62 + def to_df(channel_map): 63 + ... 64 + 65 + def to_series(channel): 66 + ... 67 + 68 + def to_array(channel): 69 + ... 70 +{{/code}} 71 + 72 +{{code language="py" title="ideas"}} 73 +run.to_df(channel_map) 74 +run.to_series(channel_string or channel_map) # on channel only? 75 +run.to_array(channel_string) # on channel only? 76 + 77 +# run.to_dask(dict) 78 +# run.to_xarray(dict) 79 +{{/code}} 80 + 81 +\\