Wiki source code of DEMO - Documentation

Version 7.1 by cpassow on 2022-04-04 09:12

Hide last authors
cpassow 2.1 1 (% style="list-style-type: square;" %)
2 * Short descriptions including Links:
3 (% style="list-style-type: square;" %)
4 ** GPFS
5 ** JupyterHub
6 ** conda ?
7
8 (% style="list-style-type: square;" %)
9 * Links Repository
10 (% style="list-style-type: square;" %)
11 ** including Method Description
12
13 \\
14
15 (% style="list-style-type: square;" %)
16 * Links to Binder
17
18 \\
19
20 \\
21
22 Questions:
23
24 (% style="list-style-type: square;" %)
25 * for whom
26 * where Maxwell / local / extern
cpassow 3.1 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?
cpassow 4.1 33 (% style="list-style-type: square;" %)
34 *** via files / already created?
35
36 \\
37
cpassow 6.1 38 {{code language="py" title="moved to repository?"}}
cpassow 4.1 39 class RunDirectory:
40
cpassow 7.1 41 def get_run_table():
cpassow 4.1 42 ...
43
cpassow 7.1 44 def get_run(daq, run_number):
cpassow 4.1 45 ...
46
47
48 class Run:
49
cpassow 7.1 50 def get_files():
cpassow 4.1 51 ...
52
cpassow 7.1 53 def get_channels(): # of file #1?
cpassow 4.1 54 ...
55
cpassow 7.1 56 def get_start_time():
cpassow 4.1 57 ...
58
cpassow 7.1 59 def get_stop_time(): # which?
cpassow 4.1 60 ...
61
cpassow 7.1 62 def to_df(channel_map):
cpassow 4.1 63 ...
64
cpassow 7.1 65 def to_series(channel):
cpassow 4.1 66 ...
67
cpassow 7.1 68 def to_array(channel):
cpassow 4.1 69 ...
70 {{/code}}
71
cpassow 6.1 72 {{code language="py" title="ideas"}}
cpassow 7.1 73 run.to_df(channel_map)
74 run.to_series(channel_string or channel_map) # on channel only?
cpassow 5.1 75 run.to_array(channel_string) # on channel only?
76
77 # run.to_dask(dict)
78 # run.to_xarray(dict)
79 {{/code}}
80
cpassow 4.1 81 \\