xcoll 0.5.8__tar.gz → 0.7.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {xcoll-0.5.8 → xcoll-0.7.1}/PKG-INFO +20 -14
- {xcoll-0.5.8 → xcoll-0.7.1}/README.md +2 -0
- xcoll-0.7.1/pyproject.toml +63 -0
- xcoll-0.7.1/xcoll/__init__.py +26 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/__init__.py +2 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/absorber.py +12 -2
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/base.py +222 -98
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/blowup.py +1 -0
- xcoll-0.7.1/xcoll/beam_elements/elements_src/black_absorber.h +135 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/elements_src/black_crystal.h +50 -51
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/elements_src/everest_block.h +30 -31
- xcoll-0.7.1/xcoll/beam_elements/elements_src/everest_collimator.h +227 -0
- xcoll-0.7.1/xcoll/beam_elements/elements_src/everest_crystal.h +267 -0
- xcoll-0.7.1/xcoll/beam_elements/elements_src/geant4_collimator.h +153 -0
- xcoll-0.7.1/xcoll/beam_elements/elements_src/rf_sweep.h +23 -0
- xcoll-0.7.1/xcoll/beam_elements/elements_src/transparent_collimator.h +126 -0
- xcoll-0.7.1/xcoll/beam_elements/elements_src/transparent_crystal.h +118 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/everest.py +56 -29
- xcoll-0.7.1/xcoll/beam_elements/geant4.py +142 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/monitor.py +1 -0
- xcoll-0.7.1/xcoll/beam_elements/transparent.py +83 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/colldb.py +97 -180
- xcoll-0.7.1/xcoll/constants/__init__.py +10 -0
- xcoll-0.7.1/xcoll/constants/aggregate_constants.py +202 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/general.py +2 -2
- xcoll-0.7.1/xcoll/geometry.md +42 -0
- xcoll-0.7.1/xcoll/headers/particle_states.py +60 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/initial_distribution.py +139 -104
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/interaction_record/interaction_record.py +11 -5
- xcoll-0.7.1/xcoll/interaction_record/interaction_types.py +46 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/line_tools.py +166 -89
- xcoll-0.7.1/xcoll/lossmap.py +614 -0
- xcoll-0.7.1/xcoll/materials/__init__.py +45 -0
- xcoll-0.7.1/xcoll/materials/allotropes.py +48 -0
- xcoll-0.7.1/xcoll/materials/atoms.py +193 -0
- xcoll-0.7.1/xcoll/materials/compounds.py +50 -0
- xcoll-0.7.1/xcoll/materials/crystals.py +29 -0
- xcoll-0.7.1/xcoll/materials/database.py +422 -0
- xcoll-0.7.1/xcoll/materials/material.py +1142 -0
- xcoll-0.7.1/xcoll/materials/mixtures.py +132 -0
- xcoll-0.7.1/xcoll/materials/parameters.py +89 -0
- xcoll-0.7.1/xcoll/materials/sixtrack.py +108 -0
- xcoll-0.7.1/xcoll/particles_tree.py +338 -0
- xcoll-0.7.1/xcoll/plot.py +109 -0
- xcoll-0.7.1/xcoll/prebuilt_kernel_definitions/__init__.py +7 -0
- xcoll-0.7.1/xcoll/prebuilt_kernel_definitions/element_inits.py +6 -0
- xcoll-0.7.1/xcoll/prebuilt_kernel_definitions/element_types.py +21 -0
- xcoll-0.7.1/xcoll/pretty_print.py +256 -0
- xcoll-0.7.1/xcoll/rf_sweep.py +194 -0
- xcoll-0.7.1/xcoll/scattering_routines/engine.py +730 -0
- xcoll-0.7.1/xcoll/scattering_routines/environment.py +333 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/__init__.py +0 -1
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/amorphous.h +110 -82
- xcoll-0.7.1/xcoll/scattering_routines/everest/channelling.h +250 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/constants.h +1 -9
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/crystal_parameters.h +15 -15
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/everest.h +14 -26
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/everest.py +3 -2
- xcoll-0.7.1/xcoll/scattering_routines/everest/ionisation_loss.h +147 -0
- xcoll-0.7.1/xcoll/scattering_routines/everest/jaw.h +61 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/multiple_coulomb_scattering.h +11 -3
- xcoll-0.7.1/xcoll/scattering_routines/everest/nuclear_interaction.h +107 -0
- xcoll-0.7.1/xcoll/scattering_routines/everest/properties.h +111 -0
- xcoll-0.7.1/xcoll/scattering_routines/geant4/__init__.py +7 -0
- xcoll-0.7.1/xcoll/scattering_routines/geant4/bdsim_config.py +123 -0
- xcoll-0.7.1/xcoll/scattering_routines/geant4/engine.py +281 -0
- xcoll-0.7.1/xcoll/scattering_routines/geant4/engine_server.py +70 -0
- xcoll-0.7.1/xcoll/scattering_routines/geant4/environment.py +110 -0
- xcoll-0.7.1/xcoll/scattering_routines/geant4/rpyc.py +82 -0
- {xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim → xcoll-0.7.1/xcoll/scattering_routines/geant4/scattering_src}/BDSXtrackInterface.cpp +129 -54
- {xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim → xcoll-0.7.1/xcoll/scattering_routines/geant4/scattering_src}/BDSXtrackInterface.hh +5 -1
- xcoll-0.7.1/xcoll/scattering_routines/geant4/scattering_src/CMakeLists.txt +72 -0
- {xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim → xcoll-0.7.1/xcoll/scattering_routines/geant4/scattering_src}/bindings.cpp +1 -21
- xcoll-0.7.1/xcoll/scattering_routines/geant4/scattering_src/xcoll_logging.h +106 -0
- xcoll-0.7.1/xcoll/scattering_routines/geant4/std_redirect.py +35 -0
- xcoll-0.7.1/xcoll/scattering_routines/geant4/track.py +147 -0
- xcoll-0.7.1/xcoll/scattering_routines/geant4/wrapper.py +18 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/collimator_geometry.h +88 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/crystal_geometry.h +69 -0
- xcoll-0.7.1/xcoll/scattering_routines/wrapper.py +43 -0
- xcoll-0.7.1/xcoll/xaux.py +79 -0
- xcoll-0.7.1/xcoll/xoconstants.py +530 -0
- xcoll-0.5.8/pyproject.toml +0 -52
- xcoll-0.5.8/xcoll/__init__.py +0 -33
- xcoll-0.5.8/xcoll/_manager.py +0 -22
- xcoll-0.5.8/xcoll/beam_elements/elements_src/black_absorber.h +0 -136
- xcoll-0.5.8/xcoll/beam_elements/elements_src/everest_collimator.h +0 -226
- xcoll-0.5.8/xcoll/beam_elements/elements_src/everest_crystal.h +0 -275
- xcoll-0.5.8/xcoll/headers/particle_states.h +0 -25
- xcoll-0.5.8/xcoll/install.py +0 -35
- xcoll-0.5.8/xcoll/interaction_record/interaction_types.py +0 -52
- xcoll-0.5.8/xcoll/lossmap.py +0 -219
- xcoll-0.5.8/xcoll/rf_sweep.py +0 -191
- xcoll-0.5.8/xcoll/scattering_routines/everest/channeling.h +0 -240
- xcoll-0.5.8/xcoll/scattering_routines/everest/jaw.h +0 -65
- xcoll-0.5.8/xcoll/scattering_routines/everest/materials.py +0 -365
- xcoll-0.5.8/xcoll/scattering_routines/everest/nuclear_interaction.h +0 -86
- xcoll-0.5.8/xcoll/scattering_routines/everest/properties.h +0 -180
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/.git +0 -1
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/.gitignore +0 -2
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/CMakeLists.txt +0 -18
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/ComponentMakefile +0 -192
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/Makefile +0 -144
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/README +0 -26
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/Doxyfile +0 -1551
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.asciidoc +0 -1054
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.epub +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.html +0 -1607
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.pdf +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__1.png +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__2.png +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__3.png +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__4.png +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__5.png +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__6.png +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__7.png +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/Makefile +0 -8
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/docbook.xsl +0 -1690
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/Connection.h +0 -79
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/FlukaIO.h +0 -58
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/FlukaIOServer.h +0 -33
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/FortranFlukaIO.h +0 -277
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/Message.h +0 -89
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/ParticleInfo.h +0 -76
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/lib/libFlukaIO64.a +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/lib/libFlukaIO64.so +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/samples/ClientTest.c +0 -156
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/samples/ServerTest.c +0 -123
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/samples/fclient.f +0 -149
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/samples/fserver.f +0 -118
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/Connection.c +0 -264
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/Connection.d +0 -69
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/Connection.o +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIO.c +0 -211
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIO.d +0 -46
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIO.o +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.c +0 -45
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.d +0 -29
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.h +0 -17
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.o +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer.c +0 -84
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer.d +0 -70
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer.o +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer_private.h +0 -22
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIO_private.h +0 -16
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FortranFlukaIO.c +0 -533
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FortranFlukaIO.d +0 -40
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FortranFlukaIO.o +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/NetIO.c +0 -304
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/NetIO.d +0 -66
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/NetIO.h +0 -30
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/NetIO.o +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/tags +0 -167
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/AllTests.cpp +0 -8
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/CommonTest.h +0 -10
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/ConnectionTest.cpp +0 -99
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/FlukaIOServerTest.cpp +0 -104
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/FlukaIOTest.cpp +0 -439
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/FortranFlukaIOTest.cpp +0 -682
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeConnection.c +0 -19
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeConnection.h +0 -16
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIO.c +0 -74
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIO.h +0 -50
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOHandshake.c +0 -16
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOHandshake.h +0 -20
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOServer.c +0 -12
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOServer.h +0 -18
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFortranFlukaIO.h +0 -19
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeNetIO.c +0 -80
- xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeNetIO.h +0 -35
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/.git +0 -1
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/.gitignore +0 -12
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/.gitmodules +0 -3
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/CMakeLists.txt +0 -26
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/README.md +0 -21
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/docs/Makefile +0 -20
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/docs/make.bat +0 -35
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/docs/source/collimasim.rst +0 -10
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/docs/source/conf.py +0 -59
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/docs/source/index.rst +0 -26
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.appveyor.yml +0 -37
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.clang-format +0 -19
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.clang-tidy +0 -65
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.cmake-format.yaml +0 -73
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.git +0 -1
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/CODEOWNERS +0 -9
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/CONTRIBUTING.md +0 -386
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +0 -45
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/ISSUE_TEMPLATE/config.yml +0 -8
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/dependabot.yml +0 -16
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/labeler.yml +0 -8
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/labeler_merged.yml +0 -3
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/pull_request_template.md +0 -19
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/ci.yml +0 -969
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/configure.yml +0 -84
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/format.yml +0 -48
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/labeler.yml +0 -16
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/pip.yml +0 -103
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.gitignore +0 -45
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.pre-commit-config.yaml +0 -151
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.readthedocs.yml +0 -3
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/CMakeLists.txt +0 -297
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/LICENSE +0 -29
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/MANIFEST.in +0 -6
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/README.rst +0 -180
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/Doxyfile +0 -23
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/Makefile +0 -192
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/_static/theme_overrides.css +0 -11
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/chrono.rst +0 -81
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/custom.rst +0 -93
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/eigen.rst +0 -310
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/functional.rst +0 -109
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/index.rst +0 -43
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/overview.rst +0 -171
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/stl.rst +0 -251
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/strings.rst +0 -305
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/classes.rst +0 -1297
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/embedding.rst +0 -262
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/exceptions.rst +0 -396
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/functions.rst +0 -568
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/misc.rst +0 -337
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/index.rst +0 -13
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/numpy.rst +0 -463
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/object.rst +0 -286
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/utilities.rst +0 -155
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/smart_ptrs.rst +0 -174
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/basics.rst +0 -308
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/benchmark.py +0 -91
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/benchmark.rst +0 -95
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/changelog.rst +0 -2050
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/classes.rst +0 -542
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/cmake/index.rst +0 -8
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/compiling.rst +0 -648
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/conf.py +0 -381
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/faq.rst +0 -343
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/index.rst +0 -48
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/installing.rst +0 -105
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/limitations.rst +0 -72
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11-logo.png +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python1.svg +0 -427
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python2.svg +0 -427
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/reference.rst +0 -130
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/release.rst +0 -96
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/requirements.txt +0 -8
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/upgrade.rst +0 -548
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/attr.h +0 -605
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/buffer_info.h +0 -144
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/cast.h +0 -1432
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/chrono.h +0 -213
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/common.h +0 -2
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/complex.h +0 -65
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/class.h +0 -709
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/common.h +0 -1021
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/descr.h +0 -104
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/init.h +0 -346
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/internals.h +0 -467
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/type_caster_base.h +0 -978
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/typeid.h +0 -55
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/eigen.h +0 -606
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/embed.h +0 -284
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/eval.h +0 -163
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/functional.h +0 -121
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/gil.h +0 -193
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/iostream.h +0 -275
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/numpy.h +0 -1741
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/operators.h +0 -163
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/options.h +0 -65
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/pybind11.h +0 -2497
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/pytypes.h +0 -1879
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/stl/filesystem.h +0 -103
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/stl.h +0 -375
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/stl_bind.h +0 -747
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/noxfile.py +0 -88
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/__init__.py +0 -11
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/__main__.py +0 -52
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/_version.py +0 -12
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/_version.pyi +0 -6
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/commands.py +0 -21
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/setup_helpers.py +0 -482
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/setup_helpers.pyi +0 -63
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pyproject.toml +0 -41
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/setup.cfg +0 -56
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/setup.py +0 -155
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/CMakeLists.txt +0 -503
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/conftest.py +0 -208
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/constructor_stats.h +0 -275
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/cross_module_gil_utils.cpp +0 -73
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/env.py +0 -33
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_python_package/pytest.ini +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_python_package/test_files.py +0 -279
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_setuptools/test_setuphelper.py +0 -143
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/local_bindings.h +0 -85
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/object.h +0 -179
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pybind11_cross_module_tests.cpp +0 -151
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pybind11_tests.cpp +0 -91
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pybind11_tests.h +0 -85
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pytest.ini +0 -19
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/requirements.txt +0 -12
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_async.cpp +0 -26
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_async.py +0 -25
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_buffers.cpp +0 -216
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_buffers.py +0 -163
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_builtin_casters.cpp +0 -286
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_builtin_casters.py +0 -536
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_call_policies.cpp +0 -107
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_call_policies.py +0 -248
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_callbacks.cpp +0 -227
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_callbacks.py +0 -202
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_chrono.cpp +0 -84
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_chrono.py +0 -210
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_class.cpp +0 -550
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_class.py +0 -473
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -84
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/embed.cpp +0 -21
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -28
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -39
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -46
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/main.cpp +0 -6
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -41
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -35
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -41
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/test.py +0 -10
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_constants_and_functions.cpp +0 -165
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_constants_and_functions.py +0 -53
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_copy_move.cpp +0 -238
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_copy_move.py +0 -126
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_casters.cpp +0 -141
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_casters.py +0 -117
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_setup.cpp +0 -41
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_setup.py +0 -50
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_docstring_options.cpp +0 -69
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_docstring_options.py +0 -42
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eigen.cpp +0 -348
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eigen.py +0 -771
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/CMakeLists.txt +0 -47
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/catch.cpp +0 -22
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/external_module.cpp +0 -23
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/test_interpreter.cpp +0 -326
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/test_interpreter.py +0 -15
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_enum.cpp +0 -148
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_enum.py +0 -272
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eval.cpp +0 -119
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eval.py +0 -51
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eval_call.py +0 -5
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_exceptions.cpp +0 -285
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_exceptions.h +0 -12
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_exceptions.py +0 -265
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_factory_constructors.cpp +0 -397
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_factory_constructors.py +0 -520
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_gil_scoped.cpp +0 -49
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_gil_scoped.py +0 -94
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_iostream.cpp +0 -125
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_iostream.py +0 -331
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_kwargs_and_defaults.cpp +0 -153
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_kwargs_and_defaults.py +0 -284
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_local_bindings.cpp +0 -107
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_local_bindings.py +0 -257
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_methods_and_attributes.cpp +0 -412
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_methods_and_attributes.py +0 -517
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_modules.cpp +0 -102
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_modules.py +0 -92
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_multiple_inheritance.cpp +0 -233
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_multiple_inheritance.py +0 -360
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_array.cpp +0 -472
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_array.py +0 -593
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_dtypes.cpp +0 -524
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_dtypes.py +0 -441
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_vectorize.cpp +0 -103
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_vectorize.py +0 -267
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_opaque_types.cpp +0 -73
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_opaque_types.py +0 -59
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_operator_overloading.cpp +0 -235
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_operator_overloading.py +0 -146
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pickling.cpp +0 -189
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pickling.py +0 -82
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pytypes.cpp +0 -560
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pytypes.py +0 -651
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_sequences_and_iterators.cpp +0 -500
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_sequences_and_iterators.py +0 -253
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_smart_ptr.cpp +0 -452
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_smart_ptr.py +0 -318
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl.cpp +0 -342
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl.py +0 -291
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl_binders.cpp +0 -131
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl_binders.py +0 -318
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_tagbased_polymorphic.cpp +0 -144
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_tagbased_polymorphic.py +0 -29
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_thread.cpp +0 -66
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_thread.py +0 -44
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_union.cpp +0 -22
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_union.py +0 -9
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_virtual_functions.cpp +0 -510
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_virtual_functions.py +0 -408
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/valgrind-numpy-scipy.supp +0 -140
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/valgrind-python.supp +0 -117
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/FindCatch.cmake +0 -70
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/FindEigen3.cmake +0 -86
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/FindPythonLibsNew.cmake +0 -257
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/check-style.sh +0 -44
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/cmake_uninstall.cmake.in +0 -23
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/libsize.py +0 -39
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/make_changelog.py +0 -64
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11Common.cmake +0 -402
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11Config.cmake.in +0 -233
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11NewTools.cmake +0 -276
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11Tools.cmake +0 -214
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pyproject.toml +0 -3
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/setup_global.py.in +0 -65
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/setup_main.py.in +0 -41
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/pyproject.toml +0 -8
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/setup.py +0 -144
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim/BDSPyATInterface.cpp +0 -403
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim/BDSPyATInterface.hh +0 -100
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim/__init__.py +0 -8
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim/pyCollimatorPass.py +0 -142
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim/xtrack_collimator.py +0 -556
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/PKG-INFO +0 -6
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/SOURCES.txt +0 -24
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/dependency_links.txt +0 -1
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/not-zip-safe +0 -1
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/top_level.txt +0 -1
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/README.md +0 -25
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_forions.dat +0 -25
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_new_example.dat +0 -18
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_old_example.dat +0 -68
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_testing.dat +0 -15
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_yaml_example.yaml +0 -110
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/collgaps.dat +0 -7
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/collgaps_pyat_test.dat +0 -3
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/collonly_twiss_file_example.tfs +0 -54
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/settings.gmad +0 -3
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/settings_black_absorber.gmad +0 -3
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/settings_ions.gmad +0 -5
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/twiss_file_testing.tfs +0 -51
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_pyat.py +0 -65
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_pyat_passmethod.py +0 -59
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_pyat_tracking.py +0 -102
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack.py +0 -75
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_angle.py +0 -74
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_colldb_load.py +0 -84
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_interaction.py +0 -159
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_interaction_ion.py +0 -99
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_ions.py +0 -78
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_lost_energy.py +0 -88
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_tilt.py +0 -80
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_tracking.py +0 -97
- xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_tracking_ions.py +0 -96
- {xcoll-0.5.8 → xcoll-0.7.1}/LICENSE +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/NOTICE +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/elements_src/blowup.h +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/elements_src/emittance_monitor.h +0 -0
- /xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/py.typed → /xcoll-0.7.1/xcoll/beam_elements/sweep.py +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/headers/checks.h +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/interaction_record/__init__.py +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/interaction_record/interaction_record_src/interaction_record.h +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/__init__.py +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/geometry.py +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/get_s.h +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/methods.h +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/objects.h +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/rotation.h +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/segments.h +0 -0
- {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/sort.h +0 -0
|
@@ -1,29 +1,33 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: xcoll
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.1
|
|
4
4
|
Summary: Xsuite collimation package
|
|
5
|
-
|
|
6
|
-
License: Apache 2.0
|
|
5
|
+
License: Apache-2.0
|
|
7
6
|
Author: Frederik F. Van der Veken
|
|
8
7
|
Author-email: frederik@cern.ch
|
|
9
|
-
Requires-Python: >=3.
|
|
10
|
-
Classifier: License ::
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
10
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
14
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
15
|
Provides-Extra: tests
|
|
18
16
|
Requires-Dist: numpy (>=1.0)
|
|
19
17
|
Requires-Dist: pandas (>=1.4)
|
|
20
|
-
Requires-Dist:
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist:
|
|
18
|
+
Requires-Dist: pytest ; extra == "tests"
|
|
19
|
+
Requires-Dist: pytest-html ; extra == "tests"
|
|
20
|
+
Requires-Dist: pytest-xdist ; extra == "tests"
|
|
21
|
+
Requires-Dist: ruamel-yaml (>=0.17.31,<0.18.15)
|
|
22
|
+
Requires-Dist: xdeps (>=0.10.8)
|
|
23
|
+
Requires-Dist: xobjects (>=0.5.6)
|
|
24
|
+
Requires-Dist: xpart (>=0.23.2)
|
|
25
|
+
Requires-Dist: xtrack (>=0.95.0)
|
|
26
|
+
Project-URL: Bug Tracker, https://github.com/xsuite/xsuite/issues
|
|
27
|
+
Project-URL: Documentation, https://xsuite.readthedocs.io/
|
|
28
|
+
Project-URL: Homepage, https://github.com/xsuite/xcoll
|
|
26
29
|
Project-URL: Repository, https://github.com/xsuite/xcoll
|
|
30
|
+
Project-URL: download, https://pypi.python.org/pypi/xcoll
|
|
27
31
|
Description-Content-Type: text/markdown
|
|
28
32
|
|
|
29
33
|
# xcoll
|
|
@@ -52,6 +56,8 @@ Collimation in xtrack simulations
|
|
|
52
56
|
* pandas
|
|
53
57
|
* xsuite (in particular xobjects, xdeps, xtrack, xpart)
|
|
54
58
|
|
|
59
|
+
* Geant4 and BDSIM: conda install bdsim-g4 -c conda-forge
|
|
60
|
+
|
|
55
61
|
### Installing
|
|
56
62
|
`xcoll` is packaged using `poetry`, and can be easily installed with `pip`:
|
|
57
63
|
```bash
|
|
@@ -24,6 +24,8 @@ Collimation in xtrack simulations
|
|
|
24
24
|
* pandas
|
|
25
25
|
* xsuite (in particular xobjects, xdeps, xtrack, xpart)
|
|
26
26
|
|
|
27
|
+
* Geant4 and BDSIM: conda install bdsim-g4 -c conda-forge
|
|
28
|
+
|
|
27
29
|
### Installing
|
|
28
30
|
`xcoll` is packaged using `poetry`, and can be easily installed with `pip`:
|
|
29
31
|
```bash
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "xcoll"
|
|
3
|
+
version = "0.7.1"
|
|
4
|
+
description = "Xsuite collimation package"
|
|
5
|
+
authors = [
|
|
6
|
+
{name="Frederik F. Van der Veken", email="frederik@cern.ch"},
|
|
7
|
+
{name="Simone O. Solstrand", email="simone.otelie.solstrand@cern.ch"},
|
|
8
|
+
{name="Björn Lindstrom", email="bjorn.lindstrom@cern.ch"},
|
|
9
|
+
{name="Giacomo Broggi", email="giacomo.broggi@cern.ch"},
|
|
10
|
+
{name="André Donadon Servelle", email="andre.donadon.servelle@cern.ch"},
|
|
11
|
+
{name="Dora E. Veres", email="dora.erzsebet.veres@cern.ch"},
|
|
12
|
+
{name="Despina Demetriadou", email="despina.demetriadou@cern.ch"},
|
|
13
|
+
{name="Andrey Abramov", email="andrey.abramov@cern.ch"},
|
|
14
|
+
{name="Giovanni Iadarola", email="giovanni.iadarola@cern.ch"}
|
|
15
|
+
]
|
|
16
|
+
readme = "README.md"
|
|
17
|
+
license = {text="Apache-2.0"}
|
|
18
|
+
|
|
19
|
+
requires-python = ">=3.10"
|
|
20
|
+
|
|
21
|
+
dependencies = [
|
|
22
|
+
"ruamel-yaml (>=0.17.31,<0.18.15)",
|
|
23
|
+
"numpy>=1.0",
|
|
24
|
+
"pandas>=1.4",
|
|
25
|
+
"xobjects>=0.5.6",
|
|
26
|
+
"xdeps>=0.10.8",
|
|
27
|
+
"xpart>=0.23.2",
|
|
28
|
+
"xtrack>=0.95.0",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.optional-dependencies]
|
|
32
|
+
tests = ["pytest", "pytest-html", "pytest-xdist"]
|
|
33
|
+
|
|
34
|
+
[project.urls]
|
|
35
|
+
homepage = "https://github.com/xsuite/xcoll"
|
|
36
|
+
repository = "https://github.com/xsuite/xcoll"
|
|
37
|
+
documentation = "https://xsuite.readthedocs.io/"
|
|
38
|
+
"Bug Tracker" = "https://github.com/xsuite/xsuite/issues"
|
|
39
|
+
download = "https://pypi.python.org/pypi/xcoll"
|
|
40
|
+
|
|
41
|
+
[project.entry-points.xobjects]
|
|
42
|
+
include = "xcoll"
|
|
43
|
+
|
|
44
|
+
[tool.poetry]
|
|
45
|
+
exclude = ["xcoll/lib", "xcoll/config"]
|
|
46
|
+
|
|
47
|
+
[poetry.group.dev.dependencies]
|
|
48
|
+
pytest = ">=7.3"
|
|
49
|
+
xaux = ">=0.3.10"
|
|
50
|
+
|
|
51
|
+
[build-system]
|
|
52
|
+
# Needed for pip install -e (BTW: need pip version 22)
|
|
53
|
+
requires = ["poetry-core>=2.0"]
|
|
54
|
+
build-backend = "poetry.core.masonry.api"
|
|
55
|
+
|
|
56
|
+
# pyproject.toml
|
|
57
|
+
#[tool.pytest.ini_options]
|
|
58
|
+
#addopts = "-ra --durations=10 --durations-min=1"
|
|
59
|
+
#python_functions = ["test_"]
|
|
60
|
+
#testpaths = [
|
|
61
|
+
# "tests",
|
|
62
|
+
#]
|
|
63
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# copyright ############################### #
|
|
2
|
+
# This file is part of the Xcoll package. #
|
|
3
|
+
# Copyright (c) CERN, 2025. #
|
|
4
|
+
# ######################################### #
|
|
5
|
+
|
|
6
|
+
from .general import _pkg_root, __version__, citation
|
|
7
|
+
|
|
8
|
+
from .beam_elements import BlackAbsorber, BlackCrystal, TransparentCollimator, TransparentCrystal, \
|
|
9
|
+
EverestBlock, EverestCollimator, EverestCrystal, Geant4Collimator, Geant4Crystal, \
|
|
10
|
+
BlowUp, EmittanceMonitor, collimator_classes, crystal_classes, element_classes
|
|
11
|
+
from .materials import Material, CrystalMaterial, RefMaterial
|
|
12
|
+
from .scattering_routines.geant4 import Geant4Engine
|
|
13
|
+
from .colldb import CollimatorDatabase
|
|
14
|
+
from .interaction_record import InteractionRecord
|
|
15
|
+
from .rf_sweep import RFSweep, prepare_rf_sweep
|
|
16
|
+
from .lossmap import LossMap, MultiLossMap
|
|
17
|
+
from .particles_tree import ParticlesTree
|
|
18
|
+
|
|
19
|
+
from .constants import particle_states, particle_state_names, interactions, interaction_names
|
|
20
|
+
|
|
21
|
+
# Initialise Geant4 environment
|
|
22
|
+
from .scattering_routines.geant4.wrapper import Geant4Wrapper as _Geant4Wrapper
|
|
23
|
+
geant4 = _Geant4Wrapper()
|
|
24
|
+
|
|
25
|
+
# print("If you use Xcoll in your simulations, please cite us :-)")
|
|
26
|
+
# print(citation)
|
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
from .base import BaseBlock, BaseCollimator, BaseCrystal
|
|
7
7
|
from .absorber import BlackAbsorber, BlackCrystal
|
|
8
|
+
from .transparent import TransparentCollimator, TransparentCrystal
|
|
8
9
|
from .everest import EverestBlock, EverestCollimator, EverestCrystal
|
|
10
|
+
from .geant4 import Geant4Collimator, Geant4Crystal
|
|
9
11
|
from .blowup import BlowUp
|
|
10
12
|
from .monitor import EmittanceMonitor
|
|
11
13
|
|
|
@@ -16,11 +16,16 @@ class BlackAbsorber(BaseCollimator):
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
isthick = True
|
|
19
|
+
needs_rng = False
|
|
19
20
|
allow_track = True
|
|
21
|
+
allow_double_sided = True
|
|
20
22
|
behaves_like_drift = True
|
|
23
|
+
allow_rot_and_shift = False
|
|
24
|
+
allow_loss_refinement = True
|
|
21
25
|
skip_in_loss_location_refinement = True
|
|
22
26
|
|
|
23
|
-
|
|
27
|
+
_noexpr_fields = BaseCollimator._noexpr_fields
|
|
28
|
+
_depends_on = [BaseCollimator, XcollGeometry]
|
|
24
29
|
|
|
25
30
|
_extra_c_sources = [
|
|
26
31
|
_pkg_root.joinpath('beam_elements','elements_src','black_absorber.h')
|
|
@@ -47,11 +52,16 @@ class BlackCrystal(BaseCrystal):
|
|
|
47
52
|
}
|
|
48
53
|
|
|
49
54
|
isthick = True
|
|
55
|
+
needs_rng = False
|
|
50
56
|
allow_track = True
|
|
57
|
+
allow_double_sided = False
|
|
51
58
|
behaves_like_drift = True
|
|
59
|
+
allow_rot_and_shift = False
|
|
60
|
+
allow_loss_refinement = True
|
|
52
61
|
skip_in_loss_location_refinement = True
|
|
53
62
|
|
|
54
|
-
|
|
63
|
+
_noexpr_fields = BaseCrystal._noexpr_fields
|
|
64
|
+
_depends_on = [BaseCrystal, XcollGeometry]
|
|
55
65
|
|
|
56
66
|
_extra_c_sources = [
|
|
57
67
|
_pkg_root.joinpath('beam_elements','elements_src','black_crystal.h')
|