Metadata-Version: 2.4
Name: dd4bench
Version: 0.0.1
Summary: Performance benchmarking for DD4hep-based simulations and reconstruction in Key4hep
Author-email: Joshua Falco Beirer <jbeirer@cern.ch>
Project-URL: Repository, https://github.com/jbeirer/DD4bench
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: matplotlib
Dynamic: license-file

# DD4bench

Performance benchmarking for DD4hep-based simulations and reconstruction in Key4hep.

## Installation

```bash
pip install dd4bench
```

## Basic Usage

```python
from dd4bench import benchmark

result = benchmark.ddsim(
    compact_file="ALLEGRO_o1_v03.xml",
    ddsim_args={
        "numberOfEvents": 100,
        "gun.particle": "e-",
        "gun.distribution": "uniform",
    },
    scan=True,
)
```
