DEMO - Documentation

Version 6.1 by cpassow on 2022-04-04 08:58

  • Short descriptions including Links:
    • GPFS
    • JupyterHub
    • conda ?
  • Links Repository
    • including Method Description


  • Links to Binder



Questions:

  • for whom
  • where Maxwell / local / extern
  • distribution
    • channel?
      • where official hosted (DESY, privat, conda-forge)
    • enviroment?
      • via files / already created?


moved to repository?
class RunDirectory:
       
   def get_run_table(self):
       ...
   
   def get_run(self, daq, run_number):
       ...
   
   
class Run:
       
   def get_files(self):
       ...
   
   def get_channels(self):  # of file #1?
       ...

   def get_start_time(self):
       ...
   
   def get_stop_time(self):  # which?
       ...
   
   def to_df(self, channel_dict):
       ...
   
   def to_series(self, channel):
       ...
   
   def to_array(self, channel):
       ...
ideas
run.to_df(channel_dict)
run.to_series(channel_string or channel_dict) # on channel only?
run.to_array(channel_string) # on channel only? 

# run.to_dask(dict)
# run.to_xarray(dict)