Last modified by sndueste on 2025-04-23 14:53

From version 6.1
edited by cpassow
on 2022-04-04 08:58
Change comment: There is no comment for this version
To version 7.1
edited by cpassow
on 2022-04-04 09:12
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -38,40 +38,40 @@
38 38  {{code language="py" title="moved to repository?"}}
39 39  class RunDirectory:
40 40  
41 - def get_run_table(self):
41 + def get_run_table():
42 42   ...
43 43  
44 - def get_run(self, daq, run_number):
44 + def get_run(daq, run_number):
45 45   ...
46 46  
47 47  
48 48  class Run:
49 49  
50 - def get_files(self):
50 + def get_files():
51 51   ...
52 52  
53 - def get_channels(self): # of file #1?
53 + def get_channels(): # of file #1?
54 54   ...
55 55  
56 - def get_start_time(self):
56 + def get_start_time():
57 57   ...
58 58  
59 - def get_stop_time(self): # which?
59 + def get_stop_time(): # which?
60 60   ...
61 61  
62 - def to_df(self, channel_dict):
62 + def to_df(channel_map):
63 63   ...
64 64  
65 - def to_series(self, channel):
65 + def to_series(channel):
66 66   ...
67 67  
68 - def to_array(self, channel):
68 + def to_array(channel):
69 69   ...
70 70  {{/code}}
71 71  
72 72  {{code language="py" title="ideas"}}
73 -run.to_df(channel_dict)
74 -run.to_series(channel_string or channel_dict) # on channel only?
73 +run.to_df(channel_map)
74 +run.to_series(channel_string or channel_map) # on channel only?
75 75  run.to_array(channel_string) # on channel only?
76 76  
77 77  # run.to_dask(dict)