Skip to content

Commit dfea622

Browse files
committed
Finish renaming and fixing issues in example notebook
1 parent 32e7a9c commit dfea622

11 files changed

Lines changed: 551 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
# For more information see:
44
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
55

6-
name: Curtains
7-
6+
name: XRISALIS
87
on:
98
push:
109
branches:

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ random/
99
output_data/
1010
results/
1111

12-
src/curtains/models/*
13-
!src/curtains/models/arf.fits
14-
!src/curtains/models/rmf.fits
12+
src/xrisalis/models/*
13+
!src/xrisalis/models/arf.fits
14+
!src/xrisalis/models/rmf.fits
1515

1616
*.egg-info/
1717
*.pdf
1818
simulation.py
19-
src/curtains/version.py
19+
src/xrisalis/version.py

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
========
2-
Curtains
2+
XRISALIS
33
========
44

55
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6-
Simulation of ultra-high angular resolution X-ray interferometric observations
6+
X-Ray Interferometry Simulation and AnaLysIs Software
77
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
88

9-
Curtains is a software package designed to provide end-to-end simulations of X-ray interferometric observations. It provides functionality to read in source models that are compatible with the SIMPUT standard, sample photons based on the source model and provided instrumental files, generate raw event lists, and finally produce images and spectra from the simulated data.
9+
Curtains is a software package designed to provide end-to-end simulations of X-ray interferometric observations. It provides functionality to read in source models that are compatible with the SIMPUT standard, sample photons based on the source model and provided instrumental files, generate raw event lists, and finally produce images and spectra from the simulated data.

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
2-
name = "curtains"
2+
name = "xrisalis"
33
dynamic = ["version"]
4-
description = "Simulation of X-ray interferometric observations"
4+
description = "X-Ray Interferometry Simulation and AnaLysIs Software"
55
readme = "README.rst"
66
authors = [
77
{ name="Philipp Stoecker", email="p.o.stoecker@uva.nl" },
@@ -27,7 +27,7 @@ build-backend = "setuptools.build_meta"
2727

2828
[tool.setuptools_scm]
2929
fallback_version = "0.1"
30-
write_to = "src/curtains/version.py"
30+
write_to = "src/xrisalis/version.py"
3131
write_to_template = """
3232
# coding: utf-8
3333
# file generated by setuptools_scm
@@ -43,5 +43,5 @@ where = ["src"]
4343

4444
[tool.ruff]
4545
# Ignore the auto-generated file
46-
include = ["src/curtains/*.py"]
47-
exclude = ["src/curtains/version.py"]
46+
include = ["src/xrisalis/*.py"]
47+
exclude = ["src/xrisalis/version.py"]

simple_example.ipynb

Lines changed: 538 additions & 0 deletions
Large diffs are not rendered by default.

src/curtains/models/arf.fits

-158 KB
Binary file not shown.

src/curtains/models/rmf.fits

-3.48 MB
Binary file not shown.

0 commit comments

Comments
 (0)