Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# (c) Stefan Countryman, 2019 

2 

3""" 

4``FileHandler`` classes and utilities associated with retrieving GFU neutrino 

5data from IceCube (see: ``llama.detectors.IceCube``). 

6""" 

7 

8from llama.files.i3.json import IceCubeNeutrinoList, Neutrino 

9from llama.files.i3.tex import IceCubeNeutrinoListTex 

10from llama.files.i3.txt import ( 

11 IceCubeNeutrinoListTxt, 

12 IceCubeNeutrinoListCoincTxt, 

13) 

14 

15__all__ = [ 

16 'Neutrino', 

17 'IceCubeNeutrinoList', 

18 'IceCubeNeutrinoListTex', 

19 'IceCubeNeutrinoListTxt', 

20 'IceCubeNeutrinoListCoincTxt', 

21]