feat(convertWeightToHeader): added python script to generate c++ header for isotope weights

This commit is contained in:
2025-03-24 10:39:05 -04:00
parent 8d3db04469
commit 9b07b80dad
2 changed files with 222 additions and 0 deletions

13
utils/atomic/readme.md Normal file
View File

@@ -0,0 +1,13 @@
# Information
Simple python utility for turning the file assets/atomic/weights.dat into a c++ header which can be included to provide easy access to all atomic weights inside 4DSSE
## Requirments
In order to use this utility you will need
- Python
- Pandas
## Usage
```bash
python convertWeightsToHeader.py <path/to/weights.dat> -o atomicWeights.h
```