xcoll 0.3.6__py3-none-any.whl → 0.5.0__py3-none-any.whl
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.
Potentially problematic release.
This version of xcoll might be problematic. Click here for more details.
- xcoll/__init__.py +13 -4
- xcoll/beam_elements/__init__.py +14 -6
- xcoll/beam_elements/absorber.py +41 -7
- xcoll/beam_elements/base.py +1202 -247
- xcoll/beam_elements/blowup.py +198 -0
- xcoll/beam_elements/elements_src/black_absorber.h +136 -0
- xcoll/beam_elements/elements_src/black_crystal.h +129 -0
- xcoll/beam_elements/elements_src/blowup.h +42 -0
- xcoll/beam_elements/elements_src/emittance_monitor.h +109 -0
- xcoll/beam_elements/{collimators_src → elements_src}/everest_block.h +59 -30
- xcoll/beam_elements/elements_src/everest_collimator.h +237 -0
- xcoll/beam_elements/elements_src/everest_crystal.h +280 -0
- xcoll/beam_elements/everest.py +65 -119
- xcoll/beam_elements/monitor.py +428 -0
- xcoll/colldb.py +276 -747
- xcoll/general.py +5 -5
- xcoll/headers/checks.h +1 -1
- xcoll/headers/particle_states.h +2 -2
- xcoll/initial_distribution.py +207 -0
- xcoll/install.py +179 -0
- xcoll/interaction_record/__init__.py +1 -0
- xcoll/interaction_record/interaction_record.py +298 -0
- xcoll/interaction_record/interaction_record_src/interaction_record.h +98 -0
- xcoll/{impacts → interaction_record}/interaction_types.py +11 -4
- xcoll/line_tools.py +82 -0
- xcoll/lossmap.py +219 -0
- xcoll/manager.py +2 -937
- xcoll/rf_sweep.py +1 -1
- xcoll/scattering_routines/everest/amorphous.h +232 -0
- xcoll/scattering_routines/everest/channeling.h +240 -0
- xcoll/scattering_routines/everest/crystal_parameters.h +137 -0
- xcoll/scattering_routines/everest/everest.h +11 -30
- xcoll/scattering_routines/everest/everest.py +13 -10
- xcoll/scattering_routines/everest/jaw.h +28 -197
- xcoll/scattering_routines/everest/materials.py +37 -15
- xcoll/scattering_routines/everest/multiple_coulomb_scattering.h +31 -10
- xcoll/scattering_routines/everest/nuclear_interaction.h +86 -0
- xcoll/scattering_routines/everest/properties.h +6 -1
- xcoll/scattering_routines/fluka/flukaio/lib/libFlukaIO64.a +0 -0
- xcoll/scattering_routines/geant4/collimasim/.git +1 -0
- xcoll/scattering_routines/geant4/collimasim/.gitignore +12 -0
- xcoll/scattering_routines/geant4/collimasim/.gitmodules +3 -0
- xcoll/scattering_routines/geant4/collimasim/CMakeLists.txt +26 -0
- xcoll/scattering_routines/geant4/collimasim/README.md +21 -0
- xcoll/scattering_routines/geant4/collimasim/docs/Makefile +20 -0
- xcoll/scattering_routines/geant4/collimasim/docs/make.bat +35 -0
- xcoll/scattering_routines/geant4/collimasim/docs/source/collimasim.rst +10 -0
- xcoll/scattering_routines/geant4/collimasim/docs/source/conf.py +59 -0
- xcoll/scattering_routines/geant4/collimasim/docs/source/index.rst +26 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.appveyor.yml +37 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.clang-format +19 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.clang-tidy +65 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.cmake-format.yaml +73 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.git +1 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/CODEOWNERS +9 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/CONTRIBUTING.md +386 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +45 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/dependabot.yml +16 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/labeler.yml +8 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/labeler_merged.yml +3 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/pull_request_template.md +19 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/ci.yml +969 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/configure.yml +84 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/format.yml +48 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/labeler.yml +16 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.github/workflows/pip.yml +103 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.gitignore +45 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.pre-commit-config.yaml +151 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/.readthedocs.yml +3 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/CMakeLists.txt +297 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/LICENSE +29 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/MANIFEST.in +6 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/README.rst +180 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/Doxyfile +23 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/Makefile +192 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/_static/theme_overrides.css +11 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/chrono.rst +81 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/custom.rst +93 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/eigen.rst +310 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/functional.rst +109 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/index.rst +43 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/overview.rst +171 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/stl.rst +251 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/cast/strings.rst +305 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/classes.rst +1297 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/embedding.rst +262 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/exceptions.rst +396 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/functions.rst +568 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/misc.rst +337 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/index.rst +13 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/numpy.rst +463 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/object.rst +286 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/advanced/smart_ptrs.rst +174 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/basics.rst +308 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/benchmark.py +91 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/benchmark.rst +95 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/changelog.rst +2050 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/classes.rst +542 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/cmake/index.rst +8 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/compiling.rst +648 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/conf.py +381 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/faq.rst +343 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/index.rst +48 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/installing.rst +105 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/limitations.rst +72 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11-logo.png +0 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/reference.rst +130 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/release.rst +96 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/requirements.txt +8 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/docs/upgrade.rst +548 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/attr.h +605 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/buffer_info.h +144 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/cast.h +1432 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/chrono.h +213 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/common.h +2 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/complex.h +65 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/class.h +709 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/common.h +1021 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/descr.h +104 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/init.h +346 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/internals.h +467 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/type_caster_base.h +978 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/detail/typeid.h +55 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/eigen.h +606 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/embed.h +284 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/eval.h +163 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/functional.h +121 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/gil.h +193 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/iostream.h +275 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/numpy.h +1741 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/operators.h +163 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/options.h +65 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/pybind11.h +2497 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/pytypes.h +1879 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/stl/filesystem.h +103 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/stl.h +375 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/include/pybind11/stl_bind.h +747 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/noxfile.py +88 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/__init__.py +11 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/__main__.py +52 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/_version.py +12 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/_version.pyi +6 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/commands.py +21 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/py.typed +0 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/setup_helpers.py +482 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pybind11/setup_helpers.pyi +63 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/pyproject.toml +41 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/setup.cfg +56 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/setup.py +155 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/CMakeLists.txt +503 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/conftest.py +208 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/constructor_stats.h +275 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/cross_module_gil_utils.cpp +73 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/env.py +33 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_python_package/pytest.ini +0 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_python_package/test_files.py +279 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/extra_setuptools/test_setuphelper.py +143 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/local_bindings.h +85 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/object.h +179 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pybind11_cross_module_tests.cpp +151 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pybind11_tests.cpp +91 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pybind11_tests.h +85 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/pytest.ini +19 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/requirements.txt +12 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_async.cpp +26 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_async.py +25 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_buffers.cpp +216 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_buffers.py +163 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_builtin_casters.cpp +286 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_builtin_casters.py +536 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_call_policies.cpp +107 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_call_policies.py +248 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_callbacks.cpp +227 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_callbacks.py +202 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_chrono.cpp +84 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_chrono.py +210 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_class.cpp +550 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_class.py +473 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/CMakeLists.txt +84 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/embed.cpp +21 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +28 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +39 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +46 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/main.cpp +6 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +41 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +35 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +41 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_cmake_build/test.py +10 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_constants_and_functions.cpp +165 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_constants_and_functions.py +53 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_copy_move.cpp +238 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_copy_move.py +126 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_casters.cpp +141 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_casters.py +117 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_setup.cpp +41 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_custom_type_setup.py +50 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_docstring_options.cpp +69 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_docstring_options.py +42 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eigen.cpp +348 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eigen.py +771 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/CMakeLists.txt +47 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/catch.cpp +22 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/external_module.cpp +23 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/test_interpreter.cpp +326 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_embed/test_interpreter.py +15 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_enum.cpp +148 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_enum.py +272 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eval.cpp +119 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eval.py +51 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_eval_call.py +5 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_exceptions.cpp +285 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_exceptions.h +12 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_exceptions.py +265 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_factory_constructors.cpp +397 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_factory_constructors.py +520 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_gil_scoped.cpp +49 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_gil_scoped.py +94 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_iostream.cpp +125 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_iostream.py +331 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_kwargs_and_defaults.cpp +153 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_kwargs_and_defaults.py +284 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_local_bindings.cpp +107 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_local_bindings.py +257 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_methods_and_attributes.cpp +412 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_methods_and_attributes.py +517 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_modules.cpp +102 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_modules.py +92 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_multiple_inheritance.cpp +233 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_multiple_inheritance.py +360 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_array.cpp +472 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_array.py +593 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_dtypes.cpp +524 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_dtypes.py +441 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_vectorize.cpp +103 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_numpy_vectorize.py +267 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_opaque_types.cpp +73 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_opaque_types.py +59 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_operator_overloading.cpp +235 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_operator_overloading.py +146 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pickling.cpp +189 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pickling.py +82 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pytypes.cpp +560 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_pytypes.py +651 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_sequences_and_iterators.cpp +500 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_sequences_and_iterators.py +253 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_smart_ptr.cpp +452 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_smart_ptr.py +318 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl.cpp +342 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl.py +291 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl_binders.cpp +131 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_stl_binders.py +318 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_tagbased_polymorphic.cpp +144 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_tagbased_polymorphic.py +29 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_thread.cpp +66 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_thread.py +44 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_union.cpp +22 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_union.py +9 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_virtual_functions.cpp +510 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/test_virtual_functions.py +408 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tests/valgrind-python.supp +117 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/FindCatch.cmake +70 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/FindEigen3.cmake +86 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/FindPythonLibsNew.cmake +257 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/check-style.sh +44 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/cmake_uninstall.cmake.in +23 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/libsize.py +39 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/make_changelog.py +64 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11Common.cmake +402 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11Config.cmake.in +233 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11NewTools.cmake +276 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pybind11Tools.cmake +214 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/pyproject.toml +3 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/setup_global.py.in +65 -0
- xcoll/scattering_routines/geant4/collimasim/lib/pybind11/tools/setup_main.py.in +41 -0
- xcoll/scattering_routines/geant4/collimasim/pyproject.toml +8 -0
- xcoll/scattering_routines/geant4/collimasim/setup.py +144 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim/BDSPyATInterface.cpp +403 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim/BDSPyATInterface.hh +100 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim/BDSXtrackInterface.cpp +763 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim/BDSXtrackInterface.hh +118 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim/__init__.py +8 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim/bindings.cpp +63 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim/pyCollimatorPass.py +142 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim/xtrack_collimator.py +556 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/PKG-INFO +6 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/SOURCES.txt +24 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/dependency_links.txt +1 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/not-zip-safe +1 -0
- xcoll/scattering_routines/geant4/collimasim/src/collimasim.egg-info/top_level.txt +1 -0
- xcoll/scattering_routines/geant4/collimasim/tests/README.md +25 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_forions.dat +25 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_new_example.dat +18 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_old_example.dat +68 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_testing.dat +15 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/CollDB_yaml_example.yaml +110 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/collgaps.dat +7 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/collgaps_pyat_test.dat +3 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/collonly_twiss_file_example.tfs +54 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/settings.gmad +3 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/settings_black_absorber.gmad +3 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/settings_ions.gmad +5 -0
- xcoll/scattering_routines/geant4/collimasim/tests/resources/twiss_file_testing.tfs +51 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_pyat.py +65 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_pyat_passmethod.py +59 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_pyat_tracking.py +102 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack.py +75 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_angle.py +74 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_colldb_load.py +84 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_interaction.py +159 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_interaction_ion.py +99 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_ions.py +78 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_lost_energy.py +88 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_tilt.py +80 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_tracking.py +97 -0
- xcoll/scattering_routines/geant4/collimasim/tests/test_xtrack_tracking_ions.py +96 -0
- xcoll/scattering_routines/geometry/__init__.py +6 -0
- xcoll/scattering_routines/geometry/collimator_geometry.h +218 -0
- xcoll/scattering_routines/geometry/crystal_geometry.h +153 -0
- xcoll/scattering_routines/geometry/geometry.py +26 -0
- xcoll/scattering_routines/geometry/get_s.h +92 -0
- xcoll/scattering_routines/geometry/methods.h +111 -0
- xcoll/scattering_routines/geometry/objects.h +154 -0
- xcoll/scattering_routines/geometry/rotation.h +23 -0
- xcoll/scattering_routines/geometry/segments.h +226 -0
- xcoll/scattering_routines/geometry/sort.h +184 -0
- {xcoll-0.3.6.dist-info → xcoll-0.5.0.dist-info}/METADATA +1 -1
- xcoll-0.5.0.dist-info/RECORD +413 -0
- xcoll/beam_elements/collimators_src/absorber.h +0 -141
- xcoll/beam_elements/collimators_src/everest_collimator.h +0 -142
- xcoll/beam_elements/collimators_src/everest_crystal.h +0 -115
- xcoll/collimator_settings.py +0 -457
- xcoll/impacts/__init__.py +0 -1
- xcoll/impacts/impacts.py +0 -102
- xcoll/impacts/impacts_src/impacts.h +0 -99
- xcoll/scattering_routines/everest/crystal.h +0 -1302
- xcoll/scattering_routines/everest/scatter.h +0 -169
- xcoll/scattering_routines/everest/scatter_crystal.h +0 -260
- xcoll/scattering_routines/fluka/build_fluka_input.py +0 -58
- xcoll-0.3.6.dist-info/RECORD +0 -111
- {xcoll-0.3.6.dist-info → xcoll-0.5.0.dist-info}/LICENSE +0 -0
- {xcoll-0.3.6.dist-info → xcoll-0.5.0.dist-info}/NOTICE +0 -0
- {xcoll-0.3.6.dist-info → xcoll-0.5.0.dist-info}/WHEEL +0 -0
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
// copyright ############################### #
|
|
2
|
-
// This file is part of the Xcoll Package. #
|
|
3
|
-
// Copyright (c) CERN, 2023. #
|
|
4
|
-
// ######################################### #
|
|
5
|
-
|
|
6
|
-
#ifndef XCOLL_EVEREST_SCAT_H
|
|
7
|
-
#define XCOLL_EVEREST_SCAT_H
|
|
8
|
-
#include <math.h>
|
|
9
|
-
#include <stdlib.h>
|
|
10
|
-
#include <stdio.h>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
/*gpufun*/
|
|
14
|
-
void scatter(EverestData restrict everest, LocalParticle* part, double length){
|
|
15
|
-
|
|
16
|
-
// geometry values
|
|
17
|
-
double aperture = everest->coll->aperture;
|
|
18
|
-
double offset = everest->coll->offset;
|
|
19
|
-
double tilt_L = everest->coll->tilt_L;
|
|
20
|
-
double tilt_R = everest->coll->tilt_R;
|
|
21
|
-
double side = everest->coll->side;
|
|
22
|
-
|
|
23
|
-
// Store initial coordinates for updating later
|
|
24
|
-
double const rpp_in = LocalParticle_get_rpp(part);
|
|
25
|
-
double const rvv_in = LocalParticle_get_rvv(part);
|
|
26
|
-
double const e0 = LocalParticle_get_energy0(part) / 1e9; // Reference energy in GeV
|
|
27
|
-
double const beta0 = LocalParticle_get_beta0(part);
|
|
28
|
-
double const ptau_in = LocalParticle_get_ptau(part);
|
|
29
|
-
double const x_in = LocalParticle_get_x(part);
|
|
30
|
-
double const px_in = LocalParticle_get_px(part);
|
|
31
|
-
double const y_in = LocalParticle_get_y(part);
|
|
32
|
-
double const py_in = LocalParticle_get_py(part);
|
|
33
|
-
double p0 = LocalParticle_get_p0c(part) / 1e9;
|
|
34
|
-
|
|
35
|
-
// TODO: missing correction due to m/m0 (but also wrong in xpart...)
|
|
36
|
-
double energy = p0*ptau_in + e0; // energy, not momentum, in GeV
|
|
37
|
-
|
|
38
|
-
// Status flags
|
|
39
|
-
int is_hit = 0;
|
|
40
|
-
int is_abs = 0;
|
|
41
|
-
|
|
42
|
-
double x = LocalParticle_get_x(part);
|
|
43
|
-
|
|
44
|
-
// For one-sided collimators consider only positive X. For negative X jump to the next particle
|
|
45
|
-
if (side==0 || (side==1 && x>=0.) || (side==2 && x<=0.)) {
|
|
46
|
-
|
|
47
|
-
double mirror = 1;
|
|
48
|
-
double tiltangle = tilt_L;
|
|
49
|
-
if (x < 0) {
|
|
50
|
-
mirror = -1;
|
|
51
|
-
tiltangle = -tilt_R;
|
|
52
|
-
LocalParticle_scale_x(part, mirror);
|
|
53
|
-
LocalParticle_scale_px(part, mirror);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
// Shift with opening and offset
|
|
57
|
-
LocalParticle_add_to_x(part, -aperture/2. - mirror*offset);
|
|
58
|
-
|
|
59
|
-
// Include collimator tilt
|
|
60
|
-
double rot_shift = YRotation_single_particle_rotate_only(part, 0., tiltangle);
|
|
61
|
-
Drift_single_particle_4d(part, -rot_shift);
|
|
62
|
-
|
|
63
|
-
// Check if/where particle hits collimator
|
|
64
|
-
double zlm;
|
|
65
|
-
x = LocalParticle_get_x(part);
|
|
66
|
-
double xp = LocalParticle_get_px(part)*rpp_in;
|
|
67
|
-
if (x >= 0.) { // hit at front
|
|
68
|
-
zlm = length;
|
|
69
|
-
// val_part_impact = x;
|
|
70
|
-
// store these in impact table, as interaction type 'hitting collimator' or something like that.
|
|
71
|
-
// val_part_indiv = xp;
|
|
72
|
-
} else if (xp <= 0.) { // no hit
|
|
73
|
-
zlm = 0.;
|
|
74
|
-
Drift_single_particle_4d(part, length);
|
|
75
|
-
} else { // hit from side
|
|
76
|
-
double s = -x/xp;
|
|
77
|
-
if (s < length) {
|
|
78
|
-
zlm = length - s;
|
|
79
|
-
Drift_single_particle_4d(part, s);
|
|
80
|
-
// val_part_impact = 0.;
|
|
81
|
-
// val_part_indiv = xp;
|
|
82
|
-
} else {
|
|
83
|
-
zlm = 0.;
|
|
84
|
-
Drift_single_particle_4d(part, length);
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
// Now do the scattering part
|
|
89
|
-
if (zlm > 0.) {
|
|
90
|
-
is_hit = 1;
|
|
91
|
-
|
|
92
|
-
double* jaw_result = jaw(everest, part, energy, zlm, 1);
|
|
93
|
-
|
|
94
|
-
energy = jaw_result[0];
|
|
95
|
-
if (jaw_result[1] == 1){
|
|
96
|
-
is_abs = 1;
|
|
97
|
-
}
|
|
98
|
-
double s_out = jaw_result[2];
|
|
99
|
-
free(jaw_result);
|
|
100
|
-
|
|
101
|
-
if (is_abs != 1) {
|
|
102
|
-
// Do the rest drift, if particle left collimator early
|
|
103
|
-
Drift_single_particle_4d(part, zlm-s_out);
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
// Transform back to particle coordinates with opening and offset
|
|
108
|
-
// Include collimator tilt
|
|
109
|
-
rot_shift = YRotation_single_particle_rotate_only(part, length, -tiltangle);
|
|
110
|
-
Drift_single_particle_4d(part, length-rot_shift);
|
|
111
|
-
|
|
112
|
-
// Transform back to particle coordinates with opening and offset
|
|
113
|
-
LocalParticle_add_to_x(part, aperture/2. + mirror*offset);
|
|
114
|
-
|
|
115
|
-
// Now mirror at the horizontal axis for negative X offset
|
|
116
|
-
if (mirror < 0) {
|
|
117
|
-
LocalParticle_scale_x(part, mirror);
|
|
118
|
-
LocalParticle_scale_px(part, mirror);
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
} else {
|
|
122
|
-
Drift_single_particle_4d(part, length);
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
// Cannot assign energy directly to LocalParticle as it would update dependent variables, but needs to be corrected first!
|
|
126
|
-
|
|
127
|
-
// Update energy ---------------------------------------------------
|
|
128
|
-
// Only particles that hit the jaw and survived need to be updated
|
|
129
|
-
if (is_hit>0 && is_abs==0){
|
|
130
|
-
double ptau_out = (energy - e0) / (e0 * beta0);
|
|
131
|
-
LocalParticle_update_ptau(part, ptau_out);
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
// Update 4D coordinates -------------------------------------------
|
|
135
|
-
// Absorbed particles get their coordinates set to the entrance of collimator
|
|
136
|
-
if (is_abs>0){
|
|
137
|
-
LocalParticle_set_x(part, x_in);
|
|
138
|
-
LocalParticle_set_px(part, px_in);
|
|
139
|
-
LocalParticle_set_y(part, y_in);
|
|
140
|
-
LocalParticle_set_py(part, py_in);
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// Update longitudinal coordinate zeta -----------------------------
|
|
144
|
-
// Absorbed particles keep coordinates at the entrance of collimator, others need correcting:
|
|
145
|
-
// Non-hit particles are just drifting (zeta not yet drifted in K2, so do here)
|
|
146
|
-
if (is_hit==0){
|
|
147
|
-
LocalParticle_add_to_zeta(part, drift_zeta_single(rvv_in, px_in*rpp_in, py_in*rpp_in, length) );
|
|
148
|
-
}
|
|
149
|
-
// Hit and survived particles need correcting:
|
|
150
|
-
if (is_hit>0 && is_abs==0){
|
|
151
|
-
double px = LocalParticle_get_px(part);
|
|
152
|
-
double py = LocalParticle_get_py(part);
|
|
153
|
-
double rvv = LocalParticle_get_rvv(part);
|
|
154
|
-
double rpp = LocalParticle_get_rpp(part);
|
|
155
|
-
// First we drift half the length with the old angles:
|
|
156
|
-
LocalParticle_add_to_zeta(part, drift_zeta_single(rvv_in, px_in*rpp_in, py_in*rpp_in, length/2) );
|
|
157
|
-
// then half the length with the new angles:
|
|
158
|
-
LocalParticle_add_to_zeta(part, drift_zeta_single(rvv, px*rpp, py*rpp, length/2) );
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
// Update state ----------------------------------------------------
|
|
162
|
-
if (is_abs > 0){
|
|
163
|
-
LocalParticle_set_state(part, XC_LOST_ON_EVEREST_COLL);
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
return;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
#endif /* XCOLL_EVEREST_SCAT_H */
|
|
@@ -1,260 +0,0 @@
|
|
|
1
|
-
// copyright ############################### #
|
|
2
|
-
// This file is part of the Xcoll Package. #
|
|
3
|
-
// Copyright (c) CERN, 2023. #
|
|
4
|
-
// ######################################### #
|
|
5
|
-
|
|
6
|
-
#ifndef XCOLL_EVEREST_SCAT_CRY_H
|
|
7
|
-
#define XCOLL_EVEREST_SCAT_CRY_H
|
|
8
|
-
#include <math.h>
|
|
9
|
-
#include <stdlib.h>
|
|
10
|
-
#include <stdio.h>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
/*gpufun*/
|
|
14
|
-
void scatter_cry(LocalParticle* part, double length, CrystalMaterialData material, RandomRutherfordData rng,
|
|
15
|
-
double cRot, double sRot, double c_aperture, double c_offset, int side, double cry_tilt,
|
|
16
|
-
double cry_rcurv, double cry_bend, double cry_alayer, double cry_xmax, double cry_ymax,
|
|
17
|
-
double cry_orient, double cry_miscut, CollimatorImpactsData record, RecordIndex record_index){
|
|
18
|
-
|
|
19
|
-
// Store initial coordinates for updating later
|
|
20
|
-
double const rpp_in = LocalParticle_get_rpp(part);
|
|
21
|
-
double const rvv_in = LocalParticle_get_rvv(part);
|
|
22
|
-
double const e0 = LocalParticle_get_energy0(part) / 1e9; // Reference energy in GeV
|
|
23
|
-
double const beta0 = LocalParticle_get_beta0(part);
|
|
24
|
-
double const ptau_in = LocalParticle_get_ptau(part);
|
|
25
|
-
double const x_in2 = LocalParticle_get_x(part);
|
|
26
|
-
double const px_in2 = LocalParticle_get_px(part);
|
|
27
|
-
double const y_in2 = LocalParticle_get_y(part);
|
|
28
|
-
double const py_in2 = LocalParticle_get_py(part);
|
|
29
|
-
double p0 = LocalParticle_get_p0c(part) / 1e9;
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
double x_in = LocalParticle_get_x(part);
|
|
33
|
-
double xp_in = LocalParticle_get_px(part)*rpp_in;
|
|
34
|
-
double y_in = LocalParticle_get_y(part);
|
|
35
|
-
double yp_in = LocalParticle_get_py(part)*rpp_in;
|
|
36
|
-
double s_in = 0; // s at start of collimator
|
|
37
|
-
|
|
38
|
-
// TODO: missing correction due to m/m0 (but also wrong in xpart...)
|
|
39
|
-
double p_in = p0*ptau_in + e0; // energy, not momentum, in GeV
|
|
40
|
-
|
|
41
|
-
// Status flags
|
|
42
|
-
int val_part_hit = 0;
|
|
43
|
-
int val_part_abs = 0;
|
|
44
|
-
int val_part_impact = -1;
|
|
45
|
-
double val_part_indiv = -1.;
|
|
46
|
-
// double val_part_linteract = -1.;
|
|
47
|
-
|
|
48
|
-
p0 = e0;
|
|
49
|
-
double x0 = 0;
|
|
50
|
-
double xp0 = 0;
|
|
51
|
-
double nhit = 0;
|
|
52
|
-
double nabs = 0;
|
|
53
|
-
double nnuc0 = 0;
|
|
54
|
-
double ien0 = 0;
|
|
55
|
-
double nnuc1 = 0;
|
|
56
|
-
double ien1 = 0;
|
|
57
|
-
double iProc = 0;
|
|
58
|
-
double n_chan = 0;
|
|
59
|
-
double n_VR = 0;
|
|
60
|
-
double n_amorphous = 0;
|
|
61
|
-
double s_imp = 0;
|
|
62
|
-
|
|
63
|
-
double x = x_in;
|
|
64
|
-
double xp = xp_in;
|
|
65
|
-
double z = y_in;
|
|
66
|
-
double zp = yp_in;
|
|
67
|
-
double p = p_in;
|
|
68
|
-
|
|
69
|
-
double mirror = 1.;
|
|
70
|
-
|
|
71
|
-
// TODO: use xtrack C-code for rotation element
|
|
72
|
-
|
|
73
|
-
// Transform particle coordinates to get into collimator coordinate system
|
|
74
|
-
// First do rotation into collimator frame
|
|
75
|
-
double const cRRot = cRot;
|
|
76
|
-
double const sRRot = -sRot;
|
|
77
|
-
x = x_in*cRot + sRot*y_in;
|
|
78
|
-
z = y_in*cRot - sRot*x_in;
|
|
79
|
-
xp = xp_in*cRot + sRot*yp_in;
|
|
80
|
-
zp = yp_in*cRot - sRot*xp_in;
|
|
81
|
-
|
|
82
|
-
// Output variables
|
|
83
|
-
double x_out = x_in;
|
|
84
|
-
double y_out = y_in;
|
|
85
|
-
double xp_out = xp_in;
|
|
86
|
-
double yp_out = yp_in;
|
|
87
|
-
double p_out = p_in;
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
// For one-sided collimators consider only positive X. For negative X jump to the next particle
|
|
91
|
-
if (side==0 || (side==1 && x>=0.) || (side==2 && x<=0.)) {
|
|
92
|
-
// Log input energy + nucleons as per the FLUKA coupling
|
|
93
|
-
nnuc0 = nnuc0 + 1.;
|
|
94
|
-
ien0 = ien0 + p_in * 1.0e3;
|
|
95
|
-
|
|
96
|
-
// Now mirror at the horizontal axis for negative X offset
|
|
97
|
-
if (x < 0) {
|
|
98
|
-
mirror = -1;
|
|
99
|
-
} else {
|
|
100
|
-
mirror = 1;
|
|
101
|
-
}
|
|
102
|
-
x = mirror*x;
|
|
103
|
-
xp = mirror*xp;
|
|
104
|
-
|
|
105
|
-
// Shift with opening and offset
|
|
106
|
-
x = (x - c_aperture/2.) - mirror*c_offset;
|
|
107
|
-
|
|
108
|
-
// particle passing above the jaw are discarded => take new event
|
|
109
|
-
// entering by the face, shorten the length (zlm) and keep track of
|
|
110
|
-
// entrance longitudinal coordinate (keeps) for histograms
|
|
111
|
-
|
|
112
|
-
// The definition is that the collimator jaw is at x>=0.
|
|
113
|
-
|
|
114
|
-
// 1) Check whether particle hits the collimator
|
|
115
|
-
int isimp = 0;
|
|
116
|
-
double s = 0.;
|
|
117
|
-
double zlm = -1*length;
|
|
118
|
-
|
|
119
|
-
double* crystal_result = crystal(rng, part, x,
|
|
120
|
-
xp,
|
|
121
|
-
z,
|
|
122
|
-
zp,
|
|
123
|
-
s,
|
|
124
|
-
p,
|
|
125
|
-
x0,
|
|
126
|
-
xp0,
|
|
127
|
-
zlm,
|
|
128
|
-
s_imp,
|
|
129
|
-
isimp,
|
|
130
|
-
val_part_hit,
|
|
131
|
-
val_part_abs,
|
|
132
|
-
val_part_impact,
|
|
133
|
-
val_part_indiv,
|
|
134
|
-
length,
|
|
135
|
-
material,
|
|
136
|
-
nhit,
|
|
137
|
-
nabs,
|
|
138
|
-
cry_tilt,
|
|
139
|
-
cry_rcurv,
|
|
140
|
-
cry_bend,
|
|
141
|
-
cry_alayer,
|
|
142
|
-
cry_xmax,
|
|
143
|
-
cry_ymax,
|
|
144
|
-
cry_orient,
|
|
145
|
-
cry_miscut,
|
|
146
|
-
iProc,
|
|
147
|
-
n_chan,
|
|
148
|
-
n_VR,
|
|
149
|
-
n_amorphous
|
|
150
|
-
);
|
|
151
|
-
|
|
152
|
-
val_part_hit = crystal_result[0];
|
|
153
|
-
val_part_abs = crystal_result[1];
|
|
154
|
-
val_part_impact = crystal_result[2];
|
|
155
|
-
val_part_indiv = crystal_result[3];
|
|
156
|
-
nhit = crystal_result[4];
|
|
157
|
-
nabs = crystal_result[5];
|
|
158
|
-
s_imp = crystal_result[6];
|
|
159
|
-
isimp = crystal_result[7];
|
|
160
|
-
s = crystal_result[8];
|
|
161
|
-
zlm = crystal_result[9];
|
|
162
|
-
x = crystal_result[10];
|
|
163
|
-
xp = crystal_result[11];
|
|
164
|
-
x0 = crystal_result[12];
|
|
165
|
-
xp0 = crystal_result[13];
|
|
166
|
-
z = crystal_result[14];
|
|
167
|
-
zp = crystal_result[15];
|
|
168
|
-
p = crystal_result[16];
|
|
169
|
-
iProc = crystal_result[17];
|
|
170
|
-
n_chan = crystal_result[18];
|
|
171
|
-
n_VR = crystal_result[19];
|
|
172
|
-
n_amorphous = crystal_result[20];
|
|
173
|
-
|
|
174
|
-
free(crystal_result);
|
|
175
|
-
|
|
176
|
-
if (nabs != 0.) {
|
|
177
|
-
val_part_abs = 1.;
|
|
178
|
-
// val_part_linteract = zlm;
|
|
179
|
-
}
|
|
180
|
-
s_imp = (s - length) + s_imp;
|
|
181
|
-
|
|
182
|
-
// Transform back to particle coordinates with opening and offset
|
|
183
|
-
x = (x + c_aperture/2) + mirror*c_offset;
|
|
184
|
-
|
|
185
|
-
// Now mirror at the horizontal axis for negative X offset
|
|
186
|
-
x = mirror * x;
|
|
187
|
-
xp = mirror * xp;
|
|
188
|
-
|
|
189
|
-
// Last do rotation into collimator frame
|
|
190
|
-
x_out = x*cRRot + z*sRRot;
|
|
191
|
-
y_out = z*cRRot - x*sRRot;
|
|
192
|
-
xp_out = xp*cRRot + zp*sRRot;
|
|
193
|
-
yp_out = zp*cRRot - xp*sRRot;
|
|
194
|
-
|
|
195
|
-
// Log output energy + nucleons as per the FLUKA coupling
|
|
196
|
-
// Do not log dead particles
|
|
197
|
-
nnuc1 = nnuc1 + 1; // outcoming nucleons
|
|
198
|
-
ien1 = ien1 + p_out * 1e3; // outcoming energy
|
|
199
|
-
|
|
200
|
-
p_out = p;
|
|
201
|
-
s_in = s_in + s;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
LocalParticle_set_x(part, x_out);
|
|
205
|
-
LocalParticle_set_px(part, xp_out/rpp_in);
|
|
206
|
-
LocalParticle_set_y(part, y_out);
|
|
207
|
-
LocalParticle_set_py(part, yp_out/rpp_in);
|
|
208
|
-
|
|
209
|
-
double energy_out = p_out; // Cannot assign energy directly to LocalParticle as it would update dependent variables, but needs to be corrected first!
|
|
210
|
-
|
|
211
|
-
// Update energy ---------------------------------------------------
|
|
212
|
-
// Only particles that hit the jaw and survived need to be updated
|
|
213
|
-
if (val_part_hit>0 && val_part_abs==0){
|
|
214
|
-
double ptau_out = (energy_out - e0) / (e0 * beta0);
|
|
215
|
-
LocalParticle_update_ptau(part, ptau_out);
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
// Update 4D coordinates -------------------------------------------
|
|
219
|
-
// Absorbed particles get their coordinates set to the entrance of collimator
|
|
220
|
-
if (val_part_abs>0){
|
|
221
|
-
LocalParticle_set_x(part, x_in2);
|
|
222
|
-
LocalParticle_set_px(part, px_in2);
|
|
223
|
-
LocalParticle_set_y(part, y_in2);
|
|
224
|
-
LocalParticle_set_py(part, py_in2);
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
// Update longitudinal coordinate zeta -----------------------------
|
|
228
|
-
// Absorbed particles keep coordinates at the entrance of collimator, others need correcting:
|
|
229
|
-
// Non-hit particles are just drifting (zeta not yet drifted in K2, so do here)
|
|
230
|
-
if (val_part_hit==0){
|
|
231
|
-
LocalParticle_add_to_zeta(part, drift_zeta_single(rvv_in, px_in2*rpp_in, py_in2*rpp_in, length) );
|
|
232
|
-
}
|
|
233
|
-
// Hit and survived particles need correcting:
|
|
234
|
-
if (val_part_hit>0 && val_part_abs==0){
|
|
235
|
-
double px = LocalParticle_get_px(part);
|
|
236
|
-
double py = LocalParticle_get_py(part);
|
|
237
|
-
double rvv = LocalParticle_get_rvv(part);
|
|
238
|
-
double rpp = LocalParticle_get_rpp(part);
|
|
239
|
-
// First we drift half the length with the old angles:
|
|
240
|
-
LocalParticle_add_to_zeta(part, drift_zeta_single(rvv_in, px_in2*rpp_in, py_in2*rpp_in, length/2) );
|
|
241
|
-
// then half the length with the new angles:
|
|
242
|
-
LocalParticle_add_to_zeta(part, drift_zeta_single(rvv, px*rpp, py*rpp, length/2) );
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
// Update s --------------------------------------------------------
|
|
246
|
-
// TODO: move absorbed particles to last impact location
|
|
247
|
-
if (val_part_abs==0){
|
|
248
|
-
LocalParticle_add_to_s(part, length);
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
// Update state ----------------------------------------------------
|
|
252
|
-
if (val_part_abs > 0){
|
|
253
|
-
LocalParticle_set_state(part, XC_LOST_ON_EVEREST_CRYSTAL);
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
return;
|
|
257
|
-
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
#endif /* XCOLL_EVEREST_SCAT_CRY_H */
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
# copyright ############################### #
|
|
2
|
-
# This file is part of the Xcoll Package. #
|
|
3
|
-
# Copyright (c) CERN, 2024. #
|
|
4
|
-
# ######################################### #
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
tmpAuxFile = open ('colldb_lhc_run3.yaml' ,'r' )
|
|
8
|
-
CDByamlflag = True
|
|
9
|
-
|
|
10
|
-
twiss_fname = args.TFile[0]
|
|
11
|
-
tmpOptFile = AuxFile( twiss_fname )
|
|
12
|
-
NREMIT = float( args.EMIn[0] ) # normalised emmittance in [m]
|
|
13
|
-
MOMENTUM = float( args.pc[0] ) # [GeV/c]
|
|
14
|
-
GEOEMIT = NREMIT / (gamma*beta) # gamma*beta = Pc / m
|
|
15
|
-
|
|
16
|
-
# Collision IPs not done!
|
|
17
|
-
|
|
18
|
-
BeamLine = TWISS_ELEMENTs()
|
|
19
|
-
|
|
20
|
-
# Prototype list (collimator names and positions in PARKING region)
|
|
21
|
-
lbp_fname = "prototypes.lbp" #There is a better way...but enough for now!
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
# output files:
|
|
25
|
-
# 1- fort.3 insertion point list
|
|
26
|
-
sixt_fname = outFileName + ".fort3.list"
|
|
27
|
-
# 2- insertion.txt file
|
|
28
|
-
injec_fname = outFileName + ".insertion.txt"
|
|
29
|
-
# 3- FLUKA input file
|
|
30
|
-
out_fname = outFileName + ".inp"
|
|
31
|
-
# 4- Log file
|
|
32
|
-
log_fname = outFileName + ".log"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
element = TWISS_ELEMENT()
|
|
36
|
-
COLLID += 1
|
|
37
|
-
element.ID = COLLID
|
|
38
|
-
element.NAME = name.upper()
|
|
39
|
-
if type(settings['gap']) is str:
|
|
40
|
-
if settings['gap'] not in data['Families']:
|
|
41
|
-
error_message ( "The gap family setting '" + settings['gap'] + "' for collimator " + name + " is not defined in Families!", True )
|
|
42
|
-
element.NSIG = NullGap( data['Families'][ settings['gap'] ]['gap'] )
|
|
43
|
-
else:
|
|
44
|
-
element.NSIG = NullGap( settings['gap'] )
|
|
45
|
-
element.MATERIAL = settings['material']
|
|
46
|
-
element.LENGTH = settings['length']
|
|
47
|
-
element.ANGLE = math.radians(settings.get('angle',0))
|
|
48
|
-
if float(settings.get('offset',0)) != 0:
|
|
49
|
-
print ' collimator offset ignored for the time being...'
|
|
50
|
-
element.TILT1 = math.radians(settings.get('tilt_right',0))
|
|
51
|
-
element.TILT2 = math.radians(settings.get('tilt_left',0))
|
|
52
|
-
element.BETX = 0.0
|
|
53
|
-
element.BETY = 0.0
|
|
54
|
-
element.SIGX = 0.0
|
|
55
|
-
element.SIGY = 0.0
|
|
56
|
-
element.HALFGAP = 0.0
|
|
57
|
-
|
|
58
|
-
EXCLUDED_COLL = [ 'TCRYO' ]
|
xcoll-0.3.6.dist-info/RECORD
DELETED
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
2
|
-
NOTICE,sha256=6DO_E7WCdRKc42vUoVVBPGttvQi4mRt9fAcxj9u8zy8,74
|
|
3
|
-
xcoll/__init__.py,sha256=XO53i_KKg6kaJfTCpmNJLy14tou4RMF9MDuXlH70iTQ,642
|
|
4
|
-
xcoll/beam_elements/__init__.py,sha256=4ekQv_1Kxwqd0VSaPzMpVQ1V9RMX5tr-ycBBiTIFyRw,776
|
|
5
|
-
xcoll/beam_elements/absorber.py,sha256=yxF-NhnQs_l7s-M_0AhdKzx0YVgvhujOAwQnAbVTSOs,1260
|
|
6
|
-
xcoll/beam_elements/base.py,sha256=Nwgg2v1RdEEpByFG8AZgL7E6ecESbYm3mqnIfoh5SFQ,15785
|
|
7
|
-
xcoll/beam_elements/collimators_src/absorber.h,sha256=ZsAzIZ3uWP15unMJyuxbuD5lVgFeWAwQsuyOj_ZSkjI,5502
|
|
8
|
-
xcoll/beam_elements/collimators_src/everest_block.h,sha256=Gpr5wyFLtcaNgVj3auKgFWB-2KPP5cjbEWTfC3f9q1U,5596
|
|
9
|
-
xcoll/beam_elements/collimators_src/everest_collimator.h,sha256=wsGIFBb-VMCRhxwK2G5k9SEX-6SzIgRX4XE5g_I2okg,6296
|
|
10
|
-
xcoll/beam_elements/collimators_src/everest_crystal.h,sha256=pX9cmW5lfsUoszR14tXWU4Emu-0VwX4bbfg6Q6pxXR4,5164
|
|
11
|
-
xcoll/beam_elements/everest.py,sha256=JxmREXln3p3c9XEcHp-DgDbXFzc9txiGrxvjOrDUacs,11369
|
|
12
|
-
xcoll/colldb.py,sha256=_MywNPz9cDocGPsfXpBVkjADyAGGVFQQRUI4kxOQaOg,49476
|
|
13
|
-
xcoll/collimator_settings.py,sha256=uj25cpSaM-EY7VM65OUq3Cxb8gedSmi-r9mpkP-ikrg,17015
|
|
14
|
-
xcoll/general.py,sha256=Pcqa-FWVvvs3X5gBEhnNw2qmw-Rl9IdCMX2Mww33wt4,525
|
|
15
|
-
xcoll/headers/checks.h,sha256=3CLIa2etrJVKBfxdsHcS8NirqzVDHG9aCbrlMwkWuHw,1586
|
|
16
|
-
xcoll/headers/particle_states.h,sha256=YxpS56_ZD8mhrqKTohcyVe3hbQZ6H9vspYHSVM6a5-U,844
|
|
17
|
-
xcoll/impacts/__init__.py,sha256=yKQdIeLG2CT3qo-iZB6MODm-WHzkTmulgUvOAS41w7E,39
|
|
18
|
-
xcoll/impacts/impacts.py,sha256=J7FfcxIprUMHyn5oZhmjhvBewXOp7kwJtErStOsAwJQ,3953
|
|
19
|
-
xcoll/impacts/impacts_src/impacts.h,sha256=0eq4Z8xDPMJzN8yPF3lTkDsld6W54tbXmynZEbXCh4c,5950
|
|
20
|
-
xcoll/impacts/interaction_types.py,sha256=iHbhC4beN1vZRWeHbALqSFo8lG10R7asc08BRpIqXx0,2493
|
|
21
|
-
xcoll/manager.py,sha256=A7hCuSgS7sSFKoV26Nt8xc_GXUNOm-WRqsGftRoBMzA,45052
|
|
22
|
-
xcoll/rf_sweep.py,sha256=_cnDb2d0_tfVrrwuubLOSyUHpMQHMvmSzYgd_-WfJg0,8936
|
|
23
|
-
xcoll/scattering_routines/everest/__init__.py,sha256=yuCzolZkiL7mHaBXCKHRl66VxjKFB0t9Vyw9TtFv1Bo,286
|
|
24
|
-
xcoll/scattering_routines/everest/constants.h,sha256=9Kus-RKyxsGdlxx9tfMWUz2H5Q-qy6y_F4kddIZzO30,1390
|
|
25
|
-
xcoll/scattering_routines/everest/crystal.h,sha256=WlA_e9ePuVhc9fmMVdSXFBKvHrFvCQ5aG4d67iMrtuQ,54119
|
|
26
|
-
xcoll/scattering_routines/everest/everest.h,sha256=p4yfzxRvh19N-V1vorf_CCIBotodV40Lcrzzy7339WM,3743
|
|
27
|
-
xcoll/scattering_routines/everest/everest.py,sha256=zfKZXHvXM6ikoI2KUZ0_BWLCuxLZEvP1pgW5vFIgwQ4,1306
|
|
28
|
-
xcoll/scattering_routines/everest/jaw.h,sha256=lmijUU7ih4veifVho3ehGe0DVyIYkDHMVIIclDNbZds,7308
|
|
29
|
-
xcoll/scattering_routines/everest/materials.py,sha256=9ZhBd6-n2AsTbCxLhjPoU4pOcmKstl6gbeqLno1dY4c,9410
|
|
30
|
-
xcoll/scattering_routines/everest/multiple_coulomb_scattering.h,sha256=0Euxsnc2BU8YqxYwfXZIiplNcnDzFq9HgWAoqGwuSAg,4518
|
|
31
|
-
xcoll/scattering_routines/everest/properties.h,sha256=aRqkX5ZpUeTnbygqFVsoIKwWyoB5VXzD5vq5d-xiI74,6585
|
|
32
|
-
xcoll/scattering_routines/everest/scatter.h,sha256=jl-SAIpizYCbUfy1KAhuO00sA5BBhNBCIjueQ8bCxoQ,6333
|
|
33
|
-
xcoll/scattering_routines/everest/scatter_crystal.h,sha256=BHBPNiMKynq1XNxIiWJXYxMwW2bhmmbmC8j7-Dy-SNs,9455
|
|
34
|
-
xcoll/scattering_routines/fluka/build_fluka_input.py,sha256=NDPg191eVTcSrX3nEWdyg0LIWf-gCJI1YWo2NqW9xtU,2270
|
|
35
|
-
xcoll/scattering_routines/fluka/flukaio/.git,sha256=5ZxurpwP1waJk2Zu2AstENGOp4rXU8-C-oU4CypmIVI,73
|
|
36
|
-
xcoll/scattering_routines/fluka/flukaio/.gitignore,sha256=bhrpWiAnKChkcwIaIPX_zKxyG2nCtNzNgQAHnIJa8Fw,12
|
|
37
|
-
xcoll/scattering_routines/fluka/flukaio/CMakeLists.txt,sha256=iWWqTC26UqcuQWQj_JCKtX6iiOb7arnhQ9kOo1fDVkE,591
|
|
38
|
-
xcoll/scattering_routines/fluka/flukaio/ComponentMakefile,sha256=JgZVBFGEe1NtNWoCFBQQQuqUU63CuUsJ01y7C8yoR8c,5951
|
|
39
|
-
xcoll/scattering_routines/fluka/flukaio/Makefile,sha256=2RMI62VExb2Wx7J031hHIVhhv6p8mfUc7_vynGcskrw,3404
|
|
40
|
-
xcoll/scattering_routines/fluka/flukaio/README,sha256=jn-0UQ7MOjy9xXbw5VTkOjgq2j1W7B2zE35DRspHhRA,611
|
|
41
|
-
xcoll/scattering_routines/fluka/flukaio/doc/Doxyfile,sha256=jo47N7f4AR-KPiL36Jj9Za5F1Frp8eRL845F6siC3jc,65455
|
|
42
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.asciidoc,sha256=vvEaZ7SI3wit3OjNPEDDqjOWD8u3SzFzJrPrG_eQhzg,45517
|
|
43
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.epub,sha256=msmaZhUq_iaUvfT4wMiKXwzcJwleeFb77qD_ioX7cqE,138089
|
|
44
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.html,sha256=lxRW82DbktTH3wCm8DACwyeSD7pb3VIW6QnTdS75hsc,74567
|
|
45
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO.pdf,sha256=xsOPD4gFpe7PnQyEQIfxk0PekjK4YJtxTvrF_aX-Xag,233955
|
|
46
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__1.png,sha256=RjuZmNCDHSryVvqGaVTHBGOnxocNgIGMnkwjTT2kPmA,36021
|
|
47
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__2.png,sha256=YXtIj92Obu-Tml4ScibCJbfNo3egjIGoe7mSP7FXMdY,2904
|
|
48
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__3.png,sha256=jsRi-MYzLU8TCcMrilp20dDZ8cZYWRL3AebGts0D-UU,23826
|
|
49
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__4.png,sha256=v1_945h1-oEps38VyOdfIJLKcJEledckzFB_JXfagso,3956
|
|
50
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__5.png,sha256=dD0qouz9OBy8LNAeNrc_SyBJdNlEw9Y9S7GGftMZoXk,7017
|
|
51
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__6.png,sha256=_w_PLC7SbmfFC-yXuuw-wJdBPlZOsyCbA84Q9yHY0Mg,33614
|
|
52
|
-
xcoll/scattering_routines/fluka/flukaio/doc/FlukaIO__7.png,sha256=sOPu0rKPsKtb9-zJmP0APMl1Swf6DQzvOwa2Wd3balU,51182
|
|
53
|
-
xcoll/scattering_routines/fluka/flukaio/doc/Makefile,sha256=HzLTLkzE4v-fkZH_q139T9KGm5jqDlDUanm4T-NrAh8,146
|
|
54
|
-
xcoll/scattering_routines/fluka/flukaio/doc/docbook.xsl,sha256=C5fAdTixTP0Y1AgxEGuhXfBMHRKQUfu4_8HkGUaDT08,74068
|
|
55
|
-
xcoll/scattering_routines/fluka/flukaio/include/Connection.h,sha256=gAlJAJoi0DV7OrRDlnc2yxf9EE1m1TNY1Tx3UC7UVDk,2793
|
|
56
|
-
xcoll/scattering_routines/fluka/flukaio/include/FlukaIO.h,sha256=ROly1bNu8vAMRSSHCA1w3Ffe8EUttu5g_WusKyVbKVY,1976
|
|
57
|
-
xcoll/scattering_routines/fluka/flukaio/include/FlukaIOServer.h,sha256=81_z_od7Iu-kZIy3uKa4Qaoiz7HXzF8mBdAgEZN7CNE,757
|
|
58
|
-
xcoll/scattering_routines/fluka/flukaio/include/FortranFlukaIO.h,sha256=7e18HlHpPzcfbuVtw5YcvGCmCWcZ6PIZw1j8Ao-u32s,5954
|
|
59
|
-
xcoll/scattering_routines/fluka/flukaio/include/Message.h,sha256=7UWWjCGwNEcVjee2c32CYDXPKAGvds-JFv7P-Penmqc,1731
|
|
60
|
-
xcoll/scattering_routines/fluka/flukaio/include/ParticleInfo.h,sha256=9-LEorFn0_uTxH7cnN8VS_B1m4C0Jokj1S--5I9mJ24,1328
|
|
61
|
-
xcoll/scattering_routines/fluka/flukaio/lib/libFlukaIO64.a,sha256=CAtcNun9CR4CcaM3JNps7sjyTCS0iguk6tcaUyr2ohg,82884
|
|
62
|
-
xcoll/scattering_routines/fluka/flukaio/lib/libFlukaIO64.so,sha256=RhlyKPX_KqxlOlxd0mllVtxCCFXwHgzhHVAnDIugdaE,66688
|
|
63
|
-
xcoll/scattering_routines/fluka/flukaio/samples/ClientTest.c,sha256=tm-xzz169gsbAC6OWIYcngZeNpc3RhxHlvPYNCoiA6Y,2907
|
|
64
|
-
xcoll/scattering_routines/fluka/flukaio/samples/ServerTest.c,sha256=s-x2KbssquSUda4yLAb0pRLqUOfdsS3US_enedCpiVA,2330
|
|
65
|
-
xcoll/scattering_routines/fluka/flukaio/samples/fclient.f,sha256=lF7G0xgpdteRSNtNWiZVG4kkeiKduwrk-WufFb8EtXc,3629
|
|
66
|
-
xcoll/scattering_routines/fluka/flukaio/samples/fserver.f,sha256=SO1bkHvlw52GC1mw17G0k05XfhosdHiXkq4qYaNAPp0,2995
|
|
67
|
-
xcoll/scattering_routines/fluka/flukaio/src/Connection.c,sha256=WlQpBki9bIausYuZyZqXNnyDfTyVFTO4iSFVutn7gFU,5769
|
|
68
|
-
xcoll/scattering_routines/fluka/flukaio/src/Connection.d,sha256=w1ijLCfHpVGm7UNvORrezmjgVyBQPn4GifiOWXaYb4s,5882
|
|
69
|
-
xcoll/scattering_routines/fluka/flukaio/src/Connection.o,sha256=qyEuE5B-L2awz6KWdU1ER4mptA1n-qpYh72-4k6js5o,13008
|
|
70
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIO.c,sha256=yRKw5BizRyS_G2dnD61HH2ManwYqoAEfMEkZhEPV7MI,4804
|
|
71
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIO.d,sha256=CUaHIRw5C7_SptwLSJBOML33XvE7lZWhJzfuBXKirw8,3829
|
|
72
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIO.o,sha256=SZuNUlyt0fVb0k7_ypbTRlSX7bsbtyEN14VsBFb93vg,12440
|
|
73
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.c,sha256=GMsE2lk32f5K-8bbYC7fJYZU5C_sMxTa6zkqNR215XM,1541
|
|
74
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.d,sha256=fSxhMLdzngyIK6WgIySYL4dZzWQRDAlb4FEHMwIZmA0,2445
|
|
75
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.h,sha256=S6ksRwhjGPJ2CxRagP43pXsXnJV90tGVVt7lEREXoFE,288
|
|
76
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIOHandshake.o,sha256=uKzcFMpTnR-6ZQt77vkNGS9HhMIIQWL12VjvCEA-YNE,7664
|
|
77
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer.c,sha256=EQV_XaZ6iqCBkguX-3ojtyBw3zKjAqksIqr9djd6hnU,1925
|
|
78
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer.d,sha256=QXDFEiuImczHPlhBm1CceKLKRjqCnH7514L2t-1Vh-0,5905
|
|
79
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer.o,sha256=q89-SL6XaZx76XSZ6Vq8yvJqY_YQtOeXlb5fFuwjctE,7536
|
|
80
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIOServer_private.h,sha256=VZpGHBS5bLuN7j_WRxCye1cNgxK6LPfo6gW7X47T-QE,396
|
|
81
|
-
xcoll/scattering_routines/fluka/flukaio/src/FlukaIO_private.h,sha256=t459fyfh8KTW2y2kVAjzBKUDzppnypkBE0IjLKxkEzs,421
|
|
82
|
-
xcoll/scattering_routines/fluka/flukaio/src/FortranFlukaIO.c,sha256=2lHLmtFYvITsuFbJ9_OU11ry3IPkOmmKQIorZQ4XyR0,11512
|
|
83
|
-
xcoll/scattering_routines/fluka/flukaio/src/FortranFlukaIO.d,sha256=fdq8pRR-0ulVlvanaiTCLQPBKLNTxj9hOkqNADcqjcI,3240
|
|
84
|
-
xcoll/scattering_routines/fluka/flukaio/src/FortranFlukaIO.o,sha256=1HwWdEr_g2E3Fc6p8DZuiBWJOAA52PDwP5TpzZOENB8,23400
|
|
85
|
-
xcoll/scattering_routines/fluka/flukaio/src/NetIO.c,sha256=tZwvJEA1fuoOC54i6E0GISEaiRMJt3HgqXKTqtxFeuc,6361
|
|
86
|
-
xcoll/scattering_routines/fluka/flukaio/src/NetIO.d,sha256=p9yB2w56mNwi9-XgF69YXF9pJyEiQQYo6D99Y9aFbv8,5716
|
|
87
|
-
xcoll/scattering_routines/fluka/flukaio/src/NetIO.h,sha256=hv0-sQ9aMcOyBh6QfKgR3ibIe37k8szm8dc1-45UG_U,902
|
|
88
|
-
xcoll/scattering_routines/fluka/flukaio/src/NetIO.o,sha256=eZUZ5JzAXijE4IhRnWU5BUnHJhA97XNRhL70-mX452I,16816
|
|
89
|
-
xcoll/scattering_routines/fluka/flukaio/src/tags,sha256=nXICMFzoWSyZKssmB6uviGaI3cLd_u4gBku2NNTNWNU,14484
|
|
90
|
-
xcoll/scattering_routines/fluka/flukaio/tests/AllTests.cpp,sha256=4ChxFO2TpNmwNiMEI-UHMYLg62y6K5iEBGcoKZiCDpI,166
|
|
91
|
-
xcoll/scattering_routines/fluka/flukaio/tests/CommonTest.h,sha256=CZtIENoRY_D_BVRuS3eIiii1G-EPKpxHUh4E4cwfqmg,152
|
|
92
|
-
xcoll/scattering_routines/fluka/flukaio/tests/ConnectionTest.cpp,sha256=Z9MQu0R7xRQEBnAA9rG7b-EqJnyiawBlGkhz-pATvEM,2464
|
|
93
|
-
xcoll/scattering_routines/fluka/flukaio/tests/FlukaIOServerTest.cpp,sha256=GJMyEcJ2E9XtvbQx3Huxr7h_bsEqfqSMaoSU0Mw-MV8,1851
|
|
94
|
-
xcoll/scattering_routines/fluka/flukaio/tests/FlukaIOTest.cpp,sha256=9iOsTJlR8BmDeOn16bb4Zk_Pwxyem6hhi6jdKS7TGPo,11293
|
|
95
|
-
xcoll/scattering_routines/fluka/flukaio/tests/FortranFlukaIOTest.cpp,sha256=28aX0J-63kzuwDsB5KrrQ9-m_KE4FE9cVMJk6GKQGyg,14331
|
|
96
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeConnection.c,sha256=w1ggaUuolcg_5IwP_iY2ZV7FMHjrdOTfhj_k-ReRpCQ,526
|
|
97
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeConnection.h,sha256=fXR8m7OhG4QwYyyb0vFrXyXVg6F37ooSED8LkIj2Ieo,226
|
|
98
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIO.c,sha256=o6Nh82ILb4qY_g3hdoM2_J8saffeBnOLzCeQrugwcxg,2244
|
|
99
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIO.h,sha256=_cKsqrwvMstieLWdxsUfStsXhm_TcnwtoGUxp2AE-As,1660
|
|
100
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOHandshake.c,sha256=Kv89mqdpYJabbjbDNESpsCZgWhb-D7NB1ktoNxVMmrw,549
|
|
101
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOHandshake.h,sha256=GWX3oySTSnd_K84hmT1WqAKBmViaohmd_18Ii7uhlX4,395
|
|
102
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOServer.c,sha256=dfZVteG9cKqtvEefROUWWcdXnhYDqEyNoc4OyisrUzA,360
|
|
103
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFlukaIOServer.h,sha256=0yKRoJmJwoFpjLWatgi_WaWgPwKb0UHNdA7AQzv9PMY,280
|
|
104
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeFortranFlukaIO.h,sha256=WxAjG2SPlWqMG38iHBM8GQwh5yp031jAGeyPi4y9G4c,330
|
|
105
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeNetIO.c,sha256=JcgCWxbT-ZOeG0c9mz1kk3PfXjaazaUk2P_ROtoBKaY,1452
|
|
106
|
-
xcoll/scattering_routines/fluka/flukaio/tests/fakes/FakeNetIO.h,sha256=JTMU9FtCBJkitsnHp7kWKUbPSN4rviRfJgVHK26AuPY,906
|
|
107
|
-
xcoll-0.3.6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
108
|
-
xcoll-0.3.6.dist-info/METADATA,sha256=-HXnJmvM23LxNmSOOxUuLhk49SuI8DnG7uIWl7DtHPg,2709
|
|
109
|
-
xcoll-0.3.6.dist-info/NOTICE,sha256=6DO_E7WCdRKc42vUoVVBPGttvQi4mRt9fAcxj9u8zy8,74
|
|
110
|
-
xcoll-0.3.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
111
|
-
xcoll-0.3.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|