Metadata-Version: 2.4
Name: ScatTools
Version: 0.0.1
Summary: Tools for X-ray and neutron scattering analysis
Project-URL: Homepage, https://github.com/chelberserker/ScatTools/
Author: Egor A. Bersenev
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: h5py
Requires-Dist: matplotlib
Requires-Dist: numpy
Description-Content-Type: text/markdown

# Scatter Analysis

A Python package providing tools for the analysis of X-ray and neutron scattering data (SAXS, SANS, and GID).

## Installation

```bash
pip install ScatTools
```

## Features

- **GID**: Analysis of Grazing Incidence Diffraction data. Calculates crystallographic parameters based on scattering vectors.
- **SAS**: Analysis of Small Angle Scattering data, including Small Angle X-ray Scattering (SAXS) and Small Angle Neutron Scattering (SANS) with support for plotting and data loading.

## Documentation

Documentation will be made available shortly.

## Usage Example

```python
from gid import calculate_cell_parameters

# Calculate parameters based on scattering vectors
params = calculate_cell_parameters(qxy1=1.0, qxy2=1.0, qxy3=1.0, qz1=0.1, qz2=0.1, qz3=0.1)
print(params)
```
