Metadata-Version: 2.1
Name: fiftyl_toolkit
Version: 0.1.2
Summary: 50L data toolkit
Author-email: Alejandro Oranday <alejandro@oran.day>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Science/Research
Requires-Dist: numpy
Project-URL: Home, https://github.com/aeoranday/fiftyl_toolkit

# FiftyL (50L) Toolkit
This package contains a useful data extraction class for use in 50L analysis. Using this package requires access to [DUNE-DAQ](https://github.com/DUNE-DAQ/daq-release/). At the moment, this package only contains the tools for __data extraction__, but it will expand when new, frequently-used tools are desired.

## Example Usage
```
import fiftyl_toolkit
data = fiftyl_toolkit.Data(path_to_data_file)
record = data.get_records()[0]

adcs = data.extract(record)
limited_adcs = data.extract(record, range(10))
plane_adcs = data.extract(record, "collection")
```

