├── .cmake ├── .gitignore ├── .gitlab-ci.yml ├── Backports │ ├── X11.cmake │ └── X11 │ │ ├── CheckFunctionExists.c │ │ ├── CheckFunctionExists.cmake │ │ ├── CheckLibraryExists.cmake │ │ ├── FindPackageMessage.cmake │ │ └── FindX11.cmake ├── CMakeDependentCacheVar.cmake ├── CMakeDependentSelection.cmake ├── DelegatingCacheVariable.cmake ├── DelegatingOption.cmake ├── DelegatingSelection.cmake ├── DependencyInjection.cmake ├── DependencyInjection │ ├── add_executable.cmake │ └── add_library.cmake ├── DependentDelegatingCacheVariable.cmake ├── DependentDelegatingOption.cmake ├── DependentDelegatingSelection.cmake ├── Fortran.cmake ├── Fortran │ ├── BackslashEscape.cmake │ ├── BackslashEscape │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ └── PGI.cmake │ ├── Backtrace.cmake │ ├── Backtrace │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ └── PGI.cmake │ ├── Exceptions.cmake │ ├── Exceptions │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ └── README.md │ ├── Integer.cmake │ ├── Integer │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ └── PGI.cmake │ ├── LongLines.cmake │ ├── LongLines │ │ └── GNU.cmake │ ├── ModuleDirectory.cmake │ ├── README.md │ ├── Real.cmake │ ├── Real │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ └── PGI.cmake │ ├── StackArraySizeLimit.cmake │ ├── StackArraySizeLimit │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ └── PGI.cmake │ ├── Standard.cmake │ ├── Standard │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ └── IntelLLVM.cmake │ ├── StandardCompliance.cmake │ └── StandardCompliance │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ └── PGI.cmake ├── FortranPreProcess.cmake ├── FortranPreProcess │ ├── FortranPreProcess.cmake │ ├── filename.cmake │ ├── fpp.pl │ └── target_sources.cmake ├── FunctionExtension.cmake ├── FunctionExtension │ ├── add_executable.cmake │ ├── add_library.cmake │ ├── backup.cmake │ ├── call.cmake │ ├── decrement.cmake │ ├── find_package.cmake │ ├── increment.cmake │ ├── pop.cmake │ ├── push.cmake │ ├── set_property.cmake │ ├── set_target_properties.cmake │ └── target_sources.cmake ├── GeneratedSources.cmake ├── GeneratedSources │ ├── README.md │ ├── target_sources.cmake │ └── trap.cmake ├── Git │ └── Submodule │ │ ├── Packages.cmake │ │ └── Packages │ │ ├── README.md │ │ ├── README │ │ └── git-submodules-101.md │ │ ├── check_version.cmake │ │ ├── configuration.cmake │ │ ├── find_package.cmake │ │ ├── init.cmake │ │ ├── list.cmake │ │ ├── options.cmake │ │ ├── package.cmake │ │ └── update.cmake ├── Intel.cmake ├── Intel │ ├── FloatingPoint │ │ ├── Model.cmake │ │ └── Speculation.cmake │ └── Fortran │ │ └── Assumptions.cmake ├── IntelLLVM.cmake ├── IntelLLVM │ ├── FloatingPoint │ │ ├── Model.cmake │ │ └── Speculation.cmake │ └── Fortran │ │ └── Assumptions.cmake ├── LICENSE ├── LinkOptions │ ├── StackSize.cmake │ └── StackSize │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ ├── LLVM.cmake │ │ ├── MSVC.cmake │ │ └── PGI.cmake ├── ListBinaryDir.cmake ├── README.md ├── Sanitizers.cmake ├── Sanitizers │ └── configuration.cmake ├── Selection.cmake ├── Warnings.cmake ├── Warnings │ ├── C.cmake │ ├── C │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ ├── LLVM.cmake │ │ └── MSVC.cmake │ ├── CUDA.cmake │ ├── CUDA │ │ └── NVIDIA.cmake │ ├── CXX.cmake │ ├── CXX │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ ├── LLVM.cmake │ │ └── MSVC.cmake │ ├── Fortran.cmake │ └── Fortran │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ └── IntelLLVM.cmake ├── config.cmake ├── documentation │ └── function-extension.md ├── shacl-config.cmake ├── shacl_FetchContent.cmake ├── shacl_FetchContent │ ├── README.md │ ├── directory_git_info.cmake │ └── relative_git_url.cmake └── tests │ ├── Backports │ ├── CMakeLists.txt │ └── X11 │ │ └── CMakeLists.txt │ ├── CMakeLists.txt │ ├── DelegatingCacheVariable │ └── CMakeLists.txt │ ├── DelegatingOption │ └── CMakeLists.txt │ ├── DelegatingSelection │ └── CMakeLists.txt │ ├── DependencyInjection │ ├── CMakeLists.txt │ ├── exe_injected.cmake │ ├── exe_main.cpp │ ├── lib.cpp │ └── lib_injected.cmake │ ├── DependentDelegatingCacheVariable │ └── CMakeLists.txt │ ├── DependentDelegatingOption │ └── CMakeLists.txt │ ├── DependentDelegatingSelection │ └── CMakeLists.txt │ ├── Fortran │ ├── BackslashEscape │ │ ├── CMakeLists.txt │ │ ├── use_backslash_escape.F90.in │ │ └── use_no_backslash_escape.F90.in │ ├── Backtrace │ │ ├── CMakeLists.txt │ │ └── backtrace.f90.in │ ├── CMakeLists.txt │ ├── Exceptions │ │ ├── CMakeLists.txt │ │ ├── a.f90 │ │ └── b.cpp │ ├── Integer │ │ ├── CMakeLists.txt │ │ ├── test.F90 │ │ ├── test.c │ │ └── test.cpp │ ├── LongLines │ │ ├── CMakeLists.txt │ │ └── longlines.f90.in │ ├── ModuleDirectory │ │ ├── CMakeLists.txt │ │ ├── check_exists.cmake │ │ └── test_mod.F90 │ ├── Real │ │ ├── CMakeLists.txt │ │ ├── test.F90 │ │ ├── test.c │ │ └── test.cpp │ ├── StackArraySizeLimit │ │ ├── CMakeLists.txt │ │ └── use_temp_arrays.F90.in │ ├── Standard │ │ ├── CMakeLists.txt │ │ └── use_standard.f90.in │ └── StandardCompliance │ │ ├── CMakeLists.txt │ │ └── use_fortran_standard_adherence.F90.in │ ├── FortranPreProcess │ ├── CMakeLists.txt │ ├── fprepro_defines.F90 │ ├── fprepro_includes.F90 │ └── fprepro_includes.inc │ ├── FunctionExtension │ ├── CMakeLists.txt │ ├── call │ │ └── CMakeLists.txt │ ├── integrated_features │ │ ├── CMakeLists.txt │ │ └── test_source.cpp │ ├── push_pop │ │ └── CMakeLists.txt │ ├── set_property │ │ └── CMakeLists.txt │ └── set_target_properties │ │ └── CMakeLists.txt │ ├── GeneratedSources │ ├── CMakeLists.txt │ └── target_sources │ │ ├── CMakeLists.txt │ │ ├── bar.c.in │ │ ├── foo.c.in │ │ ├── subdirectory │ │ ├── CMakeLists.txt │ │ └── foo.c.in │ │ ├── test1 │ │ └── test2 │ ├── Git │ └── Submodule │ │ └── Packages │ │ └── CMakeLists.txt │ ├── Intel │ ├── CMakeLists.txt │ ├── FPModel │ │ ├── CMakeLists.txt │ │ ├── use_intel_fp_model.F90.in │ │ ├── use_intel_fp_model.c.in │ │ └── use_intel_fp_model.cpp.in │ ├── FPSpeculation │ │ ├── CMakeLists.txt │ │ ├── use_intel_fp_speculation.F90.in │ │ ├── use_intel_fp_speculation.c.in │ │ └── use_intel_fp_speculation.cpp.in │ ├── FortranAssumptions │ │ ├── CMakeLists.txt │ │ └── assumptions.f90.in │ └── FortranStandardAdherence │ │ ├── CMakeLists.txt │ │ └── adherence.f90.in │ ├── LinkOptions │ ├── CMakeLists.txt │ └── StackSize │ │ ├── CMakeLists.txt │ │ ├── use_stack_size.c │ │ ├── use_stack_size.cpp │ │ └── use_stack_size.f90 │ ├── Sanitizers │ ├── CMakeLists.txt │ ├── trigger_asan.cpp │ ├── trigger_msan.cpp │ ├── trigger_tsan.cpp │ └── trigger_ubsan.cpp │ ├── Warnings │ ├── CMakeLists.txt │ ├── warnings.c.in │ ├── warnings.cpp.in │ ├── warnings.cu.in │ └── warnings.f90.in │ └── shacl_FetchContent │ ├── CMakeLists.txt │ └── dependencies.cmake ├── .github ├── scripts │ └── prep_valgrind_test.sh └── workflows │ └── ContinuousIntegration.yml ├── .gitignore ├── .gitlab-ci.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── ReleaseNotes.md ├── cmake ├── acetk-config.cmake.in ├── dependencies.cmake ├── unit_testing.cmake └── unit_testing_python.cmake ├── python ├── CMakeLists.txt ├── examples │ ├── 2003.710nc │ ├── 2003.perturbed.710nc │ ├── Pu239.pendf │ ├── create-a-dosimetry-ace-file.ipynb │ ├── perturb-an-existing-ace-file.ipynb │ └── pu239.ace.00y ├── src │ ├── ACEtk.python.cpp │ ├── AngularDistributionType.python.cpp │ ├── ContinuousEnergyTable.python.cpp │ ├── Data.python.cpp │ ├── DosimetryTable.python.cpp │ ├── EnergyDistributionType.python.cpp │ ├── Header.python.cpp │ ├── Header201.python.cpp │ ├── PhotoatomicTable.python.cpp │ ├── PhotonuclearTable.python.cpp │ ├── ReferenceFrame.python.cpp │ ├── Table.python.cpp │ ├── ThermalScatteringTable.python.cpp │ ├── Xsdir.python.cpp │ ├── XsdirEntry.python.cpp │ ├── continuous.python.cpp │ ├── continuous │ │ ├── AngleEnergyDistributionData.python.cpp │ │ ├── AngularDistributionBlock.python.cpp │ │ ├── AngularDistributionData.python.cpp │ │ ├── CrossSectionBlock.python.cpp │ │ ├── CrossSectionData.python.cpp │ │ ├── DelayedNeutronPrecursorBlock.python.cpp │ │ ├── DelayedNeutronPrecursorData.python.cpp │ │ ├── DiscretePhotonDistribution.python.cpp │ │ ├── DistributionGivenElsewhere.python.cpp │ │ ├── DistributionProbability.python.cpp │ │ ├── EnergyAngleDistributionData.python.cpp │ │ ├── EnergyDependentWattSpectrum.python.cpp │ │ ├── EnergyDistributionBlock.python.cpp │ │ ├── EquiprobableAngularBins.python.cpp │ │ ├── EquiprobableOutgoingEnergyBinData.python.cpp │ │ ├── EquiprobableOutgoingEnergyBins.python.cpp │ │ ├── EvaporationSpectrum.python.cpp │ │ ├── FissionMultiplicityBlock.python.cpp │ │ ├── FrameAndMultiplicityBlock.python.cpp │ │ ├── FullyIsotropicDistribution.python.cpp │ │ ├── GeneralEvaporationSpectrum.python.cpp │ │ ├── InterpolationData.python.cpp │ │ ├── IsotropicAngularDistribution.python.cpp │ │ ├── KalbachMannDistributionData.python.cpp │ │ ├── LevelScatteringDistribution.python.cpp │ │ ├── MultiDistributionData.python.cpp │ │ ├── MultiplicityReactionNumberBlock.python.cpp │ │ ├── NBodyPhaseSpaceDistribution.python.cpp │ │ ├── OutgoingEnergyDistributionData.python.cpp │ │ ├── ParameterData.python.cpp │ │ ├── PhotonProductionBlock.python.cpp │ │ ├── PhotonProductionCrossSectionBlock.python.cpp │ │ ├── PhotonProductionCrossSectionData.python.cpp │ │ ├── PolynomialFissionMultiplicity.python.cpp │ │ ├── PrincipalCrossSectionBlock.python.cpp │ │ ├── ProbabilityTable.python.cpp │ │ ├── ProbabilityTableBlock.python.cpp │ │ ├── ReactionNumberBlock.python.cpp │ │ ├── ReactionQValueBlock.python.cpp │ │ ├── SecondaryParticleAngularDistributionBlock.python.cpp │ │ ├── SecondaryParticleEnergyDistributionBlock.python.cpp │ │ ├── SecondaryParticleInformationBlock.python.cpp │ │ ├── SecondaryParticleLocatorBlock.python.cpp │ │ ├── SecondaryParticleProductionBlock.python.cpp │ │ ├── SecondaryParticleProductionCrossSectionBlock.python.cpp │ │ ├── SecondaryParticleTypeBlock.python.cpp │ │ ├── SimpleMaxwellianFissionSpectrum.python.cpp │ │ ├── TabulatedAngleEnergyDistribution.python.cpp │ │ ├── TabulatedAngularDistribution.python.cpp │ │ ├── TabulatedAngularDistributionWithProbability.python.cpp │ │ ├── TabulatedEnergyAngleDistribution.python.cpp │ │ ├── TabulatedEnergyDistribution.python.cpp │ │ ├── TabulatedFissionMultiplicity.python.cpp │ │ ├── TabulatedKalbachMannDistribution.python.cpp │ │ ├── TabulatedMultiplicity.python.cpp │ │ ├── TabulatedSecondaryParticleMultiplicity.python.cpp │ │ ├── TwoBodyTransferDistribution.python.cpp │ │ └── UndefinedDistribution.python.cpp │ ├── definitions.hpp │ ├── dosimetry.python.cpp │ ├── dosimetry │ │ ├── CrossSectionBlock.python.cpp │ │ └── CrossSectionData.python.cpp │ ├── electron.python.cpp │ ├── electron │ │ ├── BremsstrahlungBlock.python.cpp │ │ ├── ElasticAngularDistributionBlock.python.cpp │ │ ├── ElasticCrossSectionBlock.python.cpp │ │ ├── ElectronShellBlock.python.cpp │ │ ├── ElectronSubshellBlock.python.cpp │ │ ├── EnergyDistributionBlock.python.cpp │ │ ├── ExcitationBlock.python.cpp │ │ ├── PrincipalCrossSectionBlock.python.cpp │ │ ├── SubshellTransitionData.python.cpp │ │ ├── SubshellTransitionDataBlock.python.cpp │ │ ├── TabulatedAngularDistribution.python.cpp │ │ └── TabulatedEnergyDistribution.python.cpp │ ├── photoatomic.python.cpp │ ├── photoatomic │ │ ├── CoherentFormFactorBlock.python.cpp │ │ ├── ComptonProfile.python.cpp │ │ ├── ComptonProfileBlock.python.cpp │ │ ├── FluorescenceDataBlock.python.cpp │ │ ├── HeatingNumbersBlock.python.cpp │ │ ├── IncoherentScatteringFunctionBlock.python.cpp │ │ ├── PhotoelectricCrossSectionBlock.python.cpp │ │ └── PrincipalCrossSectionBlock.python.cpp │ ├── photonuclear.python.cpp │ ├── photonuclear │ │ ├── PrincipalCrossSectionBlock.python.cpp │ │ └── SecondaryParticleLocatorBlock.python.cpp │ ├── thermal.python.cpp │ └── thermal │ │ ├── CrossSectionBlock.python.cpp │ │ ├── DiscreteCosines.python.cpp │ │ ├── DiscreteCosinesWithProbability.python.cpp │ │ ├── ElasticAngularDistributionBlock.python.cpp │ │ └── InelasticAngularDistributionBlock.python.cpp ├── stubs │ └── ACEtk │ │ ├── ACEtk.pyi │ │ ├── continuous.pyi │ │ ├── dosimetry.pyi │ │ ├── electron.pyi │ │ ├── photoatomic.pyi │ │ ├── photonuclear.pyi │ │ ├── sequence.pyi │ │ └── thermal.pyi └── test │ ├── Test_ACEtk_Data.py │ ├── Test_ACEtk_Header.py │ ├── Test_ACEtk_Header201.py │ ├── Test_ACEtk_Table.py │ ├── Test_ACEtk_Xsdir.py │ ├── Test_ACEtk_XsdirEntry.py │ ├── __init__.py │ ├── continuous │ ├── Test_ACEtk_continuous_AngleEnergyDistributionData.py │ ├── Test_ACEtk_continuous_AngularDistributionBlock.py │ ├── Test_ACEtk_continuous_AngularDistributionData.py │ ├── Test_ACEtk_continuous_CrossSectionBlock.py │ ├── Test_ACEtk_continuous_CrossSectionData.py │ ├── Test_ACEtk_continuous_DelayedNeutronPrecursorBlock.py │ ├── Test_ACEtk_continuous_DelayedNeutronPrecursorData.py │ ├── Test_ACEtk_continuous_DiscretePhotonDistribution.py │ ├── Test_ACEtk_continuous_DistributionProbability.py │ ├── Test_ACEtk_continuous_EnergyAngleDistributionData.py │ ├── Test_ACEtk_continuous_EnergyDependentWattSpectrum.py │ ├── Test_ACEtk_continuous_EnergyDistributionBlock.py │ ├── Test_ACEtk_continuous_EquiprobableAngularBins.py │ ├── Test_ACEtk_continuous_EquiprobableOutgoingEnergyBinData.py │ ├── Test_ACEtk_continuous_EquiprobableOutgoingEnergyBins.py │ ├── Test_ACEtk_continuous_EvaporationSpectrum.py │ ├── Test_ACEtk_continuous_FissionMultiplicityBlock.py │ ├── Test_ACEtk_continuous_FrameAndMultiplicityBlock.py │ ├── Test_ACEtk_continuous_GeneralEvaporationSpectrum.py │ ├── Test_ACEtk_continuous_IsotropicAngularDistribution.py │ ├── Test_ACEtk_continuous_KalbachMannDistributionData.py │ ├── Test_ACEtk_continuous_LevelScatteringDistribution.py │ ├── Test_ACEtk_continuous_MultiDistributionData.py │ ├── Test_ACEtk_continuous_MultiplicityReactionNumberBlock.py │ ├── Test_ACEtk_continuous_NBodyPhaseSpaceDistribution.py │ ├── Test_ACEtk_continuous_OutgoingEnergyDistributionData.py │ ├── Test_ACEtk_continuous_ParameterData.py │ ├── Test_ACEtk_continuous_PhotonProductionBlock.py │ ├── Test_ACEtk_continuous_PhotonProductionCrossSectionBlock.py │ ├── Test_ACEtk_continuous_PhotonProductionCrossSectionData.py │ ├── Test_ACEtk_continuous_PolynomialFissionMultiplicity.py │ ├── Test_ACEtk_continuous_PrincipalCrossSectionBlock.py │ ├── Test_ACEtk_continuous_ProbabilityTable.py │ ├── Test_ACEtk_continuous_ProbabilityTableBlock.py │ ├── Test_ACEtk_continuous_ReactionNumberBlock.py │ ├── Test_ACEtk_continuous_ReactionQValueBlock.py │ ├── Test_ACEtk_continuous_SecondaryParticleAngularDistributionBlock.py │ ├── Test_ACEtk_continuous_SecondaryParticleEnergyDistributionBlock.py │ ├── Test_ACEtk_continuous_SecondaryParticleInformationBlock.py │ ├── Test_ACEtk_continuous_SecondaryParticleLocatorBlock.py │ ├── Test_ACEtk_continuous_SecondaryParticleProductionBlock.py │ ├── Test_ACEtk_continuous_SecondaryParticleProductionCrossSectionBlock.py │ ├── Test_ACEtk_continuous_SecondaryParticleTypeBlock.py │ ├── Test_ACEtk_continuous_SimpleMaxwellianFissionSpectrum.py │ ├── Test_ACEtk_continuous_TabulatedAngleEnergyDistribution.py │ ├── Test_ACEtk_continuous_TabulatedAngularDistribution.py │ ├── Test_ACEtk_continuous_TabulatedAngularDistributionWithProbability.py │ ├── Test_ACEtk_continuous_TabulatedEnergyAngleDistribution.py │ ├── Test_ACEtk_continuous_TabulatedEnergyDistribution.py │ ├── Test_ACEtk_continuous_TabulatedFissionMultiplicity.py │ ├── Test_ACEtk_continuous_TabulatedKalbachMannDistribution.py │ ├── Test_ACEtk_continuous_TabulatedMultiplicity.py │ ├── Test_ACEtk_continuous_TabulatedSecondaryParticleMultiplicity.py │ ├── Test_ACEtk_continuous_TwoBodyTransferDistribution.py │ └── __init__.py │ ├── dosimetry │ ├── Test_ACEtk_dosimetry_CrossSectionBlock.py │ └── Test_ACEtk_dosimetry_CrossSectionData.py │ ├── electron │ ├── Test_ACEtk_electron_BremsstrahlungBlock.py │ ├── Test_ACEtk_electron_ElasticAngularDistributionBlock.py │ ├── Test_ACEtk_electron_ElasticCrossSectionBlock.py │ ├── Test_ACEtk_electron_ElectronShellBlock.py │ ├── Test_ACEtk_electron_ElectronSubshellBlock.py │ ├── Test_ACEtk_electron_EnergyDistributionBlock.py │ ├── Test_ACEtk_electron_ExcitationBlock.py │ ├── Test_ACEtk_electron_PrincipalCrossSectionBlock.py │ ├── Test_ACEtk_electron_SubshellTransitionData.py │ ├── Test_ACEtk_electron_SubshellTransitionDataBlock.py │ ├── Test_ACEtk_electron_TabulatedAngularDistribution.py │ ├── Test_ACEtk_electron_TabulatedEnergyDistribution.py │ └── __init__.py │ ├── photoatomic │ ├── Test_ACEtk_photoatomic_CoherentFormFactorBlock.py │ ├── Test_ACEtk_photoatomic_ComptonProfile.py │ ├── Test_ACEtk_photoatomic_ComptonProfileBlock.py │ ├── Test_ACEtk_photoatomic_FluorescenceDataBlock.py │ ├── Test_ACEtk_photoatomic_HeatingNumbersBlock.py │ ├── Test_ACEtk_photoatomic_IncoherentScatteringFunctionBlock.py │ ├── Test_ACEtk_photoatomic_PhotoelectricCrossSectionBlock.py │ ├── Test_ACEtk_photoatomic_PrincipalCrossSectionBlock.py │ └── __init__.py │ ├── photonuclear │ ├── Test_ACEtk_photonuclear_PrincipalCrossSectionBlock.py │ ├── Test_ACEtk_photonuclear_SecondaryParticleLocatorBlock.py │ └── __init__.py │ └── thermal │ ├── Test_ACEtk_thermal_CrossSectionBlock.py │ ├── Test_ACEtk_thermal_DiscreteCosines.py │ ├── Test_ACEtk_thermal_DiscreteCosinesWithProbability.py │ ├── Test_ACEtk_thermal_ElasticAngularDistributionBlock.py │ ├── Test_ACEtk_thermal_InelasticAngularDistributionBlock.py │ └── __init__.py ├── src ├── ACEtk.hpp ├── ACEtk │ ├── AngularDistributionType.hpp │ ├── ContinuousEnergyTable.hpp │ ├── ContinuousEnergyTable │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── generateBlocks.hpp │ │ │ ├── generateData.hpp │ │ │ ├── setSZA.hpp │ │ │ └── verifyType.hpp │ ├── DosimetryTable.hpp │ ├── DosimetryTable │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── generateData.hpp │ │ │ └── verifyType.hpp │ ├── EnergyDistributionType.hpp │ ├── PhotoatomicTable.hpp │ ├── PhotoatomicTable │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── generateBlocks.hpp │ │ │ ├── generateData.hpp │ │ │ ├── verifySubshellIndex.hpp │ │ │ └── verifyType.hpp │ ├── PhotonuclearTable.hpp │ ├── PhotonuclearTable │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── generateBlocks.hpp │ │ │ ├── generateData.hpp │ │ │ └── verifyType.hpp │ ├── ReferenceFrame.hpp │ ├── State.hpp │ ├── Table.hpp │ ├── Table │ │ ├── Data.hpp │ │ ├── Data │ │ │ ├── Parse.hpp │ │ │ ├── Parse │ │ │ │ └── src │ │ │ │ │ ├── IZAW.hpp │ │ │ │ │ ├── JXS.hpp │ │ │ │ │ ├── NXS.hpp │ │ │ │ │ └── XSS.hpp │ │ │ └── src │ │ │ │ ├── XSS.hpp │ │ │ │ ├── ctor.hpp │ │ │ │ ├── fetch.hpp │ │ │ │ ├── name.hpp │ │ │ │ ├── print.hpp │ │ │ │ └── verifyIndex.hpp │ │ ├── Header.hpp │ │ ├── Header │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── parse.hpp │ │ │ │ ├── print.hpp │ │ │ │ └── strip.hpp │ │ ├── Header201.hpp │ │ ├── Header201 │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── parse.hpp │ │ │ │ └── print.hpp │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── parse.hpp │ │ │ └── print.hpp │ ├── ThermalScatteringTable.hpp │ ├── ThermalScatteringTable │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── generateBlocks.hpp │ │ │ ├── generateData.hpp │ │ │ └── verifyType.hpp │ ├── Xsdir.hpp │ ├── Xsdir │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── fromFile.hpp │ │ │ ├── indices.hpp │ │ │ ├── parse.hpp │ │ │ ├── print.hpp │ │ │ └── stream.hpp │ ├── XsdirEntry.hpp │ ├── XsdirEntry │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── parse.hpp │ │ │ ├── print.hpp │ │ │ └── stream.hpp │ ├── base │ │ ├── AngularDistributionBlock.hpp │ │ ├── AngularDistributionBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ ├── insertZero.hpp │ │ │ │ ├── verifyDataIndex.hpp │ │ │ │ └── verifySize.hpp │ │ ├── ArrayData.hpp │ │ ├── ArrayData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ ├── verifyIndex.hpp │ │ │ │ └── verifySize.hpp │ │ ├── Base.hpp │ │ ├── Base │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateData.hpp │ │ │ │ ├── verifyIndex.hpp │ │ │ │ └── verifyReactionIndex.hpp │ │ ├── BlockWithLocators.hpp │ │ ├── BlockWithLocators │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateData.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ ├── verifyDataIndex.hpp │ │ │ │ └── verifySize.hpp │ │ ├── ColumnData.hpp │ │ ├── ColumnData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── DistributionData.hpp │ │ ├── DistributionData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ ├── verifySize.hpp │ │ │ │ └── verifyValueIndex.hpp │ │ ├── DistributionDataWithInterpolationType.hpp │ │ ├── DistributionDataWithInterpolationType │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ ├── verifySize.hpp │ │ │ │ └── verifyValueIndex.hpp │ │ ├── ElectronBlockWithLocators.hpp │ │ ├── ElectronBlockWithLocators │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifyDataIndex.hpp │ │ ├── EvaporationSpectrum.hpp │ │ ├── EvaporationSpectrum │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── TabulatedData.hpp │ │ ├── TabulatedData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── TabulatedProbabilityDistribution.hpp │ │ ├── TabulatedProbabilityDistribution │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── TwoParameterDistribution.hpp │ │ └── TwoParameterDistribution │ │ │ └── src │ │ │ ├── ctor.hpp │ │ │ └── verifySize.hpp │ ├── continuous.hpp │ ├── continuous │ │ ├── AngleEnergyDistributionData.hpp │ │ ├── AngleEnergyDistributionData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ └── generateXSS.hpp │ │ ├── AngularDistributionBlock.hpp │ │ ├── AngularDistributionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── AngularDistributionData.hpp │ │ ├── AngularDistributionData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ ├── verifyIncidentEnergyIndex.hpp │ │ │ │ └── verifySize.hpp │ │ ├── CrossSectionBlock.hpp │ │ ├── CrossSectionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── CrossSectionData.hpp │ │ ├── CrossSectionData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── DelayedNeutronPrecursorBlock.hpp │ │ ├── DelayedNeutronPrecursorBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifyGroupIndex.hpp │ │ ├── DelayedNeutronPrecursorData.hpp │ │ ├── DelayedNeutronPrecursorData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ └── generateXSS.hpp │ │ ├── DiscretePhotonDistribution.hpp │ │ ├── DiscretePhotonDistribution │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── DistributionGivenElsewhere.hpp │ │ ├── DistributionProbability.hpp │ │ ├── DistributionProbability │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── EnergyAngleDistributionData.hpp │ │ ├── EnergyAngleDistributionData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ └── generateXSS.hpp │ │ ├── EnergyDependentWattSpectrum.hpp │ │ ├── EnergyDependentWattSpectrum │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── EnergyDistributionBlock.hpp │ │ ├── EnergyDistributionBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ ├── verifyDataIndex.hpp │ │ │ │ └── verifySize.hpp │ │ ├── EquiprobableAngularBins.hpp │ │ ├── EquiprobableAngularBins │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ └── verifySize.hpp │ │ ├── EquiprobableOutgoingEnergyBinData.hpp │ │ ├── EquiprobableOutgoingEnergyBinData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ ├── verifyIncidentEnergyIndex.hpp │ │ │ │ └── verifySize.hpp │ │ ├── EquiprobableOutgoingEnergyBins.hpp │ │ ├── EquiprobableOutgoingEnergyBins │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── EvaporationSpectrum.hpp │ │ ├── EvaporationSpectrum │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── FissionMultiplicityBlock.hpp │ │ ├── FissionMultiplicityBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ └── generateXSS.hpp │ │ ├── FrameAndMultiplicityBlock.hpp │ │ ├── FrameAndMultiplicityBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── FullyIsotropicDistribution.hpp │ │ ├── GeneralEvaporationSpectrum.hpp │ │ ├── GeneralEvaporationSpectrum │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── InterpolationData.hpp │ │ ├── InterpolationData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ └── generateXSS.hpp │ │ ├── IsotropicAngularDistribution.hpp │ │ ├── IsotropicAngularDistribution │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── KalbachMannDistributionData.hpp │ │ ├── KalbachMannDistributionData │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── LevelScatteringDistribution.hpp │ │ ├── LevelScatteringDistribution │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── MultiDistributionData.hpp │ │ ├── MultiDistributionData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifyDistributionIndex.hpp │ │ ├── MultiplicityReactionNumberBlock.hpp │ │ ├── MultiplicityReactionNumberBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── NBodyPhaseSpaceDistribution.hpp │ │ ├── NBodyPhaseSpaceDistribution │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── OutgoingEnergyDistributionData.hpp │ │ ├── OutgoingEnergyDistributionData │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── ParameterData.hpp │ │ ├── ParameterData │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── PhotonProductionBlock.hpp │ │ ├── PhotonProductionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── PhotonProductionCrossSectionBlock.hpp │ │ ├── PhotonProductionCrossSectionBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateData.hpp │ │ │ │ └── generateXSS.hpp │ │ ├── PhotonProductionCrossSectionData.hpp │ │ ├── PhotonProductionCrossSectionData │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── PolynomialFissionMultiplicity.hpp │ │ ├── PolynomialFissionMultiplicity │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ ├── verifyLNU.hpp │ │ │ │ └── verifySize.hpp │ │ ├── PrincipalCrossSectionBlock.hpp │ │ ├── PrincipalCrossSectionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── ProbabilityTable.hpp │ │ ├── ProbabilityTable │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── ProbabilityTableBlock.hpp │ │ ├── ProbabilityTableBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifyIndex.hpp │ │ ├── ReactionNumberBlock.hpp │ │ ├── ReactionNumberBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── ReactionQValueBlock.hpp │ │ ├── ReactionQValueBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── SecondaryParticleAngularDistributionBlock.hpp │ │ ├── SecondaryParticleAngularDistributionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── SecondaryParticleEnergyDistributionBlock.hpp │ │ ├── SecondaryParticleEnergyDistributionBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateData.hpp │ │ │ │ ├── generateFrames.hpp │ │ │ │ └── generateXSS.hpp │ │ ├── SecondaryParticleInformationBlock.hpp │ │ ├── SecondaryParticleInformationBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── SecondaryParticleLocatorBlock.hpp │ │ ├── SecondaryParticleLocatorBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── SecondaryParticleProductionBlock.hpp │ │ ├── SecondaryParticleProductionBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateXSS.hpp │ │ │ │ └── verifySize.hpp │ │ ├── SecondaryParticleProductionCrossSectionBlock.hpp │ │ ├── SecondaryParticleProductionCrossSectionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── SecondaryParticleTypeBlock.hpp │ │ ├── SecondaryParticleTypeBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── SimpleMaxwellianFissionSpectrum.hpp │ │ ├── SimpleMaxwellianFissionSpectrum │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── TabulatedAngleEnergyDistribution.hpp │ │ ├── TabulatedAngleEnergyDistribution │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── TabulatedAngularDistribution.hpp │ │ ├── TabulatedAngularDistribution │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── TabulatedAngularDistributionWithProbability.hpp │ │ ├── TabulatedAngularDistributionWithProbability │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── TabulatedEnergyAngleDistribution.hpp │ │ ├── TabulatedEnergyAngleDistribution │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ └── generateXSS.hpp │ │ ├── TabulatedEnergyDistribution.hpp │ │ ├── TabulatedEnergyDistribution │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── TabulatedFissionMultiplicity.hpp │ │ ├── TabulatedFissionMultiplicity │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ └── generateXSS.hpp │ │ ├── TabulatedKalbachMannDistribution.hpp │ │ ├── TabulatedKalbachMannDistribution │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── TabulatedMultiplicity.hpp │ │ ├── TabulatedMultiplicity │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── TabulatedSecondaryParticleMultiplicity.hpp │ │ ├── TabulatedSecondaryParticleMultiplicity │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateBlocks.hpp │ │ │ │ └── generateXSS.hpp │ │ ├── TwoBodyTransferDistribution.hpp │ │ ├── TwoBodyTransferDistribution │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ └── UndefinedDistribution.hpp │ ├── dosimetry.hpp │ ├── dosimetry │ │ ├── CrossSectionBlock.hpp │ │ ├── CrossSectionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── CrossSectionData.hpp │ │ └── CrossSectionData │ │ │ └── src │ │ │ └── ctor.hpp │ ├── electron.hpp │ ├── electron │ │ ├── BremsstrahlungBlock.hpp │ │ ├── BremsstrahlungBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── ElasticAngularDistributionBlock.hpp │ │ ├── ElasticAngularDistributionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── ElasticCrossSectionBlock.hpp │ │ ├── ElasticCrossSectionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── ElectronShellBlock.hpp │ │ ├── ElectronShellBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── ElectronSubshellBlock.hpp │ │ ├── ElectronSubshellBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── EnergyDistributionBlock.hpp │ │ ├── EnergyDistributionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── ExcitationBlock.hpp │ │ ├── ExcitationBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── PrincipalCrossSectionBlock.hpp │ │ ├── PrincipalCrossSectionBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateArrays.hpp │ │ │ │ └── verifyIndex.hpp │ │ ├── SubshellTransitionData.hpp │ │ ├── SubshellTransitionData │ │ │ └── src │ │ │ │ ├── calculateNumberTransitions.hpp │ │ │ │ ├── ctor.hpp │ │ │ │ └── generateArrays.hpp │ │ ├── SubshellTransitionDataBlock.hpp │ │ ├── SubshellTransitionDataBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── TabulatedAngularDistribution.hpp │ │ ├── TabulatedAngularDistribution │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── TabulatedEnergyDistribution.hpp │ │ └── TabulatedEnergyDistribution │ │ │ └── src │ │ │ └── ctor.hpp │ ├── fromFile.hpp │ ├── photoatomic.hpp │ ├── photoatomic │ │ ├── CoherentFormFactorBlock.hpp │ │ ├── CoherentFormFactorBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateArrays.hpp │ │ │ │ ├── numberArrays.hpp │ │ │ │ └── numberElements.hpp │ │ ├── ComptonProfile.hpp │ │ ├── ComptonProfile │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── ComptonProfileBlock.hpp │ │ ├── ComptonProfileBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── FluorescenceDataBlock.hpp │ │ ├── FluorescenceDataBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── HeatingNumbersBlock.hpp │ │ ├── HeatingNumbersBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── IncoherentScatteringFunctionBlock.hpp │ │ ├── IncoherentScatteringFunctionBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ ├── generateArrays.hpp │ │ │ │ ├── numberArrays.hpp │ │ │ │ └── numberElements.hpp │ │ ├── PhotoelectricCrossSectionBlock.hpp │ │ ├── PhotoelectricCrossSectionBlock │ │ │ └── src │ │ │ │ ├── ctor.hpp │ │ │ │ └── verifyIndex.hpp │ │ ├── PrincipalCrossSectionBlock.hpp │ │ └── PrincipalCrossSectionBlock │ │ │ └── src │ │ │ └── ctor.hpp │ ├── photonuclear.hpp │ ├── photonuclear │ │ ├── PrincipalCrossSectionBlock.hpp │ │ ├── PrincipalCrossSectionBlock │ │ │ └── src │ │ │ │ └── ctor.hpp │ │ ├── SecondaryParticleLocatorBlock.hpp │ │ └── SecondaryParticleLocatorBlock │ │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── generateXSS.hpp │ │ │ └── verifySize.hpp │ ├── thermal.hpp │ └── thermal │ │ ├── CrossSectionBlock.hpp │ │ ├── CrossSectionBlock │ │ └── src │ │ │ └── ctor.hpp │ │ ├── DiscreteCosines.hpp │ │ ├── DiscreteCosines │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── generateXSS.hpp │ │ │ └── verifySize.hpp │ │ ├── DiscreteCosinesWithProbability.hpp │ │ ├── DiscreteCosinesWithProbability │ │ └── src │ │ │ ├── ctor.hpp │ │ │ ├── generateXSS.hpp │ │ │ └── verifySize.hpp │ │ ├── ElasticAngularDistributionBlock.hpp │ │ ├── ElasticAngularDistributionBlock │ │ └── src │ │ │ └── ctor.hpp │ │ ├── InelasticAngularDistributionBlock.hpp │ │ └── InelasticAngularDistributionBlock │ │ └── src │ │ ├── ctor.hpp │ │ ├── generateBlocks.hpp │ │ ├── generateXSS.hpp │ │ ├── verifyIndices.hpp │ │ └── verifySize.hpp └── legacy │ ├── ACEtk.hpp │ ├── interpretation.hpp │ └── interpretation │ ├── DEDX1.hpp │ ├── DEDX1 │ ├── BPS.hpp │ ├── CRTP.hpp │ ├── CRTP │ │ └── src │ │ │ └── stoppingPowers.hpp │ ├── StandardWithCutoff.hpp │ ├── StandardWithoutCutoff.hpp │ └── test │ │ ├── dedx1.test.cpp │ │ └── resources │ │ ├── 1001.dedx.h1 │ │ └── faux.dedx.data │ ├── EL03.hpp │ ├── EL03 │ ├── AtomicLevels.hpp │ ├── MottScatteringCorrection.hpp │ ├── RadiativeStoppingPower.hpp │ ├── RileyCrossSection.hpp │ └── test │ │ ├── AtomicLevels.test.cpp │ │ ├── MottScatteringCorrection.test.cpp │ │ ├── RileyCrossSection.test.cpp │ │ ├── el03.test.cpp │ │ └── resources │ │ ├── 1000.e03 │ │ ├── 1000.el03 │ │ ├── 79000.el03 │ │ └── el03 │ ├── EPR.hpp │ ├── EPR │ ├── CRTP.hpp │ ├── CRTP │ │ └── FormFactors.hpp │ ├── Coherent.hpp │ ├── Incoherent.hpp │ └── test │ │ ├── Coherent.test.cpp │ │ ├── Incoherent.test.cpp │ │ ├── eprdata.test.cpp │ │ └── resources │ │ └── 1000.14p │ ├── MP1.hpp │ └── MP1 │ ├── DiscreteData.hpp │ ├── src │ ├── energyGrid.hpp │ ├── fetch.hpp │ ├── findStartOfBlock.hpp │ └── totalCrossSection.hpp │ └── test │ ├── cumulativeDistributions.test.cpp │ ├── deflectionCosines.test.cpp │ ├── energyGrid.test.cpp │ ├── resources │ ├── 1000.mp1 │ └── 79000.mp1 │ └── totalCrossSection.test.cpp └── test ├── CMakeLists.txt ├── ContinuousEnergyTable.test.cpp ├── DosimetryTable.test.cpp ├── PhotoatomicTable.test.cpp ├── PhotonuclearTable.test.cpp ├── Table ├── Data │ ├── Data.test.cpp │ └── Parse.test.cpp ├── Header.test.cpp ├── Header201.test.cpp └── Table.test.cpp ├── ThermalScatteringTable.test.cpp ├── Xsdir.test.cpp ├── XsdirEntry.test.cpp ├── continuous ├── AngleEnergyDistributionData.test.cpp ├── AngularDistributionBlock.test.cpp ├── AngularDistributionData.test.cpp ├── CrossSectionBlock.test.cpp ├── CrossSectionData.test.cpp ├── DelayedNeutronPrecursorBlock.test.cpp ├── DelayedNeutronPrecursorData.test.cpp ├── DiscretePhotonDistribution.test.cpp ├── DistributionProbability.test.cpp ├── EnergyAngleDistributionData.test.cpp ├── EnergyDependentWattSpectrum.test.cpp ├── EnergyDistributionBlock.test.cpp ├── EquiprobableAngularBins.test.cpp ├── EquiprobableOutgoingEnergyBinData.test.cpp ├── EquiprobableOutgoingEnergyBins.test.cpp ├── EvaporationSpectrum.test.cpp ├── FissionMultiplicityBlock.test.cpp ├── FrameAndMultiplicityBlock.test.cpp ├── GeneralEvaporationSpectrum.test.cpp ├── InterpolationData.test.cpp ├── IsotropicAngularDistribution.test.cpp ├── KalbachMannDistributionData.test.cpp ├── LevelScatteringDistribution.test.cpp ├── MultiDistributionData.test.cpp ├── MultiplicityReactionNumberBlock.test.cpp ├── NBodyPhaseSpaceDistribution.test.cpp ├── OutgoingEnergyDistributionData.test.cpp ├── ParameterData.test.cpp ├── PhotonProductionBlock.test.cpp ├── PhotonProductionCrossSectionBlock.test.cpp ├── PhotonProductionCrossSectionData.test.cpp ├── PolynomialFissionMultiplicity.test.cpp ├── PrincipalCrossSectionBlock.test.cpp ├── ProbabilityTable.test.cpp ├── ProbabilityTableBlock.test.cpp ├── ReactionNumberBlock.test.cpp ├── ReactionQValueBlock.test.cpp ├── SecondaryParticleAngularDistributionBlock.test.cpp ├── SecondaryParticleEnergyDistributionBlock.test.cpp ├── SecondaryParticleInformationBlock.test.cpp ├── SecondaryParticleLocatorBlock.test.cpp ├── SecondaryParticleProductionBlock.test.cpp ├── SecondaryParticleProductionCrossSectionBlock.test.cpp ├── SecondaryParticleTypeBlock.test.cpp ├── SimpleMaxwellianFissionSpectrum.test.cpp ├── TabulatedAngleEnergyDistribution.test.cpp ├── TabulatedAngularDistribution.test.cpp ├── TabulatedAngularDistributionWithProbability.test.cpp ├── TabulatedEnergyAngleDistribution.test.cpp ├── TabulatedEnergyDistribution.test.cpp ├── TabulatedFissionMultiplicity.test.cpp ├── TabulatedKalbachMannDistribution.test.cpp ├── TabulatedMultiplicity.test.cpp ├── TabulatedSecondaryParticleMultiplicity.test.cpp └── TwoBodyTransferDistribution.test.cpp ├── dosimetry ├── CrossSectionBlock.test.cpp └── CrossSectionData.test.cpp ├── electron ├── BremsstrahlungBlock.test.cpp ├── ElasticAngularDistributionBlock.test.cpp ├── ElasticCrossSectionBlock.test.cpp ├── ElectronShellBlock.test.cpp ├── ElectronSubshellBlock.test.cpp ├── EnergyDistributionBlock.test.cpp ├── ExcitationBlock.test.cpp ├── PrincipalCrossSectionBlock.test.cpp ├── SubshellTransitionData.test.cpp ├── SubshellTransitionDataBlock.test.cpp ├── TabulatedAngularDistribution.test.cpp └── TabulatedEnergyDistribution.test.cpp ├── photoatomic ├── CoherentFormFactorBlock.test.cpp ├── ComptonProfile.test.cpp ├── ComptonProfileBlock.test.cpp ├── FluorescenceDataBlock.test.cpp ├── HeatingNumbersBlock.test.cpp ├── IncoherentScatteringFunctionBlock.test.cpp ├── PhotoelectricCrossSectionBlock.test.cpp └── PrincipalCrossSectionBlock.test.cpp ├── photonuclear ├── PrincipalCrossSectionBlock.test.cpp └── SecondaryParticleLocatorBlock.test.cpp ├── resources ├── 1000.01p ├── 1000.12p ├── 12000.84p ├── 13027.24y ├── 2003.710nc ├── 3000.03p ├── 6000.14p ├── 92235.710nc ├── 92235.710nc.output ├── 92238.69c ├── 94239.31u ├── al-27.40t ├── d-lid.10t ├── h-h2o.40t └── zr-zrh.40t └── thermal ├── CrossSectionBlock.test.cpp ├── DiscreteCosines.test.cpp ├── DiscreteCosinesWithProbability.test.cpp ├── ElasticAngularDistributionBlock.test.cpp └── InelasticAngularDistributionBlock.test.cpp /.cmake/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw? 2 | *~ 3 | *.bak 4 | -------------------------------------------------------------------------------- /.cmake/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/.gitlab-ci.yml -------------------------------------------------------------------------------- /.cmake/Backports/X11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Backports/X11.cmake -------------------------------------------------------------------------------- /.cmake/Backports/X11/CheckFunctionExists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Backports/X11/CheckFunctionExists.c -------------------------------------------------------------------------------- /.cmake/Backports/X11/CheckFunctionExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Backports/X11/CheckFunctionExists.cmake -------------------------------------------------------------------------------- /.cmake/Backports/X11/CheckLibraryExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Backports/X11/CheckLibraryExists.cmake -------------------------------------------------------------------------------- /.cmake/Backports/X11/FindPackageMessage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Backports/X11/FindPackageMessage.cmake -------------------------------------------------------------------------------- /.cmake/Backports/X11/FindX11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Backports/X11/FindX11.cmake -------------------------------------------------------------------------------- /.cmake/CMakeDependentCacheVar.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/CMakeDependentCacheVar.cmake -------------------------------------------------------------------------------- /.cmake/CMakeDependentSelection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/CMakeDependentSelection.cmake -------------------------------------------------------------------------------- /.cmake/DelegatingCacheVariable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/DelegatingCacheVariable.cmake -------------------------------------------------------------------------------- /.cmake/DelegatingOption.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/DelegatingOption.cmake -------------------------------------------------------------------------------- /.cmake/DelegatingSelection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/DelegatingSelection.cmake -------------------------------------------------------------------------------- /.cmake/DependencyInjection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/DependencyInjection.cmake -------------------------------------------------------------------------------- /.cmake/DependencyInjection/add_executable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/DependencyInjection/add_executable.cmake -------------------------------------------------------------------------------- /.cmake/DependencyInjection/add_library.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/DependencyInjection/add_library.cmake -------------------------------------------------------------------------------- /.cmake/DependentDelegatingCacheVariable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/DependentDelegatingCacheVariable.cmake -------------------------------------------------------------------------------- /.cmake/DependentDelegatingOption.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/DependentDelegatingOption.cmake -------------------------------------------------------------------------------- /.cmake/DependentDelegatingSelection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/DependentDelegatingSelection.cmake -------------------------------------------------------------------------------- /.cmake/Fortran.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/BackslashEscape.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/BackslashEscape.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/BackslashEscape/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/BackslashEscape/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/BackslashEscape/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/BackslashEscape/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/BackslashEscape/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/BackslashEscape/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/BackslashEscape/PGI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/BackslashEscape/PGI.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Backtrace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Backtrace.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Backtrace/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Backtrace/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Backtrace/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Backtrace/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Backtrace/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Backtrace/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Backtrace/PGI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Backtrace/PGI.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Exceptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Exceptions.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Exceptions/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Exceptions/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Exceptions/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Exceptions/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Exceptions/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Exceptions/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Exceptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Exceptions/README.md -------------------------------------------------------------------------------- /.cmake/Fortran/Integer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Integer.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Integer/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Integer/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Integer/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Integer/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Integer/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Integer/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Integer/PGI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Integer/PGI.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/LongLines.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/LongLines.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/LongLines/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/LongLines/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/ModuleDirectory.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/ModuleDirectory.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/README.md -------------------------------------------------------------------------------- /.cmake/Fortran/Real.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Real.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Real/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Real/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Real/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Real/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Real/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Real/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Real/PGI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Real/PGI.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/StackArraySizeLimit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/StackArraySizeLimit.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/StackArraySizeLimit/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/StackArraySizeLimit/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/StackArraySizeLimit/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/StackArraySizeLimit/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/StackArraySizeLimit/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/StackArraySizeLimit/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/StackArraySizeLimit/PGI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/StackArraySizeLimit/PGI.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Standard.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Standard.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Standard/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Standard/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Standard/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Standard/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/Standard/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/Standard/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/StandardCompliance.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/StandardCompliance.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/StandardCompliance/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/StandardCompliance/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/StandardCompliance/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/StandardCompliance/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/StandardCompliance/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/StandardCompliance/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/Fortran/StandardCompliance/PGI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Fortran/StandardCompliance/PGI.cmake -------------------------------------------------------------------------------- /.cmake/FortranPreProcess.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FortranPreProcess.cmake -------------------------------------------------------------------------------- /.cmake/FortranPreProcess/FortranPreProcess.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FortranPreProcess/FortranPreProcess.cmake -------------------------------------------------------------------------------- /.cmake/FortranPreProcess/filename.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FortranPreProcess/filename.cmake -------------------------------------------------------------------------------- /.cmake/FortranPreProcess/fpp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FortranPreProcess/fpp.pl -------------------------------------------------------------------------------- /.cmake/FortranPreProcess/target_sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FortranPreProcess/target_sources.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/add_executable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/add_executable.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/add_library.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/add_library.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/backup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/backup.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/call.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/call.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/decrement.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/decrement.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/find_package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/find_package.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/increment.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/increment.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/pop.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/pop.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/push.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/push.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/set_property.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/set_property.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/set_target_properties.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/set_target_properties.cmake -------------------------------------------------------------------------------- /.cmake/FunctionExtension/target_sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/FunctionExtension/target_sources.cmake -------------------------------------------------------------------------------- /.cmake/GeneratedSources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/GeneratedSources.cmake -------------------------------------------------------------------------------- /.cmake/GeneratedSources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/GeneratedSources/README.md -------------------------------------------------------------------------------- /.cmake/GeneratedSources/target_sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/GeneratedSources/target_sources.cmake -------------------------------------------------------------------------------- /.cmake/GeneratedSources/trap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/GeneratedSources/trap.cmake -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages.cmake -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages/README.md -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages/README/git-submodules-101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages/README/git-submodules-101.md -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages/check_version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages/check_version.cmake -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages/configuration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages/configuration.cmake -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages/find_package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages/find_package.cmake -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages/init.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages/init.cmake -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages/list.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages/list.cmake -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages/options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages/options.cmake -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages/package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages/package.cmake -------------------------------------------------------------------------------- /.cmake/Git/Submodule/Packages/update.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Git/Submodule/Packages/update.cmake -------------------------------------------------------------------------------- /.cmake/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Intel/FloatingPoint/Model.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Intel/FloatingPoint/Model.cmake -------------------------------------------------------------------------------- /.cmake/Intel/FloatingPoint/Speculation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Intel/FloatingPoint/Speculation.cmake -------------------------------------------------------------------------------- /.cmake/Intel/Fortran/Assumptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Intel/Fortran/Assumptions.cmake -------------------------------------------------------------------------------- /.cmake/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/IntelLLVM/FloatingPoint/Model.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/IntelLLVM/FloatingPoint/Model.cmake -------------------------------------------------------------------------------- /.cmake/IntelLLVM/FloatingPoint/Speculation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/IntelLLVM/FloatingPoint/Speculation.cmake -------------------------------------------------------------------------------- /.cmake/IntelLLVM/Fortran/Assumptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/IntelLLVM/Fortran/Assumptions.cmake -------------------------------------------------------------------------------- /.cmake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/LICENSE -------------------------------------------------------------------------------- /.cmake/LinkOptions/StackSize.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/LinkOptions/StackSize.cmake -------------------------------------------------------------------------------- /.cmake/LinkOptions/StackSize/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/LinkOptions/StackSize/GNU.cmake -------------------------------------------------------------------------------- /.cmake/LinkOptions/StackSize/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/LinkOptions/StackSize/Intel.cmake -------------------------------------------------------------------------------- /.cmake/LinkOptions/StackSize/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/LinkOptions/StackSize/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/LinkOptions/StackSize/LLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/LinkOptions/StackSize/LLVM.cmake -------------------------------------------------------------------------------- /.cmake/LinkOptions/StackSize/MSVC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/LinkOptions/StackSize/MSVC.cmake -------------------------------------------------------------------------------- /.cmake/LinkOptions/StackSize/PGI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/LinkOptions/StackSize/PGI.cmake -------------------------------------------------------------------------------- /.cmake/ListBinaryDir.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/ListBinaryDir.cmake -------------------------------------------------------------------------------- /.cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/README.md -------------------------------------------------------------------------------- /.cmake/Sanitizers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Sanitizers.cmake -------------------------------------------------------------------------------- /.cmake/Sanitizers/configuration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Sanitizers/configuration.cmake -------------------------------------------------------------------------------- /.cmake/Selection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Selection.cmake -------------------------------------------------------------------------------- /.cmake/Warnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/C.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/C/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/C/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/C/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/C/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/C/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/C/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/C/LLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/C/LLVM.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/C/MSVC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/C/MSVC.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/CUDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/CUDA.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/CUDA/NVIDIA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/CUDA/NVIDIA.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/CXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/CXX.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/CXX/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/CXX/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/CXX/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/CXX/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/CXX/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/CXX/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/CXX/LLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/CXX/LLVM.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/CXX/MSVC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/CXX/MSVC.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/Fortran.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/Fortran.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/Fortran/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/Fortran/GNU.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/Fortran/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/Fortran/Intel.cmake -------------------------------------------------------------------------------- /.cmake/Warnings/Fortran/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/Warnings/Fortran/IntelLLVM.cmake -------------------------------------------------------------------------------- /.cmake/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/config.cmake -------------------------------------------------------------------------------- /.cmake/documentation/function-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/documentation/function-extension.md -------------------------------------------------------------------------------- /.cmake/shacl-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/shacl-config.cmake -------------------------------------------------------------------------------- /.cmake/shacl_FetchContent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/shacl_FetchContent.cmake -------------------------------------------------------------------------------- /.cmake/shacl_FetchContent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/shacl_FetchContent/README.md -------------------------------------------------------------------------------- /.cmake/shacl_FetchContent/directory_git_info.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/shacl_FetchContent/directory_git_info.cmake -------------------------------------------------------------------------------- /.cmake/shacl_FetchContent/relative_git_url.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/shacl_FetchContent/relative_git_url.cmake -------------------------------------------------------------------------------- /.cmake/tests/Backports/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(X11) 2 | -------------------------------------------------------------------------------- /.cmake/tests/Backports/X11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Backports/X11/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/DelegatingCacheVariable/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/DelegatingCacheVariable/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/DelegatingOption/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/DelegatingOption/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/DelegatingSelection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/DelegatingSelection/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/DependencyInjection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/DependencyInjection/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/DependencyInjection/exe_injected.cmake: -------------------------------------------------------------------------------- 1 | target_sources(diexe PRIVATE 2 | ${CMAKE_CURRENT_LIST_DIR}/exe_main.cpp 3 | ) 4 | -------------------------------------------------------------------------------- /.cmake/tests/DependencyInjection/exe_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/DependencyInjection/exe_main.cpp -------------------------------------------------------------------------------- /.cmake/tests/DependencyInjection/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/DependencyInjection/lib.cpp -------------------------------------------------------------------------------- /.cmake/tests/DependencyInjection/lib_injected.cmake: -------------------------------------------------------------------------------- 1 | target_sources(dilib PRIVATE 2 | ${CMAKE_CURRENT_LIST_DIR}/lib.cpp 3 | ) 4 | -------------------------------------------------------------------------------- /.cmake/tests/DependentDelegatingCacheVariable/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/DependentDelegatingCacheVariable/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/DependentDelegatingOption/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/DependentDelegatingOption/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/DependentDelegatingSelection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/DependentDelegatingSelection/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/BackslashEscape/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/BackslashEscape/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/BackslashEscape/use_backslash_escape.F90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/BackslashEscape/use_backslash_escape.F90.in -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Backtrace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Backtrace/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Backtrace/backtrace.f90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Backtrace/backtrace.f90.in -------------------------------------------------------------------------------- /.cmake/tests/Fortran/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Exceptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Exceptions/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Exceptions/a.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Exceptions/a.f90 -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Exceptions/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Exceptions/b.cpp -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Integer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Integer/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Integer/test.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Integer/test.F90 -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Integer/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Integer/test.c -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Integer/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Integer/test.cpp -------------------------------------------------------------------------------- /.cmake/tests/Fortran/LongLines/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/LongLines/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/LongLines/longlines.f90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/LongLines/longlines.f90.in -------------------------------------------------------------------------------- /.cmake/tests/Fortran/ModuleDirectory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/ModuleDirectory/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/ModuleDirectory/check_exists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/ModuleDirectory/check_exists.cmake -------------------------------------------------------------------------------- /.cmake/tests/Fortran/ModuleDirectory/test_mod.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/ModuleDirectory/test_mod.F90 -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Real/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Real/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Real/test.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Real/test.F90 -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Real/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Real/test.c -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Real/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Real/test.cpp -------------------------------------------------------------------------------- /.cmake/tests/Fortran/StackArraySizeLimit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/StackArraySizeLimit/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/StackArraySizeLimit/use_temp_arrays.F90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/StackArraySizeLimit/use_temp_arrays.F90.in -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Standard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Standard/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Fortran/Standard/use_standard.f90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/Standard/use_standard.f90.in -------------------------------------------------------------------------------- /.cmake/tests/Fortran/StandardCompliance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Fortran/StandardCompliance/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/FortranPreProcess/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/FortranPreProcess/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/FortranPreProcess/fprepro_defines.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/FortranPreProcess/fprepro_defines.F90 -------------------------------------------------------------------------------- /.cmake/tests/FortranPreProcess/fprepro_includes.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/FortranPreProcess/fprepro_includes.F90 -------------------------------------------------------------------------------- /.cmake/tests/FortranPreProcess/fprepro_includes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/FortranPreProcess/fprepro_includes.inc -------------------------------------------------------------------------------- /.cmake/tests/FunctionExtension/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/FunctionExtension/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/FunctionExtension/call/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/FunctionExtension/call/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/FunctionExtension/integrated_features/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/FunctionExtension/integrated_features/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/FunctionExtension/integrated_features/test_source.cpp: -------------------------------------------------------------------------------- 1 | void foo(){} 2 | -------------------------------------------------------------------------------- /.cmake/tests/FunctionExtension/push_pop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/FunctionExtension/push_pop/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/FunctionExtension/set_property/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/FunctionExtension/set_property/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/GeneratedSources/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(target_sources) 2 | -------------------------------------------------------------------------------- /.cmake/tests/GeneratedSources/target_sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/GeneratedSources/target_sources/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/GeneratedSources/target_sources/bar.c.in: -------------------------------------------------------------------------------- 1 | void bar(){} 2 | -------------------------------------------------------------------------------- /.cmake/tests/GeneratedSources/target_sources/foo.c.in: -------------------------------------------------------------------------------- 1 | void foo(){} 2 | -------------------------------------------------------------------------------- /.cmake/tests/GeneratedSources/target_sources/subdirectory/foo.c.in: -------------------------------------------------------------------------------- 1 | void cool_foo(){} 2 | -------------------------------------------------------------------------------- /.cmake/tests/GeneratedSources/target_sources/test1: -------------------------------------------------------------------------------- 1 | library.ec54854.bar_c -------------------------------------------------------------------------------- /.cmake/tests/GeneratedSources/target_sources/test2: -------------------------------------------------------------------------------- 1 | library.47b2370.baz_f90 -------------------------------------------------------------------------------- /.cmake/tests/Git/Submodule/Packages/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Git/Submodule/Packages/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Intel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Intel/FPModel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FPModel/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Intel/FPModel/use_intel_fp_model.F90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FPModel/use_intel_fp_model.F90.in -------------------------------------------------------------------------------- /.cmake/tests/Intel/FPModel/use_intel_fp_model.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FPModel/use_intel_fp_model.c.in -------------------------------------------------------------------------------- /.cmake/tests/Intel/FPModel/use_intel_fp_model.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FPModel/use_intel_fp_model.cpp.in -------------------------------------------------------------------------------- /.cmake/tests/Intel/FPSpeculation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FPSpeculation/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Intel/FPSpeculation/use_intel_fp_speculation.F90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FPSpeculation/use_intel_fp_speculation.F90.in -------------------------------------------------------------------------------- /.cmake/tests/Intel/FPSpeculation/use_intel_fp_speculation.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FPSpeculation/use_intel_fp_speculation.c.in -------------------------------------------------------------------------------- /.cmake/tests/Intel/FPSpeculation/use_intel_fp_speculation.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FPSpeculation/use_intel_fp_speculation.cpp.in -------------------------------------------------------------------------------- /.cmake/tests/Intel/FortranAssumptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FortranAssumptions/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Intel/FortranAssumptions/assumptions.f90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FortranAssumptions/assumptions.f90.in -------------------------------------------------------------------------------- /.cmake/tests/Intel/FortranStandardAdherence/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FortranStandardAdherence/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Intel/FortranStandardAdherence/adherence.f90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Intel/FortranStandardAdherence/adherence.f90.in -------------------------------------------------------------------------------- /.cmake/tests/LinkOptions/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(StackSize) 2 | -------------------------------------------------------------------------------- /.cmake/tests/LinkOptions/StackSize/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/LinkOptions/StackSize/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/LinkOptions/StackSize/use_stack_size.c: -------------------------------------------------------------------------------- 1 | int main() { return 0; } 2 | -------------------------------------------------------------------------------- /.cmake/tests/LinkOptions/StackSize/use_stack_size.cpp: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /.cmake/tests/LinkOptions/StackSize/use_stack_size.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/LinkOptions/StackSize/use_stack_size.f90 -------------------------------------------------------------------------------- /.cmake/tests/Sanitizers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Sanitizers/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Sanitizers/trigger_asan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Sanitizers/trigger_asan.cpp -------------------------------------------------------------------------------- /.cmake/tests/Sanitizers/trigger_msan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Sanitizers/trigger_msan.cpp -------------------------------------------------------------------------------- /.cmake/tests/Sanitizers/trigger_tsan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Sanitizers/trigger_tsan.cpp -------------------------------------------------------------------------------- /.cmake/tests/Sanitizers/trigger_ubsan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Sanitizers/trigger_ubsan.cpp -------------------------------------------------------------------------------- /.cmake/tests/Warnings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Warnings/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/Warnings/warnings.c.in: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(){ 4 | puts("$"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /.cmake/tests/Warnings/warnings.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Warnings/warnings.cpp.in -------------------------------------------------------------------------------- /.cmake/tests/Warnings/warnings.cu.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Warnings/warnings.cu.in -------------------------------------------------------------------------------- /.cmake/tests/Warnings/warnings.f90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/Warnings/warnings.f90.in -------------------------------------------------------------------------------- /.cmake/tests/shacl_FetchContent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/shacl_FetchContent/CMakeLists.txt -------------------------------------------------------------------------------- /.cmake/tests/shacl_FetchContent/dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.cmake/tests/shacl_FetchContent/dependencies.cmake -------------------------------------------------------------------------------- /.github/scripts/prep_valgrind_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.github/scripts/prep_valgrind_test.sh -------------------------------------------------------------------------------- /.github/workflows/ContinuousIntegration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.github/workflows/ContinuousIntegration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /cmake/acetk-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/cmake/acetk-config.cmake.in -------------------------------------------------------------------------------- /cmake/dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/cmake/dependencies.cmake -------------------------------------------------------------------------------- /cmake/unit_testing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/cmake/unit_testing.cmake -------------------------------------------------------------------------------- /cmake/unit_testing_python.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/cmake/unit_testing_python.cmake -------------------------------------------------------------------------------- /python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/CMakeLists.txt -------------------------------------------------------------------------------- /python/examples/2003.710nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/examples/2003.710nc -------------------------------------------------------------------------------- /python/examples/2003.perturbed.710nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/examples/2003.perturbed.710nc -------------------------------------------------------------------------------- /python/examples/Pu239.pendf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/examples/Pu239.pendf -------------------------------------------------------------------------------- /python/examples/create-a-dosimetry-ace-file.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/examples/create-a-dosimetry-ace-file.ipynb -------------------------------------------------------------------------------- /python/examples/perturb-an-existing-ace-file.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/examples/perturb-an-existing-ace-file.ipynb -------------------------------------------------------------------------------- /python/examples/pu239.ace.00y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/examples/pu239.ace.00y -------------------------------------------------------------------------------- /python/src/ACEtk.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/ACEtk.python.cpp -------------------------------------------------------------------------------- /python/src/AngularDistributionType.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/AngularDistributionType.python.cpp -------------------------------------------------------------------------------- /python/src/ContinuousEnergyTable.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/ContinuousEnergyTable.python.cpp -------------------------------------------------------------------------------- /python/src/Data.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/Data.python.cpp -------------------------------------------------------------------------------- /python/src/DosimetryTable.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/DosimetryTable.python.cpp -------------------------------------------------------------------------------- /python/src/EnergyDistributionType.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/EnergyDistributionType.python.cpp -------------------------------------------------------------------------------- /python/src/Header.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/Header.python.cpp -------------------------------------------------------------------------------- /python/src/Header201.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/Header201.python.cpp -------------------------------------------------------------------------------- /python/src/PhotoatomicTable.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/PhotoatomicTable.python.cpp -------------------------------------------------------------------------------- /python/src/PhotonuclearTable.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/PhotonuclearTable.python.cpp -------------------------------------------------------------------------------- /python/src/ReferenceFrame.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/ReferenceFrame.python.cpp -------------------------------------------------------------------------------- /python/src/Table.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/Table.python.cpp -------------------------------------------------------------------------------- /python/src/ThermalScatteringTable.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/ThermalScatteringTable.python.cpp -------------------------------------------------------------------------------- /python/src/Xsdir.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/Xsdir.python.cpp -------------------------------------------------------------------------------- /python/src/XsdirEntry.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/XsdirEntry.python.cpp -------------------------------------------------------------------------------- /python/src/continuous.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/AngleEnergyDistributionData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/AngleEnergyDistributionData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/AngularDistributionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/AngularDistributionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/AngularDistributionData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/AngularDistributionData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/CrossSectionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/CrossSectionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/CrossSectionData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/CrossSectionData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/DelayedNeutronPrecursorBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/DelayedNeutronPrecursorBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/DelayedNeutronPrecursorData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/DelayedNeutronPrecursorData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/DiscretePhotonDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/DiscretePhotonDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/DistributionGivenElsewhere.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/DistributionGivenElsewhere.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/DistributionProbability.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/DistributionProbability.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/EnergyAngleDistributionData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/EnergyAngleDistributionData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/EnergyDependentWattSpectrum.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/EnergyDependentWattSpectrum.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/EnergyDistributionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/EnergyDistributionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/EquiprobableAngularBins.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/EquiprobableAngularBins.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/EquiprobableOutgoingEnergyBinData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/EquiprobableOutgoingEnergyBinData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/EquiprobableOutgoingEnergyBins.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/EquiprobableOutgoingEnergyBins.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/EvaporationSpectrum.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/EvaporationSpectrum.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/FissionMultiplicityBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/FissionMultiplicityBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/FrameAndMultiplicityBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/FrameAndMultiplicityBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/FullyIsotropicDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/FullyIsotropicDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/GeneralEvaporationSpectrum.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/GeneralEvaporationSpectrum.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/InterpolationData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/InterpolationData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/IsotropicAngularDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/IsotropicAngularDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/KalbachMannDistributionData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/KalbachMannDistributionData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/LevelScatteringDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/LevelScatteringDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/MultiDistributionData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/MultiDistributionData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/MultiplicityReactionNumberBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/MultiplicityReactionNumberBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/NBodyPhaseSpaceDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/NBodyPhaseSpaceDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/OutgoingEnergyDistributionData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/OutgoingEnergyDistributionData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/ParameterData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/ParameterData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/PhotonProductionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/PhotonProductionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/PhotonProductionCrossSectionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/PhotonProductionCrossSectionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/PhotonProductionCrossSectionData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/PhotonProductionCrossSectionData.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/PolynomialFissionMultiplicity.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/PolynomialFissionMultiplicity.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/PrincipalCrossSectionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/PrincipalCrossSectionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/ProbabilityTable.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/ProbabilityTable.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/ProbabilityTableBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/ProbabilityTableBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/ReactionNumberBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/ReactionNumberBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/ReactionQValueBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/ReactionQValueBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/SecondaryParticleInformationBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/SecondaryParticleInformationBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/SecondaryParticleLocatorBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/SecondaryParticleLocatorBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/SecondaryParticleTypeBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/SecondaryParticleTypeBlock.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/TabulatedAngularDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/TabulatedAngularDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/TabulatedEnergyDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/TabulatedEnergyDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/TabulatedFissionMultiplicity.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/TabulatedFissionMultiplicity.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/TabulatedMultiplicity.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/TabulatedMultiplicity.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/TwoBodyTransferDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/TwoBodyTransferDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/continuous/UndefinedDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/continuous/UndefinedDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/definitions.hpp -------------------------------------------------------------------------------- /python/src/dosimetry.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/dosimetry.python.cpp -------------------------------------------------------------------------------- /python/src/dosimetry/CrossSectionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/dosimetry/CrossSectionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/dosimetry/CrossSectionData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/dosimetry/CrossSectionData.python.cpp -------------------------------------------------------------------------------- /python/src/electron.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron.python.cpp -------------------------------------------------------------------------------- /python/src/electron/BremsstrahlungBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/BremsstrahlungBlock.python.cpp -------------------------------------------------------------------------------- /python/src/electron/ElasticAngularDistributionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/ElasticAngularDistributionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/electron/ElasticCrossSectionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/ElasticCrossSectionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/electron/ElectronShellBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/ElectronShellBlock.python.cpp -------------------------------------------------------------------------------- /python/src/electron/ElectronSubshellBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/ElectronSubshellBlock.python.cpp -------------------------------------------------------------------------------- /python/src/electron/EnergyDistributionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/EnergyDistributionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/electron/ExcitationBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/ExcitationBlock.python.cpp -------------------------------------------------------------------------------- /python/src/electron/PrincipalCrossSectionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/PrincipalCrossSectionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/electron/SubshellTransitionData.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/SubshellTransitionData.python.cpp -------------------------------------------------------------------------------- /python/src/electron/SubshellTransitionDataBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/SubshellTransitionDataBlock.python.cpp -------------------------------------------------------------------------------- /python/src/electron/TabulatedAngularDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/TabulatedAngularDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/electron/TabulatedEnergyDistribution.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/electron/TabulatedEnergyDistribution.python.cpp -------------------------------------------------------------------------------- /python/src/photoatomic.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/photoatomic.python.cpp -------------------------------------------------------------------------------- /python/src/photoatomic/CoherentFormFactorBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/photoatomic/CoherentFormFactorBlock.python.cpp -------------------------------------------------------------------------------- /python/src/photoatomic/ComptonProfile.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/photoatomic/ComptonProfile.python.cpp -------------------------------------------------------------------------------- /python/src/photoatomic/ComptonProfileBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/photoatomic/ComptonProfileBlock.python.cpp -------------------------------------------------------------------------------- /python/src/photoatomic/FluorescenceDataBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/photoatomic/FluorescenceDataBlock.python.cpp -------------------------------------------------------------------------------- /python/src/photoatomic/HeatingNumbersBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/photoatomic/HeatingNumbersBlock.python.cpp -------------------------------------------------------------------------------- /python/src/photoatomic/PrincipalCrossSectionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/photoatomic/PrincipalCrossSectionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/photonuclear.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/photonuclear.python.cpp -------------------------------------------------------------------------------- /python/src/photonuclear/PrincipalCrossSectionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/photonuclear/PrincipalCrossSectionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/thermal.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/thermal.python.cpp -------------------------------------------------------------------------------- /python/src/thermal/CrossSectionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/thermal/CrossSectionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/thermal/DiscreteCosines.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/thermal/DiscreteCosines.python.cpp -------------------------------------------------------------------------------- /python/src/thermal/DiscreteCosinesWithProbability.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/thermal/DiscreteCosinesWithProbability.python.cpp -------------------------------------------------------------------------------- /python/src/thermal/ElasticAngularDistributionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/thermal/ElasticAngularDistributionBlock.python.cpp -------------------------------------------------------------------------------- /python/src/thermal/InelasticAngularDistributionBlock.python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/src/thermal/InelasticAngularDistributionBlock.python.cpp -------------------------------------------------------------------------------- /python/stubs/ACEtk/ACEtk.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/stubs/ACEtk/ACEtk.pyi -------------------------------------------------------------------------------- /python/stubs/ACEtk/continuous.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/stubs/ACEtk/continuous.pyi -------------------------------------------------------------------------------- /python/stubs/ACEtk/dosimetry.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/stubs/ACEtk/dosimetry.pyi -------------------------------------------------------------------------------- /python/stubs/ACEtk/electron.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/stubs/ACEtk/electron.pyi -------------------------------------------------------------------------------- /python/stubs/ACEtk/photoatomic.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/stubs/ACEtk/photoatomic.pyi -------------------------------------------------------------------------------- /python/stubs/ACEtk/photonuclear.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/stubs/ACEtk/photonuclear.pyi -------------------------------------------------------------------------------- /python/stubs/ACEtk/sequence.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/stubs/ACEtk/sequence.pyi -------------------------------------------------------------------------------- /python/stubs/ACEtk/thermal.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/stubs/ACEtk/thermal.pyi -------------------------------------------------------------------------------- /python/test/Test_ACEtk_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/Test_ACEtk_Data.py -------------------------------------------------------------------------------- /python/test/Test_ACEtk_Header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/Test_ACEtk_Header.py -------------------------------------------------------------------------------- /python/test/Test_ACEtk_Header201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/Test_ACEtk_Header201.py -------------------------------------------------------------------------------- /python/test/Test_ACEtk_Table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/Test_ACEtk_Table.py -------------------------------------------------------------------------------- /python/test/Test_ACEtk_Xsdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/Test_ACEtk_Xsdir.py -------------------------------------------------------------------------------- /python/test/Test_ACEtk_XsdirEntry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/Test_ACEtk_XsdirEntry.py -------------------------------------------------------------------------------- /python/test/__init__.py: -------------------------------------------------------------------------------- 1 | # empty __init__.py 2 | -------------------------------------------------------------------------------- /python/test/continuous/Test_ACEtk_continuous_ParameterData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/continuous/Test_ACEtk_continuous_ParameterData.py -------------------------------------------------------------------------------- /python/test/continuous/__init__.py: -------------------------------------------------------------------------------- 1 | # empty __init__.py 2 | -------------------------------------------------------------------------------- /python/test/dosimetry/Test_ACEtk_dosimetry_CrossSectionBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/dosimetry/Test_ACEtk_dosimetry_CrossSectionBlock.py -------------------------------------------------------------------------------- /python/test/dosimetry/Test_ACEtk_dosimetry_CrossSectionData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/dosimetry/Test_ACEtk_dosimetry_CrossSectionData.py -------------------------------------------------------------------------------- /python/test/electron/Test_ACEtk_electron_BremsstrahlungBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/electron/Test_ACEtk_electron_BremsstrahlungBlock.py -------------------------------------------------------------------------------- /python/test/electron/Test_ACEtk_electron_ElectronShellBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/electron/Test_ACEtk_electron_ElectronShellBlock.py -------------------------------------------------------------------------------- /python/test/electron/Test_ACEtk_electron_ExcitationBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/electron/Test_ACEtk_electron_ExcitationBlock.py -------------------------------------------------------------------------------- /python/test/electron/__init__.py: -------------------------------------------------------------------------------- 1 | # empty __init__.py 2 | -------------------------------------------------------------------------------- /python/test/photoatomic/__init__.py: -------------------------------------------------------------------------------- 1 | # empty __init__.py 2 | -------------------------------------------------------------------------------- /python/test/photonuclear/__init__.py: -------------------------------------------------------------------------------- 1 | # empty __init__.py 2 | -------------------------------------------------------------------------------- /python/test/thermal/Test_ACEtk_thermal_CrossSectionBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/thermal/Test_ACEtk_thermal_CrossSectionBlock.py -------------------------------------------------------------------------------- /python/test/thermal/Test_ACEtk_thermal_DiscreteCosines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/python/test/thermal/Test_ACEtk_thermal_DiscreteCosines.py -------------------------------------------------------------------------------- /python/test/thermal/__init__.py: -------------------------------------------------------------------------------- 1 | # empty __init__.py 2 | -------------------------------------------------------------------------------- /src/ACEtk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk.hpp -------------------------------------------------------------------------------- /src/ACEtk/AngularDistributionType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/AngularDistributionType.hpp -------------------------------------------------------------------------------- /src/ACEtk/ContinuousEnergyTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ContinuousEnergyTable.hpp -------------------------------------------------------------------------------- /src/ACEtk/ContinuousEnergyTable/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ContinuousEnergyTable/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/ContinuousEnergyTable/src/generateBlocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ContinuousEnergyTable/src/generateBlocks.hpp -------------------------------------------------------------------------------- /src/ACEtk/ContinuousEnergyTable/src/generateData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ContinuousEnergyTable/src/generateData.hpp -------------------------------------------------------------------------------- /src/ACEtk/ContinuousEnergyTable/src/setSZA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ContinuousEnergyTable/src/setSZA.hpp -------------------------------------------------------------------------------- /src/ACEtk/ContinuousEnergyTable/src/verifyType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ContinuousEnergyTable/src/verifyType.hpp -------------------------------------------------------------------------------- /src/ACEtk/DosimetryTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/DosimetryTable.hpp -------------------------------------------------------------------------------- /src/ACEtk/DosimetryTable/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/DosimetryTable/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/DosimetryTable/src/generateData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/DosimetryTable/src/generateData.hpp -------------------------------------------------------------------------------- /src/ACEtk/DosimetryTable/src/verifyType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/DosimetryTable/src/verifyType.hpp -------------------------------------------------------------------------------- /src/ACEtk/EnergyDistributionType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/EnergyDistributionType.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotoatomicTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotoatomicTable.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotoatomicTable/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotoatomicTable/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotoatomicTable/src/generateBlocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotoatomicTable/src/generateBlocks.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotoatomicTable/src/generateData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotoatomicTable/src/generateData.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotoatomicTable/src/verifySubshellIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotoatomicTable/src/verifySubshellIndex.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotoatomicTable/src/verifyType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotoatomicTable/src/verifyType.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotonuclearTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotonuclearTable.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotonuclearTable/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotonuclearTable/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotonuclearTable/src/generateBlocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotonuclearTable/src/generateBlocks.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotonuclearTable/src/generateData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotonuclearTable/src/generateData.hpp -------------------------------------------------------------------------------- /src/ACEtk/PhotonuclearTable/src/verifyType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/PhotonuclearTable/src/verifyType.hpp -------------------------------------------------------------------------------- /src/ACEtk/ReferenceFrame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ReferenceFrame.hpp -------------------------------------------------------------------------------- /src/ACEtk/State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/State.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/Parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/Parse.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/Parse/src/IZAW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/Parse/src/IZAW.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/Parse/src/JXS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/Parse/src/JXS.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/Parse/src/NXS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/Parse/src/NXS.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/Parse/src/XSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/Parse/src/XSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/src/XSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/src/XSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/src/fetch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/src/fetch.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/src/name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/src/name.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/src/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/src/print.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Data/src/verifyIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Data/src/verifyIndex.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Header.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Header/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Header/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Header/src/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Header/src/parse.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Header/src/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Header/src/print.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Header/src/strip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Header/src/strip.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Header201.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Header201.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Header201/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Header201/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Header201/src/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Header201/src/parse.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/Header201/src/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/Header201/src/print.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/src/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/src/parse.hpp -------------------------------------------------------------------------------- /src/ACEtk/Table/src/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Table/src/print.hpp -------------------------------------------------------------------------------- /src/ACEtk/ThermalScatteringTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ThermalScatteringTable.hpp -------------------------------------------------------------------------------- /src/ACEtk/ThermalScatteringTable/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ThermalScatteringTable/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/ThermalScatteringTable/src/generateBlocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ThermalScatteringTable/src/generateBlocks.hpp -------------------------------------------------------------------------------- /src/ACEtk/ThermalScatteringTable/src/generateData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ThermalScatteringTable/src/generateData.hpp -------------------------------------------------------------------------------- /src/ACEtk/ThermalScatteringTable/src/verifyType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/ThermalScatteringTable/src/verifyType.hpp -------------------------------------------------------------------------------- /src/ACEtk/Xsdir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Xsdir.hpp -------------------------------------------------------------------------------- /src/ACEtk/Xsdir/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Xsdir/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/Xsdir/src/fromFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Xsdir/src/fromFile.hpp -------------------------------------------------------------------------------- /src/ACEtk/Xsdir/src/indices.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Xsdir/src/indices.hpp -------------------------------------------------------------------------------- /src/ACEtk/Xsdir/src/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Xsdir/src/parse.hpp -------------------------------------------------------------------------------- /src/ACEtk/Xsdir/src/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Xsdir/src/print.hpp -------------------------------------------------------------------------------- /src/ACEtk/Xsdir/src/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/Xsdir/src/stream.hpp -------------------------------------------------------------------------------- /src/ACEtk/XsdirEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/XsdirEntry.hpp -------------------------------------------------------------------------------- /src/ACEtk/XsdirEntry/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/XsdirEntry/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/XsdirEntry/src/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/XsdirEntry/src/parse.hpp -------------------------------------------------------------------------------- /src/ACEtk/XsdirEntry/src/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/XsdirEntry/src/print.hpp -------------------------------------------------------------------------------- /src/ACEtk/XsdirEntry/src/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/XsdirEntry/src/stream.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/AngularDistributionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/AngularDistributionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/AngularDistributionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/AngularDistributionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/AngularDistributionBlock/src/generateBlocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/AngularDistributionBlock/src/generateBlocks.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/AngularDistributionBlock/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/AngularDistributionBlock/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/AngularDistributionBlock/src/insertZero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/AngularDistributionBlock/src/insertZero.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/AngularDistributionBlock/src/verifyDataIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/AngularDistributionBlock/src/verifyDataIndex.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/AngularDistributionBlock/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/AngularDistributionBlock/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ArrayData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ArrayData.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ArrayData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ArrayData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ArrayData/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ArrayData/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ArrayData/src/verifyIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ArrayData/src/verifyIndex.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ArrayData/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ArrayData/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/Base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/Base.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/Base/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/Base/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/Base/src/generateData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/Base/src/generateData.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/Base/src/verifyIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/Base/src/verifyIndex.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/Base/src/verifyReactionIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/Base/src/verifyReactionIndex.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/BlockWithLocators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/BlockWithLocators.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/BlockWithLocators/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/BlockWithLocators/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/BlockWithLocators/src/generateBlocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/BlockWithLocators/src/generateBlocks.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/BlockWithLocators/src/generateData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/BlockWithLocators/src/generateData.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/BlockWithLocators/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/BlockWithLocators/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/BlockWithLocators/src/verifyDataIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/BlockWithLocators/src/verifyDataIndex.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/BlockWithLocators/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/BlockWithLocators/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ColumnData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ColumnData.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ColumnData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ColumnData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ColumnData/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ColumnData/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ColumnData/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ColumnData/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/DistributionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/DistributionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/DistributionData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/DistributionData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/DistributionData/src/generateBlocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/DistributionData/src/generateBlocks.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/DistributionData/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/DistributionData/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/DistributionData/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/DistributionData/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/DistributionData/src/verifyValueIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/DistributionData/src/verifyValueIndex.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/DistributionDataWithInterpolationType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/DistributionDataWithInterpolationType.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ElectronBlockWithLocators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ElectronBlockWithLocators.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ElectronBlockWithLocators/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ElectronBlockWithLocators/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ElectronBlockWithLocators/src/generateBlocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ElectronBlockWithLocators/src/generateBlocks.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/ElectronBlockWithLocators/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/ElectronBlockWithLocators/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/EvaporationSpectrum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/EvaporationSpectrum.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/EvaporationSpectrum/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/EvaporationSpectrum/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/EvaporationSpectrum/src/generateBlocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/EvaporationSpectrum/src/generateBlocks.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/EvaporationSpectrum/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/EvaporationSpectrum/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/EvaporationSpectrum/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/EvaporationSpectrum/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/TabulatedData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/TabulatedData.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/TabulatedData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/TabulatedData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/TabulatedData/src/generateBlocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/TabulatedData/src/generateBlocks.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/TabulatedData/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/TabulatedData/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/TabulatedData/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/TabulatedData/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/TabulatedProbabilityDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/TabulatedProbabilityDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/TabulatedProbabilityDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/TabulatedProbabilityDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/TwoParameterDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/TwoParameterDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/TwoParameterDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/TwoParameterDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/base/TwoParameterDistribution/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/base/TwoParameterDistribution/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/AngleEnergyDistributionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/AngleEnergyDistributionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/AngleEnergyDistributionData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/AngleEnergyDistributionData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/AngularDistributionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/AngularDistributionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/AngularDistributionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/AngularDistributionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/AngularDistributionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/AngularDistributionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/AngularDistributionData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/AngularDistributionData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/AngularDistributionData/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/AngularDistributionData/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/CrossSectionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/CrossSectionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/CrossSectionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/CrossSectionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/CrossSectionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/CrossSectionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/CrossSectionData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/CrossSectionData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/CrossSectionData/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/CrossSectionData/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/CrossSectionData/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/CrossSectionData/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/DelayedNeutronPrecursorBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/DelayedNeutronPrecursorBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/DelayedNeutronPrecursorBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/DelayedNeutronPrecursorBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/DelayedNeutronPrecursorData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/DelayedNeutronPrecursorData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/DelayedNeutronPrecursorData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/DelayedNeutronPrecursorData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/DiscretePhotonDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/DiscretePhotonDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/DiscretePhotonDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/DiscretePhotonDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/DistributionGivenElsewhere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/DistributionGivenElsewhere.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/DistributionProbability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/DistributionProbability.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/DistributionProbability/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/DistributionProbability/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EnergyAngleDistributionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EnergyAngleDistributionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EnergyAngleDistributionData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EnergyAngleDistributionData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EnergyDependentWattSpectrum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EnergyDependentWattSpectrum.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EnergyDependentWattSpectrum/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EnergyDependentWattSpectrum/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EnergyDistributionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EnergyDistributionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EnergyDistributionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EnergyDistributionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EnergyDistributionBlock/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EnergyDistributionBlock/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EquiprobableAngularBins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EquiprobableAngularBins.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EquiprobableAngularBins/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EquiprobableAngularBins/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EquiprobableAngularBins/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EquiprobableAngularBins/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EquiprobableOutgoingEnergyBinData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EquiprobableOutgoingEnergyBinData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EquiprobableOutgoingEnergyBins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EquiprobableOutgoingEnergyBins.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EvaporationSpectrum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EvaporationSpectrum.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/EvaporationSpectrum/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/EvaporationSpectrum/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/FissionMultiplicityBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/FissionMultiplicityBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/FissionMultiplicityBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/FissionMultiplicityBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/FrameAndMultiplicityBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/FrameAndMultiplicityBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/FrameAndMultiplicityBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/FrameAndMultiplicityBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/FullyIsotropicDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/FullyIsotropicDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/GeneralEvaporationSpectrum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/GeneralEvaporationSpectrum.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/GeneralEvaporationSpectrum/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/GeneralEvaporationSpectrum/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/InterpolationData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/InterpolationData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/InterpolationData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/InterpolationData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/InterpolationData/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/InterpolationData/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/IsotropicAngularDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/IsotropicAngularDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/IsotropicAngularDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/IsotropicAngularDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/KalbachMannDistributionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/KalbachMannDistributionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/KalbachMannDistributionData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/KalbachMannDistributionData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/LevelScatteringDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/LevelScatteringDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/LevelScatteringDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/LevelScatteringDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/MultiDistributionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/MultiDistributionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/MultiDistributionData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/MultiDistributionData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/MultiDistributionData/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/MultiDistributionData/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/MultiplicityReactionNumberBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/MultiplicityReactionNumberBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/NBodyPhaseSpaceDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/NBodyPhaseSpaceDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/NBodyPhaseSpaceDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/NBodyPhaseSpaceDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/OutgoingEnergyDistributionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/OutgoingEnergyDistributionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ParameterData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ParameterData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ParameterData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ParameterData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/PhotonProductionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/PhotonProductionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/PhotonProductionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/PhotonProductionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/PhotonProductionCrossSectionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/PhotonProductionCrossSectionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/PhotonProductionCrossSectionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/PhotonProductionCrossSectionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/PolynomialFissionMultiplicity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/PolynomialFissionMultiplicity.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/PolynomialFissionMultiplicity/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/PolynomialFissionMultiplicity/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/PrincipalCrossSectionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/PrincipalCrossSectionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/PrincipalCrossSectionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/PrincipalCrossSectionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ProbabilityTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ProbabilityTable.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ProbabilityTable/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ProbabilityTable/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ProbabilityTableBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ProbabilityTableBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ProbabilityTableBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ProbabilityTableBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ProbabilityTableBlock/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ProbabilityTableBlock/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ProbabilityTableBlock/src/verifyIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ProbabilityTableBlock/src/verifyIndex.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ReactionNumberBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ReactionNumberBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ReactionNumberBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ReactionNumberBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ReactionQValueBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ReactionQValueBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/ReactionQValueBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/ReactionQValueBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/SecondaryParticleInformationBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/SecondaryParticleInformationBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/SecondaryParticleLocatorBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/SecondaryParticleLocatorBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/SecondaryParticleLocatorBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/SecondaryParticleLocatorBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/SecondaryParticleProductionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/SecondaryParticleProductionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/SecondaryParticleTypeBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/SecondaryParticleTypeBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/SecondaryParticleTypeBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/SecondaryParticleTypeBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/SimpleMaxwellianFissionSpectrum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/SimpleMaxwellianFissionSpectrum.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedAngleEnergyDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedAngleEnergyDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedAngularDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedAngularDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedAngularDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedAngularDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedEnergyAngleDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedEnergyAngleDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedEnergyDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedEnergyDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedEnergyDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedEnergyDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedFissionMultiplicity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedFissionMultiplicity.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedFissionMultiplicity/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedFissionMultiplicity/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedKalbachMannDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedKalbachMannDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedMultiplicity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedMultiplicity.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedMultiplicity/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedMultiplicity/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TabulatedSecondaryParticleMultiplicity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TabulatedSecondaryParticleMultiplicity.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TwoBodyTransferDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TwoBodyTransferDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/TwoBodyTransferDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/TwoBodyTransferDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/continuous/UndefinedDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/continuous/UndefinedDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/dosimetry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/dosimetry.hpp -------------------------------------------------------------------------------- /src/ACEtk/dosimetry/CrossSectionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/dosimetry/CrossSectionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/dosimetry/CrossSectionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/dosimetry/CrossSectionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/dosimetry/CrossSectionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/dosimetry/CrossSectionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/dosimetry/CrossSectionData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/dosimetry/CrossSectionData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/BremsstrahlungBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/BremsstrahlungBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/BremsstrahlungBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/BremsstrahlungBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/ElasticAngularDistributionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/ElasticAngularDistributionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/ElasticAngularDistributionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/ElasticAngularDistributionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/ElasticCrossSectionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/ElasticCrossSectionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/ElasticCrossSectionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/ElasticCrossSectionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/ElectronShellBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/ElectronShellBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/ElectronShellBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/ElectronShellBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/ElectronSubshellBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/ElectronSubshellBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/ElectronSubshellBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/ElectronSubshellBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/EnergyDistributionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/EnergyDistributionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/EnergyDistributionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/EnergyDistributionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/ExcitationBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/ExcitationBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/ExcitationBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/ExcitationBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/PrincipalCrossSectionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/PrincipalCrossSectionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/PrincipalCrossSectionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/PrincipalCrossSectionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/SubshellTransitionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/SubshellTransitionData.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/SubshellTransitionData/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/SubshellTransitionData/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/SubshellTransitionDataBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/SubshellTransitionDataBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/SubshellTransitionDataBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/SubshellTransitionDataBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/TabulatedAngularDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/TabulatedAngularDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/TabulatedAngularDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/TabulatedAngularDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/TabulatedEnergyDistribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/TabulatedEnergyDistribution.hpp -------------------------------------------------------------------------------- /src/ACEtk/electron/TabulatedEnergyDistribution/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/electron/TabulatedEnergyDistribution/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/fromFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/fromFile.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/CoherentFormFactorBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/CoherentFormFactorBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/CoherentFormFactorBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/CoherentFormFactorBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/ComptonProfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/ComptonProfile.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/ComptonProfile/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/ComptonProfile/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/ComptonProfileBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/ComptonProfileBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/ComptonProfileBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/ComptonProfileBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/FluorescenceDataBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/FluorescenceDataBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/FluorescenceDataBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/FluorescenceDataBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/HeatingNumbersBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/HeatingNumbersBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/HeatingNumbersBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/HeatingNumbersBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/IncoherentScatteringFunctionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/IncoherentScatteringFunctionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/PhotoelectricCrossSectionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/PhotoelectricCrossSectionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/PrincipalCrossSectionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/PrincipalCrossSectionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/photoatomic/PrincipalCrossSectionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photoatomic/PrincipalCrossSectionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/photonuclear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photonuclear.hpp -------------------------------------------------------------------------------- /src/ACEtk/photonuclear/PrincipalCrossSectionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photonuclear/PrincipalCrossSectionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/photonuclear/PrincipalCrossSectionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photonuclear/PrincipalCrossSectionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/photonuclear/SecondaryParticleLocatorBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/photonuclear/SecondaryParticleLocatorBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/CrossSectionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/CrossSectionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/CrossSectionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/CrossSectionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/DiscreteCosines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/DiscreteCosines.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/DiscreteCosines/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/DiscreteCosines/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/DiscreteCosines/src/generateXSS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/DiscreteCosines/src/generateXSS.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/DiscreteCosines/src/verifySize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/DiscreteCosines/src/verifySize.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/DiscreteCosinesWithProbability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/DiscreteCosinesWithProbability.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/DiscreteCosinesWithProbability/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/DiscreteCosinesWithProbability/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/ElasticAngularDistributionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/ElasticAngularDistributionBlock.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/ElasticAngularDistributionBlock/src/ctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/ElasticAngularDistributionBlock/src/ctor.hpp -------------------------------------------------------------------------------- /src/ACEtk/thermal/InelasticAngularDistributionBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/ACEtk/thermal/InelasticAngularDistributionBlock.hpp -------------------------------------------------------------------------------- /src/legacy/ACEtk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/ACEtk.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/DEDX1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/DEDX1.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/DEDX1/BPS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/DEDX1/BPS.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/DEDX1/CRTP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/DEDX1/CRTP.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/DEDX1/CRTP/src/stoppingPowers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/DEDX1/CRTP/src/stoppingPowers.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/DEDX1/StandardWithCutoff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/DEDX1/StandardWithCutoff.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/DEDX1/StandardWithoutCutoff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/DEDX1/StandardWithoutCutoff.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/DEDX1/test/dedx1.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/DEDX1/test/dedx1.test.cpp -------------------------------------------------------------------------------- /src/legacy/interpretation/DEDX1/test/resources/1001.dedx.h1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/DEDX1/test/resources/1001.dedx.h1 -------------------------------------------------------------------------------- /src/legacy/interpretation/DEDX1/test/resources/faux.dedx.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/DEDX1/test/resources/faux.dedx.data -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/AtomicLevels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/AtomicLevels.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/MottScatteringCorrection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/MottScatteringCorrection.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/RadiativeStoppingPower.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/RadiativeStoppingPower.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/RileyCrossSection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/RileyCrossSection.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/test/AtomicLevels.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/test/AtomicLevels.test.cpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/test/RileyCrossSection.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/test/RileyCrossSection.test.cpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/test/el03.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/test/el03.test.cpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/test/resources/1000.e03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/test/resources/1000.e03 -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/test/resources/1000.el03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/test/resources/1000.el03 -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/test/resources/79000.el03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/test/resources/79000.el03 -------------------------------------------------------------------------------- /src/legacy/interpretation/EL03/test/resources/el03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EL03/test/resources/el03 -------------------------------------------------------------------------------- /src/legacy/interpretation/EPR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EPR.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EPR/CRTP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EPR/CRTP.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EPR/CRTP/FormFactors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EPR/CRTP/FormFactors.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EPR/Coherent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EPR/Coherent.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EPR/Incoherent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EPR/Incoherent.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EPR/test/Coherent.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EPR/test/Coherent.test.cpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EPR/test/Incoherent.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EPR/test/Incoherent.test.cpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EPR/test/eprdata.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EPR/test/eprdata.test.cpp -------------------------------------------------------------------------------- /src/legacy/interpretation/EPR/test/resources/1000.14p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/EPR/test/resources/1000.14p -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1/DiscreteData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1/DiscreteData.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1/src/energyGrid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1/src/energyGrid.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1/src/fetch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1/src/fetch.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1/src/findStartOfBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1/src/findStartOfBlock.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1/src/totalCrossSection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1/src/totalCrossSection.hpp -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1/test/deflectionCosines.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1/test/deflectionCosines.test.cpp -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1/test/energyGrid.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1/test/energyGrid.test.cpp -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1/test/resources/1000.mp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1/test/resources/1000.mp1 -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1/test/resources/79000.mp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1/test/resources/79000.mp1 -------------------------------------------------------------------------------- /src/legacy/interpretation/MP1/test/totalCrossSection.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/src/legacy/interpretation/MP1/test/totalCrossSection.test.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/ContinuousEnergyTable.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/ContinuousEnergyTable.test.cpp -------------------------------------------------------------------------------- /test/DosimetryTable.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/DosimetryTable.test.cpp -------------------------------------------------------------------------------- /test/PhotoatomicTable.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/PhotoatomicTable.test.cpp -------------------------------------------------------------------------------- /test/PhotonuclearTable.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/PhotonuclearTable.test.cpp -------------------------------------------------------------------------------- /test/Table/Data/Data.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/Table/Data/Data.test.cpp -------------------------------------------------------------------------------- /test/Table/Data/Parse.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/Table/Data/Parse.test.cpp -------------------------------------------------------------------------------- /test/Table/Header.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/Table/Header.test.cpp -------------------------------------------------------------------------------- /test/Table/Header201.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/Table/Header201.test.cpp -------------------------------------------------------------------------------- /test/Table/Table.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/Table/Table.test.cpp -------------------------------------------------------------------------------- /test/ThermalScatteringTable.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/ThermalScatteringTable.test.cpp -------------------------------------------------------------------------------- /test/Xsdir.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/Xsdir.test.cpp -------------------------------------------------------------------------------- /test/XsdirEntry.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/XsdirEntry.test.cpp -------------------------------------------------------------------------------- /test/continuous/AngleEnergyDistributionData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/AngleEnergyDistributionData.test.cpp -------------------------------------------------------------------------------- /test/continuous/AngularDistributionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/AngularDistributionBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/AngularDistributionData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/AngularDistributionData.test.cpp -------------------------------------------------------------------------------- /test/continuous/CrossSectionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/CrossSectionBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/CrossSectionData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/CrossSectionData.test.cpp -------------------------------------------------------------------------------- /test/continuous/DelayedNeutronPrecursorBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/DelayedNeutronPrecursorBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/DelayedNeutronPrecursorData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/DelayedNeutronPrecursorData.test.cpp -------------------------------------------------------------------------------- /test/continuous/DiscretePhotonDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/DiscretePhotonDistribution.test.cpp -------------------------------------------------------------------------------- /test/continuous/DistributionProbability.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/DistributionProbability.test.cpp -------------------------------------------------------------------------------- /test/continuous/EnergyAngleDistributionData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/EnergyAngleDistributionData.test.cpp -------------------------------------------------------------------------------- /test/continuous/EnergyDependentWattSpectrum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/EnergyDependentWattSpectrum.test.cpp -------------------------------------------------------------------------------- /test/continuous/EnergyDistributionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/EnergyDistributionBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/EquiprobableAngularBins.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/EquiprobableAngularBins.test.cpp -------------------------------------------------------------------------------- /test/continuous/EquiprobableOutgoingEnergyBinData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/EquiprobableOutgoingEnergyBinData.test.cpp -------------------------------------------------------------------------------- /test/continuous/EquiprobableOutgoingEnergyBins.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/EquiprobableOutgoingEnergyBins.test.cpp -------------------------------------------------------------------------------- /test/continuous/EvaporationSpectrum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/EvaporationSpectrum.test.cpp -------------------------------------------------------------------------------- /test/continuous/FissionMultiplicityBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/FissionMultiplicityBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/FrameAndMultiplicityBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/FrameAndMultiplicityBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/GeneralEvaporationSpectrum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/GeneralEvaporationSpectrum.test.cpp -------------------------------------------------------------------------------- /test/continuous/InterpolationData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/InterpolationData.test.cpp -------------------------------------------------------------------------------- /test/continuous/IsotropicAngularDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/IsotropicAngularDistribution.test.cpp -------------------------------------------------------------------------------- /test/continuous/KalbachMannDistributionData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/KalbachMannDistributionData.test.cpp -------------------------------------------------------------------------------- /test/continuous/LevelScatteringDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/LevelScatteringDistribution.test.cpp -------------------------------------------------------------------------------- /test/continuous/MultiDistributionData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/MultiDistributionData.test.cpp -------------------------------------------------------------------------------- /test/continuous/MultiplicityReactionNumberBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/MultiplicityReactionNumberBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/NBodyPhaseSpaceDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/NBodyPhaseSpaceDistribution.test.cpp -------------------------------------------------------------------------------- /test/continuous/OutgoingEnergyDistributionData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/OutgoingEnergyDistributionData.test.cpp -------------------------------------------------------------------------------- /test/continuous/ParameterData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/ParameterData.test.cpp -------------------------------------------------------------------------------- /test/continuous/PhotonProductionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/PhotonProductionBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/PhotonProductionCrossSectionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/PhotonProductionCrossSectionBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/PhotonProductionCrossSectionData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/PhotonProductionCrossSectionData.test.cpp -------------------------------------------------------------------------------- /test/continuous/PolynomialFissionMultiplicity.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/PolynomialFissionMultiplicity.test.cpp -------------------------------------------------------------------------------- /test/continuous/PrincipalCrossSectionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/PrincipalCrossSectionBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/ProbabilityTable.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/ProbabilityTable.test.cpp -------------------------------------------------------------------------------- /test/continuous/ProbabilityTableBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/ProbabilityTableBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/ReactionNumberBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/ReactionNumberBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/ReactionQValueBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/ReactionQValueBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/SecondaryParticleInformationBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/SecondaryParticleInformationBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/SecondaryParticleLocatorBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/SecondaryParticleLocatorBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/SecondaryParticleProductionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/SecondaryParticleProductionBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/SecondaryParticleTypeBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/SecondaryParticleTypeBlock.test.cpp -------------------------------------------------------------------------------- /test/continuous/SimpleMaxwellianFissionSpectrum.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/SimpleMaxwellianFissionSpectrum.test.cpp -------------------------------------------------------------------------------- /test/continuous/TabulatedAngleEnergyDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/TabulatedAngleEnergyDistribution.test.cpp -------------------------------------------------------------------------------- /test/continuous/TabulatedAngularDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/TabulatedAngularDistribution.test.cpp -------------------------------------------------------------------------------- /test/continuous/TabulatedEnergyAngleDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/TabulatedEnergyAngleDistribution.test.cpp -------------------------------------------------------------------------------- /test/continuous/TabulatedEnergyDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/TabulatedEnergyDistribution.test.cpp -------------------------------------------------------------------------------- /test/continuous/TabulatedFissionMultiplicity.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/TabulatedFissionMultiplicity.test.cpp -------------------------------------------------------------------------------- /test/continuous/TabulatedKalbachMannDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/TabulatedKalbachMannDistribution.test.cpp -------------------------------------------------------------------------------- /test/continuous/TabulatedMultiplicity.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/TabulatedMultiplicity.test.cpp -------------------------------------------------------------------------------- /test/continuous/TabulatedSecondaryParticleMultiplicity.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/TabulatedSecondaryParticleMultiplicity.test.cpp -------------------------------------------------------------------------------- /test/continuous/TwoBodyTransferDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/continuous/TwoBodyTransferDistribution.test.cpp -------------------------------------------------------------------------------- /test/dosimetry/CrossSectionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/dosimetry/CrossSectionBlock.test.cpp -------------------------------------------------------------------------------- /test/dosimetry/CrossSectionData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/dosimetry/CrossSectionData.test.cpp -------------------------------------------------------------------------------- /test/electron/BremsstrahlungBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/BremsstrahlungBlock.test.cpp -------------------------------------------------------------------------------- /test/electron/ElasticAngularDistributionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/ElasticAngularDistributionBlock.test.cpp -------------------------------------------------------------------------------- /test/electron/ElasticCrossSectionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/ElasticCrossSectionBlock.test.cpp -------------------------------------------------------------------------------- /test/electron/ElectronShellBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/ElectronShellBlock.test.cpp -------------------------------------------------------------------------------- /test/electron/ElectronSubshellBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/ElectronSubshellBlock.test.cpp -------------------------------------------------------------------------------- /test/electron/EnergyDistributionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/EnergyDistributionBlock.test.cpp -------------------------------------------------------------------------------- /test/electron/ExcitationBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/ExcitationBlock.test.cpp -------------------------------------------------------------------------------- /test/electron/PrincipalCrossSectionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/PrincipalCrossSectionBlock.test.cpp -------------------------------------------------------------------------------- /test/electron/SubshellTransitionData.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/SubshellTransitionData.test.cpp -------------------------------------------------------------------------------- /test/electron/SubshellTransitionDataBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/SubshellTransitionDataBlock.test.cpp -------------------------------------------------------------------------------- /test/electron/TabulatedAngularDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/TabulatedAngularDistribution.test.cpp -------------------------------------------------------------------------------- /test/electron/TabulatedEnergyDistribution.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/electron/TabulatedEnergyDistribution.test.cpp -------------------------------------------------------------------------------- /test/photoatomic/CoherentFormFactorBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/photoatomic/CoherentFormFactorBlock.test.cpp -------------------------------------------------------------------------------- /test/photoatomic/ComptonProfile.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/photoatomic/ComptonProfile.test.cpp -------------------------------------------------------------------------------- /test/photoatomic/ComptonProfileBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/photoatomic/ComptonProfileBlock.test.cpp -------------------------------------------------------------------------------- /test/photoatomic/FluorescenceDataBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/photoatomic/FluorescenceDataBlock.test.cpp -------------------------------------------------------------------------------- /test/photoatomic/HeatingNumbersBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/photoatomic/HeatingNumbersBlock.test.cpp -------------------------------------------------------------------------------- /test/photoatomic/IncoherentScatteringFunctionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/photoatomic/IncoherentScatteringFunctionBlock.test.cpp -------------------------------------------------------------------------------- /test/photoatomic/PhotoelectricCrossSectionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/photoatomic/PhotoelectricCrossSectionBlock.test.cpp -------------------------------------------------------------------------------- /test/photoatomic/PrincipalCrossSectionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/photoatomic/PrincipalCrossSectionBlock.test.cpp -------------------------------------------------------------------------------- /test/photonuclear/PrincipalCrossSectionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/photonuclear/PrincipalCrossSectionBlock.test.cpp -------------------------------------------------------------------------------- /test/photonuclear/SecondaryParticleLocatorBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/photonuclear/SecondaryParticleLocatorBlock.test.cpp -------------------------------------------------------------------------------- /test/resources/1000.01p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/1000.01p -------------------------------------------------------------------------------- /test/resources/1000.12p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/1000.12p -------------------------------------------------------------------------------- /test/resources/12000.84p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/12000.84p -------------------------------------------------------------------------------- /test/resources/13027.24y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/13027.24y -------------------------------------------------------------------------------- /test/resources/2003.710nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/2003.710nc -------------------------------------------------------------------------------- /test/resources/3000.03p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/3000.03p -------------------------------------------------------------------------------- /test/resources/6000.14p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/6000.14p -------------------------------------------------------------------------------- /test/resources/92235.710nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/92235.710nc -------------------------------------------------------------------------------- /test/resources/92235.710nc.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/92235.710nc.output -------------------------------------------------------------------------------- /test/resources/92238.69c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/92238.69c -------------------------------------------------------------------------------- /test/resources/94239.31u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/94239.31u -------------------------------------------------------------------------------- /test/resources/al-27.40t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/al-27.40t -------------------------------------------------------------------------------- /test/resources/d-lid.10t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/d-lid.10t -------------------------------------------------------------------------------- /test/resources/h-h2o.40t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/h-h2o.40t -------------------------------------------------------------------------------- /test/resources/zr-zrh.40t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/resources/zr-zrh.40t -------------------------------------------------------------------------------- /test/thermal/CrossSectionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/thermal/CrossSectionBlock.test.cpp -------------------------------------------------------------------------------- /test/thermal/DiscreteCosines.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/thermal/DiscreteCosines.test.cpp -------------------------------------------------------------------------------- /test/thermal/DiscreteCosinesWithProbability.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/thermal/DiscreteCosinesWithProbability.test.cpp -------------------------------------------------------------------------------- /test/thermal/ElasticAngularDistributionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/thermal/ElasticAngularDistributionBlock.test.cpp -------------------------------------------------------------------------------- /test/thermal/InelasticAngularDistributionBlock.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njoy/ACEtk/HEAD/test/thermal/InelasticAngularDistributionBlock.test.cpp --------------------------------------------------------------------------------