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.
Files changed (466) hide show
  1. {xcoll-0.5.8 → xcoll-0.7.1}/PKG-INFO +20 -14
  2. {xcoll-0.5.8 → xcoll-0.7.1}/README.md +2 -0
  3. xcoll-0.7.1/pyproject.toml +63 -0
  4. xcoll-0.7.1/xcoll/__init__.py +26 -0
  5. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/__init__.py +2 -0
  6. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/absorber.py +12 -2
  7. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/base.py +222 -98
  8. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/blowup.py +1 -0
  9. xcoll-0.7.1/xcoll/beam_elements/elements_src/black_absorber.h +135 -0
  10. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/elements_src/black_crystal.h +50 -51
  11. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/elements_src/everest_block.h +30 -31
  12. xcoll-0.7.1/xcoll/beam_elements/elements_src/everest_collimator.h +227 -0
  13. xcoll-0.7.1/xcoll/beam_elements/elements_src/everest_crystal.h +267 -0
  14. xcoll-0.7.1/xcoll/beam_elements/elements_src/geant4_collimator.h +153 -0
  15. xcoll-0.7.1/xcoll/beam_elements/elements_src/rf_sweep.h +23 -0
  16. xcoll-0.7.1/xcoll/beam_elements/elements_src/transparent_collimator.h +126 -0
  17. xcoll-0.7.1/xcoll/beam_elements/elements_src/transparent_crystal.h +118 -0
  18. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/everest.py +56 -29
  19. xcoll-0.7.1/xcoll/beam_elements/geant4.py +142 -0
  20. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/monitor.py +1 -0
  21. xcoll-0.7.1/xcoll/beam_elements/transparent.py +83 -0
  22. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/colldb.py +97 -180
  23. xcoll-0.7.1/xcoll/constants/__init__.py +10 -0
  24. xcoll-0.7.1/xcoll/constants/aggregate_constants.py +202 -0
  25. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/general.py +2 -2
  26. xcoll-0.7.1/xcoll/geometry.md +42 -0
  27. xcoll-0.7.1/xcoll/headers/particle_states.py +60 -0
  28. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/initial_distribution.py +139 -104
  29. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/interaction_record/interaction_record.py +11 -5
  30. xcoll-0.7.1/xcoll/interaction_record/interaction_types.py +46 -0
  31. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/line_tools.py +166 -89
  32. xcoll-0.7.1/xcoll/lossmap.py +614 -0
  33. xcoll-0.7.1/xcoll/materials/__init__.py +45 -0
  34. xcoll-0.7.1/xcoll/materials/allotropes.py +48 -0
  35. xcoll-0.7.1/xcoll/materials/atoms.py +193 -0
  36. xcoll-0.7.1/xcoll/materials/compounds.py +50 -0
  37. xcoll-0.7.1/xcoll/materials/crystals.py +29 -0
  38. xcoll-0.7.1/xcoll/materials/database.py +422 -0
  39. xcoll-0.7.1/xcoll/materials/material.py +1142 -0
  40. xcoll-0.7.1/xcoll/materials/mixtures.py +132 -0
  41. xcoll-0.7.1/xcoll/materials/parameters.py +89 -0
  42. xcoll-0.7.1/xcoll/materials/sixtrack.py +108 -0
  43. xcoll-0.7.1/xcoll/particles_tree.py +338 -0
  44. xcoll-0.7.1/xcoll/plot.py +109 -0
  45. xcoll-0.7.1/xcoll/prebuilt_kernel_definitions/__init__.py +7 -0
  46. xcoll-0.7.1/xcoll/prebuilt_kernel_definitions/element_inits.py +6 -0
  47. xcoll-0.7.1/xcoll/prebuilt_kernel_definitions/element_types.py +21 -0
  48. xcoll-0.7.1/xcoll/pretty_print.py +256 -0
  49. xcoll-0.7.1/xcoll/rf_sweep.py +194 -0
  50. xcoll-0.7.1/xcoll/scattering_routines/engine.py +730 -0
  51. xcoll-0.7.1/xcoll/scattering_routines/environment.py +333 -0
  52. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/__init__.py +0 -1
  53. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/amorphous.h +110 -82
  54. xcoll-0.7.1/xcoll/scattering_routines/everest/channelling.h +250 -0
  55. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/constants.h +1 -9
  56. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/crystal_parameters.h +15 -15
  57. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/everest.h +14 -26
  58. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/everest.py +3 -2
  59. xcoll-0.7.1/xcoll/scattering_routines/everest/ionisation_loss.h +147 -0
  60. xcoll-0.7.1/xcoll/scattering_routines/everest/jaw.h +61 -0
  61. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/everest/multiple_coulomb_scattering.h +11 -3
  62. xcoll-0.7.1/xcoll/scattering_routines/everest/nuclear_interaction.h +107 -0
  63. xcoll-0.7.1/xcoll/scattering_routines/everest/properties.h +111 -0
  64. xcoll-0.7.1/xcoll/scattering_routines/geant4/__init__.py +7 -0
  65. xcoll-0.7.1/xcoll/scattering_routines/geant4/bdsim_config.py +123 -0
  66. xcoll-0.7.1/xcoll/scattering_routines/geant4/engine.py +281 -0
  67. xcoll-0.7.1/xcoll/scattering_routines/geant4/engine_server.py +70 -0
  68. xcoll-0.7.1/xcoll/scattering_routines/geant4/environment.py +110 -0
  69. xcoll-0.7.1/xcoll/scattering_routines/geant4/rpyc.py +82 -0
  70. {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
  71. {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
  72. xcoll-0.7.1/xcoll/scattering_routines/geant4/scattering_src/CMakeLists.txt +72 -0
  73. {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
  74. xcoll-0.7.1/xcoll/scattering_routines/geant4/scattering_src/xcoll_logging.h +106 -0
  75. xcoll-0.7.1/xcoll/scattering_routines/geant4/std_redirect.py +35 -0
  76. xcoll-0.7.1/xcoll/scattering_routines/geant4/track.py +147 -0
  77. xcoll-0.7.1/xcoll/scattering_routines/geant4/wrapper.py +18 -0
  78. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/collimator_geometry.h +88 -0
  79. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/crystal_geometry.h +69 -0
  80. xcoll-0.7.1/xcoll/scattering_routines/wrapper.py +43 -0
  81. xcoll-0.7.1/xcoll/xaux.py +79 -0
  82. xcoll-0.7.1/xcoll/xoconstants.py +530 -0
  83. xcoll-0.5.8/pyproject.toml +0 -52
  84. xcoll-0.5.8/xcoll/__init__.py +0 -33
  85. xcoll-0.5.8/xcoll/_manager.py +0 -22
  86. xcoll-0.5.8/xcoll/beam_elements/elements_src/black_absorber.h +0 -136
  87. xcoll-0.5.8/xcoll/beam_elements/elements_src/everest_collimator.h +0 -226
  88. xcoll-0.5.8/xcoll/beam_elements/elements_src/everest_crystal.h +0 -275
  89. xcoll-0.5.8/xcoll/headers/particle_states.h +0 -25
  90. xcoll-0.5.8/xcoll/install.py +0 -35
  91. xcoll-0.5.8/xcoll/interaction_record/interaction_types.py +0 -52
  92. xcoll-0.5.8/xcoll/lossmap.py +0 -219
  93. xcoll-0.5.8/xcoll/rf_sweep.py +0 -191
  94. xcoll-0.5.8/xcoll/scattering_routines/everest/channeling.h +0 -240
  95. xcoll-0.5.8/xcoll/scattering_routines/everest/jaw.h +0 -65
  96. xcoll-0.5.8/xcoll/scattering_routines/everest/materials.py +0 -365
  97. xcoll-0.5.8/xcoll/scattering_routines/everest/nuclear_interaction.h +0 -86
  98. xcoll-0.5.8/xcoll/scattering_routines/everest/properties.h +0 -180
  99. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/.git +0 -1
  100. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/.gitignore +0 -2
  101. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/CMakeLists.txt +0 -18
  102. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/ComponentMakefile +0 -192
  103. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/Makefile +0 -144
  104. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/README +0 -26
  105. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/Doxyfile +0 -1551
  106. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.asciidoc +0 -1054
  107. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.epub +0 -0
  108. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.html +0 -1607
  109. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.pdf +0 -0
  110. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__1.png +0 -0
  111. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__2.png +0 -0
  112. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__3.png +0 -0
  113. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__4.png +0 -0
  114. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__5.png +0 -0
  115. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__6.png +0 -0
  116. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__7.png +0 -0
  117. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/Makefile +0 -8
  118. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/doc/docbook.xsl +0 -1690
  119. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/Connection.h +0 -79
  120. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/FlukaIO.h +0 -58
  121. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/FlukaIOServer.h +0 -33
  122. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/FortranFlukaIO.h +0 -277
  123. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/Message.h +0 -89
  124. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/include/ParticleInfo.h +0 -76
  125. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/lib/libFlukaIO64.a +0 -0
  126. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/lib/libFlukaIO64.so +0 -0
  127. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/samples/ClientTest.c +0 -156
  128. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/samples/ServerTest.c +0 -123
  129. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/samples/fclient.f +0 -149
  130. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/samples/fserver.f +0 -118
  131. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/Connection.c +0 -264
  132. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/Connection.d +0 -69
  133. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/Connection.o +0 -0
  134. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIO.c +0 -211
  135. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIO.d +0 -46
  136. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIO.o +0 -0
  137. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.c +0 -45
  138. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.d +0 -29
  139. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.h +0 -17
  140. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.o +0 -0
  141. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer.c +0 -84
  142. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer.d +0 -70
  143. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer.o +0 -0
  144. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer_private.h +0 -22
  145. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FlukaIO_private.h +0 -16
  146. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FortranFlukaIO.c +0 -533
  147. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FortranFlukaIO.d +0 -40
  148. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/FortranFlukaIO.o +0 -0
  149. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/NetIO.c +0 -304
  150. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/NetIO.d +0 -66
  151. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/NetIO.h +0 -30
  152. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/NetIO.o +0 -0
  153. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/src/tags +0 -167
  154. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/AllTests.cpp +0 -8
  155. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/CommonTest.h +0 -10
  156. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/ConnectionTest.cpp +0 -99
  157. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/FlukaIOServerTest.cpp +0 -104
  158. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/FlukaIOTest.cpp +0 -439
  159. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/FortranFlukaIOTest.cpp +0 -682
  160. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeConnection.c +0 -19
  161. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeConnection.h +0 -16
  162. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIO.c +0 -74
  163. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIO.h +0 -50
  164. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOHandshake.c +0 -16
  165. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOHandshake.h +0 -20
  166. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOServer.c +0 -12
  167. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOServer.h +0 -18
  168. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFortranFlukaIO.h +0 -19
  169. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeNetIO.c +0 -80
  170. xcoll-0.5.8/xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeNetIO.h +0 -35
  171. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/.git +0 -1
  172. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/.gitignore +0 -12
  173. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/.gitmodules +0 -3
  174. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/CMakeLists.txt +0 -26
  175. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/README.md +0 -21
  176. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/docs/Makefile +0 -20
  177. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/docs/make.bat +0 -35
  178. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/docs/source/collimasim.rst +0 -10
  179. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/docs/source/conf.py +0 -59
  180. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/docs/source/index.rst +0 -26
  181. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.appveyor.yml +0 -37
  182. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.clang-format +0 -19
  183. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.clang-tidy +0 -65
  184. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.cmake-format.yaml +0 -73
  185. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.git +0 -1
  186. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/CODEOWNERS +0 -9
  187. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/CONTRIBUTING.md +0 -386
  188. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +0 -45
  189. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/ISSUE_TEMPLATE/config.yml +0 -8
  190. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/dependabot.yml +0 -16
  191. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/labeler.yml +0 -8
  192. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/labeler_merged.yml +0 -3
  193. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/pull_request_template.md +0 -19
  194. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/ci.yml +0 -969
  195. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/configure.yml +0 -84
  196. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/format.yml +0 -48
  197. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/labeler.yml +0 -16
  198. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/pip.yml +0 -103
  199. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.gitignore +0 -45
  200. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.pre-commit-config.yaml +0 -151
  201. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.readthedocs.yml +0 -3
  202. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/CMakeLists.txt +0 -297
  203. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/LICENSE +0 -29
  204. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/MANIFEST.in +0 -6
  205. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/README.rst +0 -180
  206. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/Doxyfile +0 -23
  207. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/Makefile +0 -192
  208. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/_static/theme_overrides.css +0 -11
  209. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/chrono.rst +0 -81
  210. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/custom.rst +0 -93
  211. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/eigen.rst +0 -310
  212. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/functional.rst +0 -109
  213. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/index.rst +0 -43
  214. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/overview.rst +0 -171
  215. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/stl.rst +0 -251
  216. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/strings.rst +0 -305
  217. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/classes.rst +0 -1297
  218. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/embedding.rst +0 -262
  219. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/exceptions.rst +0 -396
  220. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/functions.rst +0 -568
  221. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/misc.rst +0 -337
  222. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/index.rst +0 -13
  223. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/numpy.rst +0 -463
  224. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/object.rst +0 -286
  225. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/utilities.rst +0 -155
  226. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/smart_ptrs.rst +0 -174
  227. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/basics.rst +0 -308
  228. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/benchmark.py +0 -91
  229. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/benchmark.rst +0 -95
  230. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/changelog.rst +0 -2050
  231. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/classes.rst +0 -542
  232. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/cmake/index.rst +0 -8
  233. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/compiling.rst +0 -648
  234. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/conf.py +0 -381
  235. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/faq.rst +0 -343
  236. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/index.rst +0 -48
  237. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/installing.rst +0 -105
  238. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/limitations.rst +0 -72
  239. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11-logo.png +0 -0
  240. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
  241. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python1.svg +0 -427
  242. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
  243. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python2.svg +0 -427
  244. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/reference.rst +0 -130
  245. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/release.rst +0 -96
  246. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/requirements.txt +0 -8
  247. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/upgrade.rst +0 -548
  248. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/attr.h +0 -605
  249. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/buffer_info.h +0 -144
  250. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/cast.h +0 -1432
  251. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/chrono.h +0 -213
  252. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/common.h +0 -2
  253. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/complex.h +0 -65
  254. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/class.h +0 -709
  255. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/common.h +0 -1021
  256. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/descr.h +0 -104
  257. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/init.h +0 -346
  258. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/internals.h +0 -467
  259. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/type_caster_base.h +0 -978
  260. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/typeid.h +0 -55
  261. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/eigen.h +0 -606
  262. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/embed.h +0 -284
  263. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/eval.h +0 -163
  264. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/functional.h +0 -121
  265. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/gil.h +0 -193
  266. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/iostream.h +0 -275
  267. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/numpy.h +0 -1741
  268. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/operators.h +0 -163
  269. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/options.h +0 -65
  270. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/pybind11.h +0 -2497
  271. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/pytypes.h +0 -1879
  272. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/stl/filesystem.h +0 -103
  273. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/stl.h +0 -375
  274. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/stl_bind.h +0 -747
  275. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/noxfile.py +0 -88
  276. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/__init__.py +0 -11
  277. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/__main__.py +0 -52
  278. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/_version.py +0 -12
  279. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/_version.pyi +0 -6
  280. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/commands.py +0 -21
  281. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/setup_helpers.py +0 -482
  282. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/setup_helpers.pyi +0 -63
  283. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pyproject.toml +0 -41
  284. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/setup.cfg +0 -56
  285. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/setup.py +0 -155
  286. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/CMakeLists.txt +0 -503
  287. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/conftest.py +0 -208
  288. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/constructor_stats.h +0 -275
  289. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/cross_module_gil_utils.cpp +0 -73
  290. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/env.py +0 -33
  291. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_python_package/pytest.ini +0 -0
  292. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_python_package/test_files.py +0 -279
  293. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_setuptools/pytest.ini +0 -0
  294. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_setuptools/test_setuphelper.py +0 -143
  295. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/local_bindings.h +0 -85
  296. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/object.h +0 -179
  297. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pybind11_cross_module_tests.cpp +0 -151
  298. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pybind11_tests.cpp +0 -91
  299. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pybind11_tests.h +0 -85
  300. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pytest.ini +0 -19
  301. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/requirements.txt +0 -12
  302. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_async.cpp +0 -26
  303. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_async.py +0 -25
  304. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_buffers.cpp +0 -216
  305. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_buffers.py +0 -163
  306. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_builtin_casters.cpp +0 -286
  307. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_builtin_casters.py +0 -536
  308. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_call_policies.cpp +0 -107
  309. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_call_policies.py +0 -248
  310. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_callbacks.cpp +0 -227
  311. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_callbacks.py +0 -202
  312. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_chrono.cpp +0 -84
  313. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_chrono.py +0 -210
  314. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_class.cpp +0 -550
  315. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_class.py +0 -473
  316. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -84
  317. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/embed.cpp +0 -21
  318. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -28
  319. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -39
  320. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -46
  321. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/main.cpp +0 -6
  322. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -41
  323. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -35
  324. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -41
  325. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/test.py +0 -10
  326. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_constants_and_functions.cpp +0 -165
  327. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_constants_and_functions.py +0 -53
  328. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_copy_move.cpp +0 -238
  329. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_copy_move.py +0 -126
  330. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_casters.cpp +0 -141
  331. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_casters.py +0 -117
  332. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_setup.cpp +0 -41
  333. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_setup.py +0 -50
  334. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_docstring_options.cpp +0 -69
  335. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_docstring_options.py +0 -42
  336. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eigen.cpp +0 -348
  337. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eigen.py +0 -771
  338. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/CMakeLists.txt +0 -47
  339. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/catch.cpp +0 -22
  340. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/external_module.cpp +0 -23
  341. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/test_interpreter.cpp +0 -326
  342. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/test_interpreter.py +0 -15
  343. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_enum.cpp +0 -148
  344. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_enum.py +0 -272
  345. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eval.cpp +0 -119
  346. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eval.py +0 -51
  347. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eval_call.py +0 -5
  348. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_exceptions.cpp +0 -285
  349. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_exceptions.h +0 -12
  350. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_exceptions.py +0 -265
  351. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_factory_constructors.cpp +0 -397
  352. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_factory_constructors.py +0 -520
  353. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_gil_scoped.cpp +0 -49
  354. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_gil_scoped.py +0 -94
  355. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_iostream.cpp +0 -125
  356. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_iostream.py +0 -331
  357. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_kwargs_and_defaults.cpp +0 -153
  358. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_kwargs_and_defaults.py +0 -284
  359. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_local_bindings.cpp +0 -107
  360. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_local_bindings.py +0 -257
  361. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_methods_and_attributes.cpp +0 -412
  362. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_methods_and_attributes.py +0 -517
  363. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_modules.cpp +0 -102
  364. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_modules.py +0 -92
  365. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_multiple_inheritance.cpp +0 -233
  366. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_multiple_inheritance.py +0 -360
  367. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_array.cpp +0 -472
  368. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_array.py +0 -593
  369. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_dtypes.cpp +0 -524
  370. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_dtypes.py +0 -441
  371. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_vectorize.cpp +0 -103
  372. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_vectorize.py +0 -267
  373. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_opaque_types.cpp +0 -73
  374. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_opaque_types.py +0 -59
  375. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_operator_overloading.cpp +0 -235
  376. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_operator_overloading.py +0 -146
  377. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pickling.cpp +0 -189
  378. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pickling.py +0 -82
  379. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pytypes.cpp +0 -560
  380. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pytypes.py +0 -651
  381. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_sequences_and_iterators.cpp +0 -500
  382. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_sequences_and_iterators.py +0 -253
  383. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_smart_ptr.cpp +0 -452
  384. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_smart_ptr.py +0 -318
  385. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl.cpp +0 -342
  386. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl.py +0 -291
  387. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl_binders.cpp +0 -131
  388. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl_binders.py +0 -318
  389. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_tagbased_polymorphic.cpp +0 -144
  390. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_tagbased_polymorphic.py +0 -29
  391. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_thread.cpp +0 -66
  392. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_thread.py +0 -44
  393. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_union.cpp +0 -22
  394. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_union.py +0 -9
  395. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_virtual_functions.cpp +0 -510
  396. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_virtual_functions.py +0 -408
  397. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/valgrind-numpy-scipy.supp +0 -140
  398. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/valgrind-python.supp +0 -117
  399. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/FindCatch.cmake +0 -70
  400. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/FindEigen3.cmake +0 -86
  401. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/FindPythonLibsNew.cmake +0 -257
  402. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/check-style.sh +0 -44
  403. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/cmake_uninstall.cmake.in +0 -23
  404. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/libsize.py +0 -39
  405. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/make_changelog.py +0 -64
  406. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11Common.cmake +0 -402
  407. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11Config.cmake.in +0 -233
  408. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11NewTools.cmake +0 -276
  409. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11Tools.cmake +0 -214
  410. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pyproject.toml +0 -3
  411. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/setup_global.py.in +0 -65
  412. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/setup_main.py.in +0 -41
  413. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/pyproject.toml +0 -8
  414. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/setup.py +0 -144
  415. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim/BDSPyATInterface.cpp +0 -403
  416. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim/BDSPyATInterface.hh +0 -100
  417. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim/__init__.py +0 -8
  418. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim/pyCollimatorPass.py +0 -142
  419. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim/xtrack_collimator.py +0 -556
  420. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/PKG-INFO +0 -6
  421. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/SOURCES.txt +0 -24
  422. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/dependency_links.txt +0 -1
  423. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/not-zip-safe +0 -1
  424. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/top_level.txt +0 -1
  425. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/README.md +0 -25
  426. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_forions.dat +0 -25
  427. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_new_example.dat +0 -18
  428. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_old_example.dat +0 -68
  429. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_testing.dat +0 -15
  430. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_yaml_example.yaml +0 -110
  431. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/collgaps.dat +0 -7
  432. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/collgaps_pyat_test.dat +0 -3
  433. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/collonly_twiss_file_example.tfs +0 -54
  434. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/settings.gmad +0 -3
  435. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/settings_black_absorber.gmad +0 -3
  436. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/settings_ions.gmad +0 -5
  437. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/resources/twiss_file_testing.tfs +0 -51
  438. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_pyat.py +0 -65
  439. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_pyat_passmethod.py +0 -59
  440. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_pyat_tracking.py +0 -102
  441. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack.py +0 -75
  442. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_angle.py +0 -74
  443. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_colldb_load.py +0 -84
  444. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_interaction.py +0 -159
  445. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_interaction_ion.py +0 -99
  446. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_ions.py +0 -78
  447. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_lost_energy.py +0 -88
  448. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_tilt.py +0 -80
  449. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_tracking.py +0 -97
  450. xcoll-0.5.8/xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_tracking_ions.py +0 -96
  451. {xcoll-0.5.8 → xcoll-0.7.1}/LICENSE +0 -0
  452. {xcoll-0.5.8 → xcoll-0.7.1}/NOTICE +0 -0
  453. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/elements_src/blowup.h +0 -0
  454. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/beam_elements/elements_src/emittance_monitor.h +0 -0
  455. /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
  456. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/headers/checks.h +0 -0
  457. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/interaction_record/__init__.py +0 -0
  458. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/interaction_record/interaction_record_src/interaction_record.h +0 -0
  459. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/__init__.py +0 -0
  460. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/geometry.py +0 -0
  461. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/get_s.h +0 -0
  462. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/methods.h +0 -0
  463. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/objects.h +0 -0
  464. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/rotation.h +0 -0
  465. {xcoll-0.5.8 → xcoll-0.7.1}/xcoll/scattering_routines/geometry/segments.h +0 -0
  466. {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
1
+ Metadata-Version: 2.3
2
2
  Name: xcoll
3
- Version: 0.5.8
3
+ Version: 0.7.1
4
4
  Summary: Xsuite collimation package
5
- Home-page: https://github.com/xsuite/xcoll
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.8
10
- Classifier: License :: Other/Proprietary 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: ruamel-yaml (>=0.17.31,<0.18.0) ; extra == "tests"
21
- Requires-Dist: xdeps (>=0.1.1)
22
- Requires-Dist: xfields (>=0.12.1)
23
- Requires-Dist: xobjects (>=0.2.6)
24
- Requires-Dist: xpart (>=0.15.0)
25
- Requires-Dist: xtrack (>=0.36.5)
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
- _depends_on = [BaseCollimator, XcollGeometry]
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
- _depends_on = [BaseCrystal, XcollGeometry]
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')