├── CITATION.cff ├── CMakeLists.txt ├── CMakePresets.json ├── CONTRIBUTING.rst ├── COPYRIGHT ├── README.md ├── app ├── CMakeLists.txt ├── CliUtils.cc ├── CliUtils.hh ├── celer-export-geant.cc ├── celer-g4 │ ├── ActionInitialization.cc │ ├── ActionInitialization.hh │ ├── CMakeLists.txt │ ├── DetectorConstruction.cc │ ├── DetectorConstruction.hh │ ├── EventAction.cc │ ├── EventAction.hh │ ├── GeantDiagnostics.cc │ ├── GeantDiagnostics.hh │ ├── GlobalSetup.cc │ ├── GlobalSetup.hh │ ├── HepMC3PrimaryGeneratorAction.cc │ ├── HepMC3PrimaryGeneratorAction.hh │ ├── LogHandlers.cc │ ├── LogHandlers.hh │ ├── RootIO.cc │ ├── RootIO.hh │ ├── RunAction.cc │ ├── RunAction.hh │ ├── RunInput.cc │ ├── RunInput.hh │ ├── RunInputIO.json.cc │ ├── RunInputIO.json.hh │ ├── SensitiveDetector.cc │ ├── SensitiveDetector.hh │ ├── SensitiveHit.cc │ ├── SensitiveHit.hh │ ├── TrackingAction.cc │ ├── TrackingAction.hh │ ├── celer-g4.cc │ ├── celer-g4.nogeant.cc │ └── test-harness.py ├── celer-geo │ ├── CMakeLists.txt │ ├── GeoInput.cc │ ├── GeoInput.hh │ ├── README.md │ ├── Runner.cc │ ├── Runner.hh │ ├── Types.cc │ ├── Types.hh │ ├── celer-geo.cc │ └── test-harness.py ├── celer-sim │ ├── CMakeLists.txt │ ├── Runner.cc │ ├── Runner.hh │ ├── RunnerInput.cc │ ├── RunnerInput.hh │ ├── RunnerInputIO.json.cc │ ├── RunnerInputIO.json.hh │ ├── RunnerOutput.cc │ ├── RunnerOutput.hh │ ├── StepTimer.hh │ ├── Transporter.cc │ ├── Transporter.hh │ ├── celer-sim.cc │ └── simple-driver.py ├── data │ ├── four-steel-slabs.gdml │ ├── gamma-4evt-15prim.hepmc3 │ ├── lar-sphere.gdml │ ├── simple-cms.gdml │ ├── simple-cms.org.json │ ├── simple-cms.org.omn │ ├── ttbarbits-12evt-118prim.hepmc3 │ └── ttbarsplit-12evt-1108prim.hepmc3 └── orange-update.cc ├── cmake ├── CeleritasAddTest.cmake ├── CeleritasConfig.cmake.in ├── CeleritasG4Tests.cmake ├── CeleritasLibrary.cmake ├── CeleritasLibraryUtils.cmake ├── CeleritasOptionUtils.cmake ├── CeleritasUtils.cmake ├── CgvFindVersion.cmake ├── FindCLI11.cmake ├── FindG4VG.cmake ├── FindGeant4.cmake ├── FindHepMC3.cmake ├── FindPerfetto.cmake ├── FindROOT.cmake ├── FindThrust.cmake ├── FindVecGeom.cmake ├── Findcovfie.cmake ├── Findnlohmann_json.cmake ├── external │ └── CudaRdcUtils.cmake └── try-sincospi.cc ├── doc ├── CMakeLists.txt ├── COPYRIGHT ├── _input │ ├── optical-flow.dot │ └── orangeinp-types.dot ├── _python │ ├── celerdirectives.py │ └── monkeysphinx.py ├── _static │ ├── .gitignore │ ├── celeritas-square.svg │ ├── dot-not-found.png │ ├── doxygen-custom.css │ ├── inlining-hierarchy.png │ ├── inlining-levels.png │ ├── inlining-physical.png │ ├── macros.tex │ ├── orange-surface-softeq-plane.png │ ├── ornltm-extract.sty │ ├── ornltm-footer.tex │ ├── ornltm-header-celeritas.tex │ ├── sphinxcustom.sty │ └── zotero.bib ├── conf.py ├── config.json.in ├── development │ ├── administration.rst │ ├── coding.rst │ ├── contributing.rst │ ├── style.rst │ └── testing.rst ├── example │ ├── celer-g4.rst │ ├── celer-geo.rst │ ├── celer-sim.rst │ ├── geant4.rst │ └── minimal.rst ├── implementation │ ├── core-physics.rst │ ├── core-physics │ │ ├── diagnostics.rst │ │ ├── limits.rst │ │ ├── problem-def.rst │ │ ├── propagation.rst │ │ ├── rng.rst │ │ └── stepping.rst │ ├── corecel.rst │ ├── corecel │ │ ├── fundamentals.rst │ │ ├── numerics.rst │ │ ├── stdlib.rst │ │ └── system.rst │ ├── data-model.rst │ ├── decay-physics.rst │ ├── em-physics.rst │ ├── em-physics │ │ ├── annihilation.rst │ │ ├── brems.rst │ │ ├── coulomb.rst │ │ ├── ionization.rst │ │ ├── pair-production.rst │ │ ├── photon-interaction.rst │ │ ├── slowing-down.rst │ │ └── summary.rst │ ├── geant4-interface.rst │ ├── geant4-interface │ │ ├── details.rst │ │ ├── high-level.rst │ │ ├── low-level.rst │ │ └── setup.rst │ ├── geometry.rst │ ├── geometry │ │ ├── geant4.rst │ │ ├── interfaces.rst │ │ ├── orange.rst │ │ ├── orange │ │ │ ├── construction.rst │ │ │ ├── runtime.rst │ │ │ └── translation.rst │ │ └── vecgeom.rst │ ├── mucf-physics.rst │ ├── optical-physics.rst │ └── units-constants.rst ├── index.rst ├── licenses │ ├── additional.rst │ ├── code.rst │ └── documentation.rst ├── release-history │ ├── v0.1.rst │ ├── v0.2.rst │ ├── v0.3.rst │ ├── v0.4.rst │ ├── v0.5.rst │ └── v0.6.rst └── usage │ ├── execution.rst │ ├── execution │ ├── _usage │ │ ├── celer-export-geant.txt │ │ ├── celer-g4.txt │ │ ├── celer-geo.txt │ │ ├── celer-sim.txt │ │ ├── orange-update.txt │ │ └── regenerate.sh │ ├── applications.rst │ ├── environment.rst │ ├── profiling.rst │ └── utilities.rst │ ├── input.rst │ ├── input │ ├── control.rst │ ├── diagnostics.rst │ ├── field.rst │ ├── model.rst │ ├── physics.rst │ ├── problem.rst │ ├── scoring.rst │ └── tracking.rst │ ├── installation.rst │ └── integration.rst ├── example ├── geant4 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── add-celer.diff │ ├── fastsim-offload.cc │ ├── simple-offload.cc │ └── trackingmanager-offload.cc ├── minimal │ ├── .gitignore │ ├── CMakeLists.txt │ └── minimal.cc └── offload-template │ ├── .gitignore │ ├── BuildInfo.hh.in │ ├── CMakeLists.txt │ ├── README.rst │ ├── run-offload.cc │ ├── run.mac │ └── src │ ├── ActionInitialization.cc │ ├── ActionInitialization.hh │ ├── DetectorConstruction.cc │ ├── DetectorConstruction.hh │ ├── EventAction.cc │ ├── EventAction.hh │ ├── MakeCelerOptions.cc │ ├── MakeCelerOptions.hh │ ├── PrimaryGeneratorAction.cc │ ├── PrimaryGeneratorAction.hh │ ├── RunAction.cc │ ├── RunAction.hh │ ├── SensitiveDetector.cc │ ├── SensitiveDetector.hh │ ├── StepDiagnostic.cc │ ├── StepDiagnostic.cu │ ├── StepDiagnostic.hh │ ├── StepDiagnosticData.hh │ └── StepDiagnosticExecutor.hh ├── external └── CMakeLists.txt ├── scripts ├── README.md ├── build.sh ├── ci │ ├── gcovr.cfg │ ├── host-system-info.cmake │ ├── llvm-gcov.sh │ ├── run-ci.sh │ ├── spack.yaml │ └── test-examples.sh ├── cmake-presets │ ├── _dev_.json │ ├── bede.json │ ├── ci-rocky-cuda.json │ ├── ci-ubuntu-github.json │ ├── ci-ubuntu-rocm.json │ ├── ci-windows-github.json │ ├── esseivaj.json │ ├── exalearn4.json │ ├── executor.json │ ├── faraday.json │ ├── frontier.json │ ├── gilgamesh.json │ ├── gondolin.json │ ├── hudson.json │ ├── jlse.json │ ├── mac147429.json │ ├── milan0.json │ ├── morannon.json │ ├── omnia.json │ ├── perlmutter.json │ ├── scisoftbuild01.json │ ├── stognini.json │ ├── wildstyle.json │ └── zeus.json ├── dev │ ├── analyze-cmake-trace.py │ ├── better-bibtex-prefs.json │ ├── celeritas-gen.py │ ├── celerlldb.py │ ├── clang-reformat-everything.sh │ ├── cloc-to-numbers.py │ ├── codespell-fixes.txt │ ├── codespell-ignore.txt │ ├── install-commit-hooks.sh │ ├── iwyu-apple-clang.imp │ ├── iwyu-celeritas.imp │ ├── iwyu-dependencies.imp │ ├── post-commit.git-clang-format │ ├── pre-commit.validate-source │ ├── run-cloc.sh │ ├── run-iwyu.sh │ ├── update-reference-json.py │ └── update-test-namespace.py ├── doc-requirements.txt ├── docker │ ├── README.md │ ├── build.sh │ ├── ci │ │ ├── Dockerfile │ │ ├── entrypoint.bash │ │ └── launch-local-test.sh │ ├── dev │ │ ├── Dockerfile │ │ ├── rocky-cuda12.yaml │ │ └── ubuntu-rocm7.yaml │ └── interactive │ │ ├── CMakeUserPresets.json │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.sh │ │ ├── run-perfetto.sh │ │ ├── run.sh │ │ ├── scheduling.cfg │ │ ├── setup_shell.sh │ │ └── spack.yaml ├── env │ ├── ci-centos-rocm.sh │ ├── exalearn4.sh │ ├── excl.sh │ ├── faraday.sh │ ├── frontier.sh │ ├── hudson.sh │ ├── jlse.sh │ ├── login-excl.sh │ ├── milan0.sh │ ├── omnia.sh │ ├── perlmutter.sh │ ├── scisoftbuild01.sh │ ├── wildstyle.sh │ └── zeus.sh ├── release │ └── users.json ├── spack.yaml └── user │ ├── .gitignore │ ├── orange-csg-to-dot.py │ └── plot-slot-diagnostic.py ├── src ├── CMakeLists.txt ├── CeleritasG4.hh ├── accel │ ├── AlongStepFactory.cc │ ├── AlongStepFactory.hh │ ├── CMakeLists.txt │ ├── CartMapMagneticField.cc │ ├── CartMapMagneticField.hh │ ├── CylMapMagneticField.cc │ ├── CylMapMagneticField.hh │ ├── ExceptionConverter.cc │ ├── ExceptionConverter.cu │ ├── ExceptionConverter.hh │ ├── FastSimulationIntegration.cc │ ├── FastSimulationIntegration.hh │ ├── FastSimulationModel.cc │ ├── FastSimulationModel.hh │ ├── FastSimulationOffload.hh │ ├── GeantSimpleCalo.cc │ ├── GeantSimpleCalo.hh │ ├── GeantStepDiagnostic.cc │ ├── GeantStepDiagnostic.hh │ ├── HepMC3PrimaryGenerator.cc │ ├── HepMC3PrimaryGenerator.hh │ ├── IntegrationBase.cc │ ├── IntegrationBase.hh │ ├── LocalOffloadInterface.hh │ ├── LocalOpticalOffload.cc │ ├── LocalOpticalOffload.hh │ ├── LocalTransporter.cc │ ├── LocalTransporter.hh │ ├── Logger.cc │ ├── Logger.hh │ ├── PGPrimaryGeneratorAction.cc │ ├── PGPrimaryGeneratorAction.hh │ ├── RZMapMagneticField.hh │ ├── SetupOptions.cc │ ├── SetupOptions.hh │ ├── SetupOptionsMessenger.cc │ ├── SetupOptionsMessenger.hh │ ├── SharedParams.cc │ ├── SharedParams.hh │ ├── SimpleOffload.cc │ ├── SimpleOffload.hh │ ├── TimeOutput.cc │ ├── TimeOutput.hh │ ├── TrackingManager.cc │ ├── TrackingManager.hh │ ├── TrackingManagerConstructor.cc │ ├── TrackingManagerConstructor.hh │ ├── TrackingManagerIntegration.cc │ ├── TrackingManagerIntegration.hh │ ├── TrackingManagerOffload.hh │ ├── Types.hh │ ├── UserActionIntegration.cc │ ├── UserActionIntegration.hh │ └── detail │ │ ├── GeantSimpleCaloSD.cc │ │ ├── GeantSimpleCaloSD.hh │ │ ├── GeantSimpleCaloStorage.hh │ │ ├── IntegrationSingleton.cc │ │ ├── IntegrationSingleton.hh │ │ ├── LoggerImpl.cc │ │ ├── LoggerImpl.hh │ │ ├── MagneticFieldUtils.hh │ │ └── OffloadWriter.hh ├── celeritas │ ├── CMakeLists.txt │ ├── Constants.hh │ ├── Quantities.hh │ ├── Types.cc │ ├── Types.hh │ ├── TypesIO.json.cc │ ├── TypesIO.json.hh │ ├── UnitTypes.hh │ ├── Units.hh │ ├── alongstep │ │ ├── AlongStep.hh │ │ ├── AlongStepCartMapFieldMscAction.cc │ │ ├── AlongStepCartMapFieldMscAction.cu │ │ ├── AlongStepCartMapFieldMscAction.hh │ │ ├── AlongStepCylMapFieldMscAction.cc │ │ ├── AlongStepCylMapFieldMscAction.cu │ │ ├── AlongStepCylMapFieldMscAction.hh │ │ ├── AlongStepGeneralLinearAction.cc │ │ ├── AlongStepGeneralLinearAction.cu │ │ ├── AlongStepGeneralLinearAction.hh │ │ ├── AlongStepNeutralAction.cc │ │ ├── AlongStepNeutralAction.cu │ │ ├── AlongStepNeutralAction.hh │ │ ├── AlongStepRZMapFieldMscAction.cc │ │ ├── AlongStepRZMapFieldMscAction.cu │ │ ├── AlongStepRZMapFieldMscAction.hh │ │ ├── AlongStepUniformMscAction.cc │ │ ├── AlongStepUniformMscAction.cu │ │ ├── AlongStepUniformMscAction.hh │ │ └── detail │ │ │ ├── AlongStepKernels.cu │ │ │ ├── AlongStepKernels.hh │ │ │ ├── AlongStepNeutralImpl.hh │ │ │ ├── CartMapFieldPropagatorFactory.hh │ │ │ ├── CylMapFieldPropagatorFactory.hh │ │ │ ├── ElossApplier.hh │ │ │ ├── FieldFunctors.hh │ │ │ ├── FluctELoss.hh │ │ │ ├── LinearPropagatorFactory.hh │ │ │ ├── MeanELoss.hh │ │ │ ├── MscApplier.hh │ │ │ ├── MscStepLimitApplier.hh │ │ │ ├── PropagationApplier.hh │ │ │ ├── RZMapFieldPropagatorFactory.hh │ │ │ ├── TimeUpdater.hh │ │ │ ├── TrackUpdater.hh │ │ │ └── UniformFieldPropagatorFactory.hh │ ├── decay │ │ ├── data │ │ │ └── MuDecayData.hh │ │ ├── executor │ │ │ └── MuDecayExecutor.hh │ │ └── interactor │ │ │ └── MuDecayInteractor.hh │ ├── em │ │ ├── data │ │ │ ├── AtomicRelaxationData.hh │ │ │ ├── BetheHeitlerData.hh │ │ │ ├── CommonCoulombData.hh │ │ │ ├── CoulombScatteringData.hh │ │ │ ├── EPlusGGData.hh │ │ │ ├── ElectronBremsData.hh │ │ │ ├── FluctuationData.hh │ │ │ ├── GammaNuclearData.hh │ │ │ ├── KleinNishinaData.hh │ │ │ ├── LivermorePEData.hh │ │ │ ├── MollerBhabhaData.hh │ │ │ ├── MuBremsstrahlungData.hh │ │ │ ├── MuHadIonizationData.hh │ │ │ ├── MuPairProductionData.hh │ │ │ ├── RayleighData.hh │ │ │ ├── RelativisticBremData.hh │ │ │ ├── SeltzerBergerData.hh │ │ │ ├── UrbanMscData.hh │ │ │ ├── WentzelOKVIData.hh │ │ │ └── WentzelVIMscData.hh │ │ ├── detail │ │ │ ├── Utils.cc │ │ │ └── Utils.hh │ │ ├── distribution │ │ │ ├── BetheBlochEnergyDistribution.hh │ │ │ ├── BhabhaEnergyDistribution.hh │ │ │ ├── BraggICRU73QOEnergyDistribution.hh │ │ │ ├── EnergyLossDeltaDistribution.hh │ │ │ ├── EnergyLossGammaDistribution.hh │ │ │ ├── EnergyLossGaussianDistribution.hh │ │ │ ├── EnergyLossHelper.hh │ │ │ ├── EnergyLossTraits.hh │ │ │ ├── EnergyLossUrbanDistribution.hh │ │ │ ├── MollerEnergyDistribution.hh │ │ │ ├── MuAngularDistribution.hh │ │ │ ├── MuBBEnergyDistribution.hh │ │ │ ├── MuPPEnergyDistribution.hh │ │ │ ├── SBEnergyDistHelper.hh │ │ │ ├── SBEnergyDistribution.hh │ │ │ ├── TsaiUrbanDistribution.hh │ │ │ ├── UrbanLargeAngleDistribution.hh │ │ │ ├── WentzelDistribution.hh │ │ │ └── detail │ │ │ │ └── Utils.hh │ │ ├── executor │ │ │ ├── BetheHeitlerExecutor.hh │ │ │ ├── CoulombScatteringExecutor.hh │ │ │ ├── EPlusGGExecutor.hh │ │ │ ├── GammaNuclearExecutor.hh │ │ │ ├── KleinNishinaExecutor.hh │ │ │ ├── LivermorePEExecutor.hh │ │ │ ├── MollerBhabhaExecutor.hh │ │ │ ├── MuBremsstrahlungExecutor.hh │ │ │ ├── MuHadIonizationExecutor.hh │ │ │ ├── MuPairProductionExecutor.hh │ │ │ ├── RayleighExecutor.hh │ │ │ ├── RelativisticBremExecutor.hh │ │ │ └── SeltzerBergerExecutor.hh │ │ ├── interactor │ │ │ ├── AtomicRelaxation.hh │ │ │ ├── AtomicRelaxationHelper.hh │ │ │ ├── BetheHeitlerInteractor.hh │ │ │ ├── CoulombScatteringInteractor.hh │ │ │ ├── EPlusGGInteractor.hh │ │ │ ├── GammaNuclearInteractor.hh │ │ │ ├── KleinNishinaInteractor.hh │ │ │ ├── LivermorePEInteractor.hh │ │ │ ├── MollerBhabhaInteractor.hh │ │ │ ├── MuBremsstrahlungInteractor.hh │ │ │ ├── MuHadIonizationInteractor.hh │ │ │ ├── MuPairProductionInteractor.hh │ │ │ ├── RayleighInteractor.hh │ │ │ ├── RelativisticBremInteractor.hh │ │ │ ├── SeltzerBergerInteractor.hh │ │ │ └── detail │ │ │ │ ├── BremFinalStateHelper.hh │ │ │ │ ├── IoniFinalStateHelper.hh │ │ │ │ ├── PhysicsConstants.hh │ │ │ │ ├── RBEnergySampler.hh │ │ │ │ ├── SBEnergySampler.hh │ │ │ │ └── SBPositronXsCorrector.hh │ │ ├── model │ │ │ ├── BetheBlochModel.cc │ │ │ ├── BetheBlochModel.cu │ │ │ ├── BetheBlochModel.hh │ │ │ ├── BetheHeitlerModel.cc │ │ │ ├── BetheHeitlerModel.cu │ │ │ ├── BetheHeitlerModel.hh │ │ │ ├── BraggModel.cc │ │ │ ├── BraggModel.cu │ │ │ ├── BraggModel.hh │ │ │ ├── CoulombScatteringModel.cc │ │ │ ├── CoulombScatteringModel.cu │ │ │ ├── CoulombScatteringModel.hh │ │ │ ├── EPlusGGModel.cc │ │ │ ├── EPlusGGModel.cu │ │ │ ├── EPlusGGModel.hh │ │ │ ├── GammaNuclearModel.cc │ │ │ ├── GammaNuclearModel.cu │ │ │ ├── GammaNuclearModel.hh │ │ │ ├── ICRU73QOModel.cc │ │ │ ├── ICRU73QOModel.cu │ │ │ ├── ICRU73QOModel.hh │ │ │ ├── KleinNishinaModel.cc │ │ │ ├── KleinNishinaModel.cu │ │ │ ├── KleinNishinaModel.hh │ │ │ ├── LivermorePEModel.cc │ │ │ ├── LivermorePEModel.cu │ │ │ ├── LivermorePEModel.hh │ │ │ ├── MollerBhabhaModel.cc │ │ │ ├── MollerBhabhaModel.cu │ │ │ ├── MollerBhabhaModel.hh │ │ │ ├── MuBetheBlochModel.cc │ │ │ ├── MuBetheBlochModel.cu │ │ │ ├── MuBetheBlochModel.hh │ │ │ ├── MuBremsstrahlungModel.cc │ │ │ ├── MuBremsstrahlungModel.cu │ │ │ ├── MuBremsstrahlungModel.hh │ │ │ ├── MuPairProductionModel.cc │ │ │ ├── MuPairProductionModel.cu │ │ │ ├── MuPairProductionModel.hh │ │ │ ├── RayleighModel.cc │ │ │ ├── RayleighModel.cu │ │ │ ├── RayleighModel.hh │ │ │ ├── RelativisticBremModel.cc │ │ │ ├── RelativisticBremModel.cu │ │ │ ├── RelativisticBremModel.hh │ │ │ ├── SeltzerBergerModel.cc │ │ │ ├── SeltzerBergerModel.cu │ │ │ ├── SeltzerBergerModel.hh │ │ │ └── detail │ │ │ │ ├── LivermoreXsInserter.hh │ │ │ │ ├── MuHadIonizationBuilder.hh │ │ │ │ └── SBTableInserter.hh │ │ ├── msc │ │ │ ├── UrbanMsc.hh │ │ │ └── detail │ │ │ │ ├── MscStepFromGeo.hh │ │ │ │ ├── MscStepToGeo.hh │ │ │ │ ├── UrbanMscHelper.hh │ │ │ │ ├── UrbanMscMinimalStepLimit.hh │ │ │ │ ├── UrbanMscSafetyStepLimit.hh │ │ │ │ ├── UrbanMscScatter.hh │ │ │ │ └── UrbanPositronCorrector.hh │ │ ├── params │ │ │ ├── AtomicRelaxationParams.cc │ │ │ ├── AtomicRelaxationParams.hh │ │ │ ├── FluctuationParams.cc │ │ │ ├── FluctuationParams.hh │ │ │ ├── UrbanMscParams.cc │ │ │ ├── UrbanMscParams.hh │ │ │ ├── WentzelOKVIParams.cc │ │ │ ├── WentzelOKVIParams.hh │ │ │ ├── WentzelVIMscParams.cc │ │ │ ├── WentzelVIMscParams.hh │ │ │ └── detail │ │ │ │ ├── MscParamsHelper.cc │ │ │ │ └── MscParamsHelper.hh │ │ ├── process │ │ │ ├── BremsstrahlungProcess.cc │ │ │ ├── BremsstrahlungProcess.hh │ │ │ ├── ComptonProcess.cc │ │ │ ├── ComptonProcess.hh │ │ │ ├── CoulombScatteringProcess.cc │ │ │ ├── CoulombScatteringProcess.hh │ │ │ ├── EIonizationProcess.cc │ │ │ ├── EIonizationProcess.hh │ │ │ ├── EPlusAnnihilationProcess.cc │ │ │ ├── EPlusAnnihilationProcess.hh │ │ │ ├── GammaConversionProcess.cc │ │ │ ├── GammaConversionProcess.hh │ │ │ ├── GammaNuclearProcess.cc │ │ │ ├── GammaNuclearProcess.hh │ │ │ ├── MuBremsstrahlungProcess.cc │ │ │ ├── MuBremsstrahlungProcess.hh │ │ │ ├── MuIonizationProcess.cc │ │ │ ├── MuIonizationProcess.hh │ │ │ ├── MuPairProductionProcess.cc │ │ │ ├── MuPairProductionProcess.hh │ │ │ ├── PhotoelectricProcess.cc │ │ │ ├── PhotoelectricProcess.hh │ │ │ ├── RayleighProcess.cc │ │ │ └── RayleighProcess.hh │ │ └── xs │ │ │ ├── EPlusGGMacroXsCalculator.hh │ │ │ ├── GammaNuclearMicroXsCalculator.hh │ │ │ ├── LPMCalculator.hh │ │ │ ├── LivermorePEMicroXsCalculator.hh │ │ │ ├── MottRatioCalculator.hh │ │ │ ├── MuBremsDiffXsCalculator.hh │ │ │ ├── NuclearFormFactors.hh │ │ │ ├── RBDiffXsCalculator.hh │ │ │ ├── ScreeningFunctions.hh │ │ │ ├── WentzelHelper.hh │ │ │ ├── WentzelMacroXsCalculator.hh │ │ │ └── WentzelTransportXsCalculator.hh │ ├── ext │ │ ├── Convert.root.hh │ │ ├── EmPhysicsList.cc │ │ ├── EmPhysicsList.hh │ │ ├── FtfpBertPhysicsList.cc │ │ ├── FtfpBertPhysicsList.hh │ │ ├── GeantImporter.cc │ │ ├── GeantImporter.hh │ │ ├── GeantOpticalPhysicsOptions.hh │ │ ├── GeantOpticalPhysicsOptionsIO.json.cc │ │ ├── GeantOpticalPhysicsOptionsIO.json.hh │ │ ├── GeantParticleView.hh │ │ ├── GeantPhysicsOptions.cc │ │ ├── GeantPhysicsOptions.hh │ │ ├── GeantPhysicsOptionsIO.json.cc │ │ ├── GeantPhysicsOptionsIO.json.hh │ │ ├── GeantSd.cc │ │ ├── GeantSd.hh │ │ ├── GeantSdOutput.cc │ │ ├── GeantSdOutput.hh │ │ ├── GeantSetup.cc │ │ ├── GeantSetup.hh │ │ ├── GeantUnits.hh │ │ ├── RootExporter.cc │ │ ├── RootExporter.hh │ │ ├── RootFileManager.cc │ │ ├── RootFileManager.hh │ │ ├── RootImporter.cc │ │ ├── RootImporter.hh │ │ ├── RootInterfaceLinkDef.h │ │ ├── RootJsonDumper.cc │ │ ├── RootJsonDumper.hh │ │ ├── RootUniquePtr.hh │ │ ├── RootUniquePtr.root.cc │ │ ├── ScopedRootErrorHandler.cc │ │ ├── ScopedRootErrorHandler.hh │ │ └── detail │ │ │ ├── EmStandardPhysics.cc │ │ │ ├── EmStandardPhysics.hh │ │ │ ├── GeantMaterialPropertyGetter.hh │ │ │ ├── GeantMicroXsCalculator.cc │ │ │ ├── GeantMicroXsCalculator.hh │ │ │ ├── GeantModelImporter.cc │ │ │ ├── GeantModelImporter.hh │ │ │ ├── GeantOpticalModelImporter.cc │ │ │ ├── GeantOpticalModelImporter.hh │ │ │ ├── GeantProcessImporter.cc │ │ │ ├── GeantProcessImporter.hh │ │ │ ├── GeantSurfacePhysicsHelper.cc │ │ │ ├── GeantSurfacePhysicsHelper.hh │ │ │ ├── GeantSurfacePhysicsLoader.cc │ │ │ ├── GeantSurfacePhysicsLoader.hh │ │ │ ├── GeoOpticalIdMap.cc │ │ │ ├── GeoOpticalIdMap.hh │ │ │ ├── HitProcessor.cc │ │ │ ├── HitProcessor.hh │ │ │ ├── LevelTouchableUpdater.cc │ │ │ ├── LevelTouchableUpdater.hh │ │ │ ├── NaviTouchableUpdater.cc │ │ │ ├── NaviTouchableUpdater.hh │ │ │ ├── PhysicsListUtils.hh │ │ │ ├── SensDetInserter.cc │ │ │ ├── SensDetInserter.hh │ │ │ ├── TouchableUpdaterInterface.cc │ │ │ ├── TouchableUpdaterInterface.hh │ │ │ ├── TrackProcessor.cc │ │ │ └── TrackProcessor.hh │ ├── field │ │ ├── CartMapField.covfie.hh │ │ ├── CartMapField.hh │ │ ├── CartMapFieldData.covfie.hh │ │ ├── CartMapFieldData.hh │ │ ├── CartMapFieldInput.hh │ │ ├── CartMapFieldParams.covfie.cc │ │ ├── CartMapFieldParams.hh │ │ ├── CylMapField.hh │ │ ├── CylMapFieldData.hh │ │ ├── CylMapFieldInput.hh │ │ ├── CylMapFieldParams.cc │ │ ├── CylMapFieldParams.hh │ │ ├── DormandPrinceIntegrator.hh │ │ ├── FieldDriverOptions.cc │ │ ├── FieldDriverOptions.hh │ │ ├── FieldDriverOptionsIO.json.cc │ │ ├── FieldDriverOptionsIO.json.hh │ │ ├── FieldPropagator.hh │ │ ├── FieldSubstepper.hh │ │ ├── LinearPropagator.hh │ │ ├── MagFieldEquation.hh │ │ ├── MakeMagFieldPropagator.hh │ │ ├── RZMapField.hh │ │ ├── RZMapFieldData.hh │ │ ├── RZMapFieldInput.hh │ │ ├── RZMapFieldInputIO.json.cc │ │ ├── RZMapFieldInputIO.json.hh │ │ ├── RZMapFieldParams.cc │ │ ├── RZMapFieldParams.hh │ │ ├── RungeKuttaIntegrator.hh │ │ ├── Types.hh │ │ ├── UniformField.hh │ │ ├── UniformFieldData.hh │ │ ├── UniformFieldParams.cc │ │ ├── UniformFieldParams.hh │ │ ├── UniformZField.hh │ │ ├── ZHelixIntegrator.hh │ │ └── detail │ │ │ ├── CovfieFieldTraits.hh │ │ │ ├── FieldUtils.hh │ │ │ └── NotImplementedField.hh │ ├── g4 │ │ ├── DetectorConstruction.cc │ │ ├── DetectorConstruction.hh │ │ ├── SupportedEmStandardPhysics.cc │ │ ├── SupportedEmStandardPhysics.hh │ │ ├── SupportedOpticalPhysics.cc │ │ ├── SupportedOpticalPhysics.hh │ │ └── detail │ │ │ ├── GeantBremsstrahlungProcess.cc │ │ │ └── GeantBremsstrahlungProcess.hh │ ├── geo │ │ ├── CoreGeoParams.hh │ │ ├── CoreGeoTraits.hh │ │ ├── GeoData.hh │ │ ├── GeoFwd.hh │ │ ├── GeoMaterialData.hh │ │ ├── GeoMaterialParams.cc │ │ ├── GeoMaterialParams.hh │ │ ├── GeoMaterialView.hh │ │ ├── GeoParams.hh │ │ ├── GeoTrackView.hh │ │ └── detail │ │ │ ├── BoundaryAction.cc │ │ │ ├── BoundaryAction.cu │ │ │ ├── BoundaryAction.hh │ │ │ └── BoundaryExecutor.hh │ ├── global │ │ ├── ActionGroups.cc │ │ ├── ActionGroups.hh │ │ ├── ActionInterface.hh │ │ ├── ActionLauncher.device.hh │ │ ├── ActionLauncher.hh │ │ ├── ActionSequence.cc │ │ ├── ActionSequence.hh │ │ ├── CoreParams.cc │ │ ├── CoreParams.hh │ │ ├── CoreState.cc │ │ ├── CoreState.hh │ │ ├── CoreTrackData.cc │ │ ├── CoreTrackData.hh │ │ ├── CoreTrackDataFwd.hh │ │ ├── CoreTrackView.hh │ │ ├── Debug.cc │ │ ├── Debug.hh │ │ ├── DebugIO.json.cc │ │ ├── DebugIO.json.hh │ │ ├── KernelContextException.cc │ │ ├── KernelContextException.hh │ │ ├── Stepper.cc │ │ ├── Stepper.hh │ │ ├── TrackExecutor.hh │ │ └── detail │ │ │ ├── CoreSizes.json.hh │ │ │ ├── CoreStateThreadOffsets.hh │ │ │ ├── KillActive.cc │ │ │ ├── KillActive.cu │ │ │ ├── KillActive.hh │ │ │ ├── TrackSlotUtils.cc │ │ │ ├── TrackSlotUtils.cu │ │ │ └── TrackSlotUtils.hh │ ├── grid │ │ ├── ElementCdfCalculator.cc │ │ ├── ElementCdfCalculator.hh │ │ ├── EnergyLossCalculator.hh │ │ ├── GridIdFinder.hh │ │ ├── InverseCdfFinder.hh │ │ ├── InverseRangeCalculator.hh │ │ ├── NonuniformGridBuilder.cc │ │ ├── NonuniformGridBuilder.hh │ │ ├── NonuniformGridCalculator.hh │ │ ├── NonuniformGridInserter.hh │ │ ├── RangeCalculator.hh │ │ ├── RangeGridCalculator.cc │ │ ├── RangeGridCalculator.hh │ │ ├── SplineCalculator.hh │ │ ├── TwodGridBuilder.cc │ │ ├── TwodGridBuilder.hh │ │ ├── UniformGridInserter.cc │ │ ├── UniformGridInserter.hh │ │ ├── UniformLogGridCalculator.hh │ │ ├── XsCalculator.hh │ │ ├── XsGridData.hh │ │ ├── XsGridInserter.cc │ │ ├── XsGridInserter.hh │ │ └── detail │ │ │ └── GridUtils.hh │ ├── inp │ │ ├── Control.hh │ │ ├── Diagnostics.hh │ │ ├── Events.hh │ │ ├── Field.hh │ │ ├── FrameworkInput.hh │ │ ├── Import.hh │ │ ├── MucfPhysics.cc │ │ ├── MucfPhysics.hh │ │ ├── Particle.hh │ │ ├── Physics.hh │ │ ├── PhysicsModel.hh │ │ ├── PhysicsProcess.hh │ │ ├── Problem.hh │ │ ├── ProcessBuilder.hh │ │ ├── Scoring.hh │ │ ├── StandaloneInput.hh │ │ ├── SurfacePhysics.hh │ │ ├── System.hh │ │ └── Tracking.hh │ ├── io │ │ ├── AtomicRelaxationReader.cc │ │ ├── AtomicRelaxationReader.hh │ │ ├── EventData.hh │ │ ├── EventIOInterface.hh │ │ ├── EventReader.cc │ │ ├── EventReader.hh │ │ ├── EventWriter.cc │ │ ├── EventWriter.hh │ │ ├── GammaNuclearXsReader.cc │ │ ├── GammaNuclearXsReader.hh │ │ ├── ImportAtomicRelaxation.hh │ │ ├── ImportData.cc │ │ ├── ImportData.hh │ │ ├── ImportDataTrimmer.cc │ │ ├── ImportDataTrimmer.hh │ │ ├── ImportElement.hh │ │ ├── ImportLivermorePE.hh │ │ ├── ImportMaterial.cc │ │ ├── ImportMaterial.hh │ │ ├── ImportModel.cc │ │ ├── ImportModel.hh │ │ ├── ImportOpticalMaterial.hh │ │ ├── ImportOpticalModel.cc │ │ ├── ImportOpticalModel.hh │ │ ├── ImportParameters.hh │ │ ├── ImportPhysicsTable.hh │ │ ├── ImportProcess.cc │ │ ├── ImportProcess.hh │ │ ├── ImportUnits.cc │ │ ├── ImportUnits.hh │ │ ├── ImportVolume.hh │ │ ├── ImportedElementalMapLoader.hh │ │ ├── ImporterInterface.hh │ │ ├── JsonEventReader.cc │ │ ├── JsonEventReader.hh │ │ ├── JsonEventWriter.cc │ │ ├── JsonEventWriter.hh │ │ ├── LivermorePEReader.cc │ │ ├── LivermorePEReader.hh │ │ ├── NeutronXsReader.cc │ │ ├── NeutronXsReader.hh │ │ ├── RootCoreParamsOutput.cc │ │ ├── RootCoreParamsOutput.hh │ │ ├── RootEventReader.cc │ │ ├── RootEventReader.hh │ │ ├── RootEventWriter.cc │ │ ├── RootEventWriter.hh │ │ ├── SeltzerBergerReader.cc │ │ ├── SeltzerBergerReader.hh │ │ └── detail │ │ │ ├── ImportDataConverter.cc │ │ │ └── ImportDataConverter.hh │ ├── mat │ │ ├── ElementView.hh │ │ ├── IsotopeView.hh │ │ ├── MaterialData.hh │ │ ├── MaterialParams.cc │ │ ├── MaterialParams.hh │ │ ├── MaterialParamsOutput.cc │ │ ├── MaterialParamsOutput.hh │ │ ├── MaterialTrackView.hh │ │ ├── MaterialView.hh │ │ └── detail │ │ │ ├── Utils.cc │ │ │ └── Utils.hh │ ├── neutron │ │ ├── data │ │ │ ├── NeutronElasticData.hh │ │ │ └── NeutronInelasticData.hh │ │ ├── executor │ │ │ ├── ChipsNeutronElasticExecutor.hh │ │ │ └── NeutronInelasticExecutor.hh │ │ ├── interactor │ │ │ ├── ChipsNeutronElasticInteractor.hh │ │ │ ├── NeutronInelasticInteractor.hh │ │ │ └── detail │ │ │ │ ├── CascadeCollider.hh │ │ │ │ ├── CascadeParticle.hh │ │ │ │ └── MomentumTransferSampler.hh │ │ ├── model │ │ │ ├── CascadeOptions.cc │ │ │ ├── CascadeOptions.hh │ │ │ ├── CascadeOptionsIO.json.cc │ │ │ ├── CascadeOptionsIO.json.hh │ │ │ ├── ChipsNeutronElasticModel.cc │ │ │ ├── ChipsNeutronElasticModel.cu │ │ │ ├── ChipsNeutronElasticModel.hh │ │ │ ├── NeutronInelasticModel.cc │ │ │ ├── NeutronInelasticModel.cu │ │ │ ├── NeutronInelasticModel.hh │ │ │ └── detail │ │ │ │ └── NuclearZoneBuilder.hh │ │ ├── process │ │ │ ├── NeutronElasticProcess.cc │ │ │ ├── NeutronElasticProcess.hh │ │ │ ├── NeutronInelasticProcess.cc │ │ │ └── NeutronInelasticProcess.hh │ │ └── xs │ │ │ ├── NeutronElasticMicroXsCalculator.hh │ │ │ ├── NeutronInelasticMicroXsCalculator.hh │ │ │ └── NucleonNucleonXsCalculator.hh │ ├── optical │ │ ├── CoreParams.cc │ │ ├── CoreParams.hh │ │ ├── CoreState.cc │ │ ├── CoreState.hh │ │ ├── CoreTrackData.cc │ │ ├── CoreTrackData.hh │ │ ├── CoreTrackDataFwd.hh │ │ ├── CoreTrackView.hh │ │ ├── ImportedMaterials.cc │ │ ├── ImportedMaterials.hh │ │ ├── ImportedModelAdapter.cc │ │ ├── ImportedModelAdapter.hh │ │ ├── Interaction.hh │ │ ├── InteractionApplier.hh │ │ ├── MaterialData.hh │ │ ├── MaterialParams.cc │ │ ├── MaterialParams.hh │ │ ├── MaterialView.hh │ │ ├── MfpBuilder.hh │ │ ├── MieData.hh │ │ ├── Model.hh │ │ ├── ModelImporter.cc │ │ ├── ModelImporter.hh │ │ ├── OpticalCollector.cc │ │ ├── OpticalCollector.hh │ │ ├── OpticalSizes.json.hh │ │ ├── ParticleData.hh │ │ ├── ParticleTrackView.hh │ │ ├── PhysicsData.hh │ │ ├── PhysicsParams.cc │ │ ├── PhysicsParams.hh │ │ ├── PhysicsStepUtils.hh │ │ ├── PhysicsTrackView.hh │ │ ├── SimData.hh │ │ ├── SimTrackView.hh │ │ ├── TrackInitData.hh │ │ ├── TrackInitializer.hh │ │ ├── Transporter.cc │ │ ├── Transporter.hh │ │ ├── Types.cc │ │ ├── Types.hh │ │ ├── WavelengthShiftData.hh │ │ ├── action │ │ │ ├── ActionGroups.cc │ │ │ ├── ActionGroups.hh │ │ │ ├── ActionInterface.hh │ │ │ ├── ActionLauncher.device.hh │ │ │ ├── ActionLauncher.hh │ │ │ ├── AlongStepAction.cc │ │ │ ├── AlongStepAction.cu │ │ │ ├── AlongStepAction.hh │ │ │ ├── DiscreteSelectAction.cc │ │ │ ├── DiscreteSelectAction.cu │ │ │ ├── DiscreteSelectAction.hh │ │ │ ├── DiscreteSelectExecutor.hh │ │ │ ├── LocateVacanciesAction.cc │ │ │ ├── LocateVacanciesAction.hh │ │ │ ├── PreStepAction.cc │ │ │ ├── PreStepAction.cu │ │ │ ├── PreStepAction.hh │ │ │ ├── TrackSlotExecutor.hh │ │ │ ├── TrackingCutAction.cc │ │ │ ├── TrackingCutAction.cu │ │ │ ├── TrackingCutAction.hh │ │ │ └── detail │ │ │ │ ├── AlongStepExecutor.hh │ │ │ │ ├── PreStepExecutor.hh │ │ │ │ ├── PropagateExecutor.hh │ │ │ │ ├── TrackInitAlgorithms.cc │ │ │ │ ├── TrackInitAlgorithms.cu │ │ │ │ ├── TrackInitAlgorithms.hh │ │ │ │ └── TrackingCutExecutor.hh │ │ ├── detail │ │ │ ├── OpticalLaunchAction.cc │ │ │ ├── OpticalLaunchAction.hh │ │ │ └── OpticalUtils.hh │ │ ├── gen │ │ │ ├── CherenkovData.hh │ │ │ ├── CherenkovDndxCalculator.hh │ │ │ ├── CherenkovGenerator.hh │ │ │ ├── CherenkovOffload.hh │ │ │ ├── CherenkovParams.cc │ │ │ ├── CherenkovParams.hh │ │ │ ├── DirectGeneratorAction.cc │ │ │ ├── DirectGeneratorAction.cu │ │ │ ├── DirectGeneratorAction.hh │ │ │ ├── DirectGeneratorData.hh │ │ │ ├── GeneratorAction.cc │ │ │ ├── GeneratorAction.cu │ │ │ ├── GeneratorAction.hh │ │ │ ├── GeneratorBase.cc │ │ │ ├── GeneratorBase.hh │ │ │ ├── GeneratorData.hh │ │ │ ├── OffloadAction.cc │ │ │ ├── OffloadAction.cu │ │ │ ├── OffloadAction.hh │ │ │ ├── OffloadData.hh │ │ │ ├── OffloadGatherAction.cc │ │ │ ├── OffloadGatherAction.cu │ │ │ ├── OffloadGatherAction.hh │ │ │ ├── PrimaryGenerator.hh │ │ │ ├── PrimaryGeneratorAction.cc │ │ │ ├── PrimaryGeneratorAction.cu │ │ │ ├── PrimaryGeneratorAction.hh │ │ │ ├── PrimaryGeneratorData.hh │ │ │ ├── ScintillationData.hh │ │ │ ├── ScintillationGenerator.hh │ │ │ ├── ScintillationOffload.hh │ │ │ ├── ScintillationParams.cc │ │ │ ├── ScintillationParams.hh │ │ │ └── detail │ │ │ │ ├── CherenkovOffloadExecutor.hh │ │ │ │ ├── DirectGeneratorExecutor.hh │ │ │ │ ├── GeneratorAlgorithms.cc │ │ │ │ ├── GeneratorAlgorithms.cu │ │ │ │ ├── GeneratorAlgorithms.hh │ │ │ │ ├── GeneratorExecutor.hh │ │ │ │ ├── MatScintSpecInserter.hh │ │ │ │ ├── OffloadAlgorithms.cc │ │ │ │ ├── OffloadAlgorithms.cu │ │ │ │ ├── OffloadAlgorithms.hh │ │ │ │ ├── OffloadGatherTraits.hh │ │ │ │ ├── OffloadPreGatherExecutor.hh │ │ │ │ ├── OffloadPrePostGatherExecutor.hh │ │ │ │ ├── OffloadTraits.hh │ │ │ │ ├── PrimaryGeneratorExecutor.hh │ │ │ │ ├── ScintOffloadExecutor.hh │ │ │ │ └── UpdateSumExecutor.hh │ │ ├── interactor │ │ │ ├── AbsorptionInteractor.hh │ │ │ ├── MieInteractor.hh │ │ │ ├── RayleighInteractor.hh │ │ │ ├── WavelengthShiftGenerator.hh │ │ │ └── WavelengthShiftInteractor.hh │ │ ├── model │ │ │ ├── AbsorptionExecutor.hh │ │ │ ├── AbsorptionModel.cc │ │ │ ├── AbsorptionModel.cu │ │ │ ├── AbsorptionModel.hh │ │ │ ├── MieExecutor.hh │ │ │ ├── MieModel.cc │ │ │ ├── MieModel.cu │ │ │ ├── MieModel.hh │ │ │ ├── RayleighExecutor.hh │ │ │ ├── RayleighMfpCalculator.hh │ │ │ ├── RayleighModel.cc │ │ │ ├── RayleighModel.cu │ │ │ ├── RayleighModel.hh │ │ │ ├── WavelengthShiftExecutor.hh │ │ │ ├── WavelengthShiftModel.cc │ │ │ ├── WavelengthShiftModel.cu │ │ │ └── WavelengthShiftModel.hh │ │ └── surface │ │ │ ├── BoundaryAction.cc │ │ │ ├── BoundaryAction.cu │ │ │ ├── BoundaryAction.hh │ │ │ ├── GaussianRoughnessSampler.hh │ │ │ ├── SmearRoughnessSampler.hh │ │ │ ├── SurfaceModel.hh │ │ │ ├── SurfacePhysicsData.hh │ │ │ ├── SurfacePhysicsParams.cc │ │ │ ├── SurfacePhysicsParams.hh │ │ │ ├── SurfacePhysicsTrackView.hh │ │ │ ├── SurfacePhysicsUtils.hh │ │ │ ├── SurfacePhysicsView.hh │ │ │ ├── SurfaceSteppingAction.cc │ │ │ ├── SurfaceSteppingAction.hh │ │ │ ├── SurfaceTraversalView.hh │ │ │ ├── VolumeSurfaceSelector.hh │ │ │ ├── detail │ │ │ ├── BuiltinSurfaceModelBuilder.hh │ │ │ ├── InitBoundaryExecutor.hh │ │ │ └── PostBoundaryExecutor.hh │ │ │ └── model │ │ │ ├── DielectricInteractionData.hh │ │ │ ├── DielectricInteractionModel.cc │ │ │ ├── DielectricInteractionModel.cu │ │ │ ├── DielectricInteractionModel.hh │ │ │ ├── DielectricInteractor.hh │ │ │ ├── FresnelCalculator.hh │ │ │ ├── LambertianDistribution.hh │ │ │ ├── PolishedRoughnessExecutor.hh │ │ │ ├── PolishedRoughnessModel.cc │ │ │ ├── PolishedRoughnessModel.cu │ │ │ ├── PolishedRoughnessModel.hh │ │ │ ├── ReflectionFormCalculator.hh │ │ │ ├── ReflectionFormSampler.hh │ │ │ ├── SurfaceInteraction.hh │ │ │ ├── SurfaceInteractionApplier.hh │ │ │ ├── TrivialInteractionData.hh │ │ │ ├── TrivialInteractionModel.cc │ │ │ ├── TrivialInteractionModel.cu │ │ │ ├── TrivialInteractionModel.hh │ │ │ └── TrivialInteractor.hh │ ├── phys │ │ ├── Applicability.hh │ │ ├── AtomicNumber.hh │ │ ├── CutoffData.hh │ │ ├── CutoffParams.cc │ │ ├── CutoffParams.hh │ │ ├── CutoffView.hh │ │ ├── FourVector.hh │ │ ├── GeneratorCounters.hh │ │ ├── GeneratorInterface.cc │ │ ├── GeneratorInterface.hh │ │ ├── GeneratorRegistry.cc │ │ ├── GeneratorRegistry.hh │ │ ├── ImportedModelAdapter.cc │ │ ├── ImportedModelAdapter.hh │ │ ├── ImportedProcessAdapter.cc │ │ ├── ImportedProcessAdapter.hh │ │ ├── Interaction.hh │ │ ├── InteractionApplier.hh │ │ ├── InteractionUtils.hh │ │ ├── MacroXsCalculator.hh │ │ ├── Model.hh │ │ ├── PDGNumber.hh │ │ ├── ParticleData.hh │ │ ├── ParticleParams.cc │ │ ├── ParticleParams.hh │ │ ├── ParticleParamsOutput.cc │ │ ├── ParticleParamsOutput.hh │ │ ├── ParticleTrackView.hh │ │ ├── ParticleView.hh │ │ ├── PhysicsData.hh │ │ ├── PhysicsOptions.hh │ │ ├── PhysicsParams.cc │ │ ├── PhysicsParams.hh │ │ ├── PhysicsParamsOutput.cc │ │ ├── PhysicsParamsOutput.hh │ │ ├── PhysicsStepUtils.hh │ │ ├── PhysicsStepView.hh │ │ ├── PhysicsTrackView.hh │ │ ├── Primary.hh │ │ ├── PrimaryGenerator.cc │ │ ├── PrimaryGenerator.hh │ │ ├── PrimaryGeneratorOptions.cc │ │ ├── PrimaryGeneratorOptions.hh │ │ ├── PrimaryGeneratorOptionsIO.json.cc │ │ ├── PrimaryGeneratorOptionsIO.json.hh │ │ ├── Process.cc │ │ ├── Process.hh │ │ ├── ProcessBuilder.cc │ │ ├── ProcessBuilder.hh │ │ ├── RootEventSampler.cc │ │ ├── RootEventSampler.hh │ │ ├── Secondary.hh │ │ ├── SurfaceModel.cc │ │ ├── SurfaceModel.hh │ │ ├── SurfacePhysicsMapBuilder.cc │ │ ├── SurfacePhysicsMapBuilder.hh │ │ ├── SurfacePhysicsMapData.hh │ │ ├── SurfacePhysicsMapView.hh │ │ └── detail │ │ │ ├── DiscreteSelectAction.cc │ │ │ ├── DiscreteSelectAction.cu │ │ │ ├── DiscreteSelectAction.hh │ │ │ ├── DiscreteSelectExecutor.hh │ │ │ ├── EnergyMaxXsCalculator.cc │ │ │ ├── EnergyMaxXsCalculator.hh │ │ │ ├── ParticleInserter.hh │ │ │ ├── PreStepAction.cc │ │ │ ├── PreStepAction.cu │ │ │ ├── PreStepAction.hh │ │ │ ├── PreStepExecutor.hh │ │ │ ├── TrackingCutAction.cc │ │ │ ├── TrackingCutAction.cu │ │ │ ├── TrackingCutAction.hh │ │ │ └── TrackingCutExecutor.hh │ ├── random │ │ ├── ElementSelector.hh │ │ ├── IsotopeSelector.hh │ │ ├── RngReseed.cc │ │ ├── RngReseed.cu │ │ ├── RngReseed.hh │ │ ├── TabulatedElementSelector.hh │ │ └── detail │ │ │ └── RngReseedExecutor.hh │ ├── setup │ │ ├── Events.cc │ │ ├── Events.hh │ │ ├── FrameworkInput.cc │ │ ├── FrameworkInput.hh │ │ ├── Import.cc │ │ ├── Import.hh │ │ ├── Model.cc │ │ ├── Model.hh │ │ ├── Problem.cc │ │ ├── Problem.hh │ │ ├── StandaloneInput.cc │ │ ├── StandaloneInput.hh │ │ ├── System.cc │ │ └── System.hh │ ├── track │ │ ├── CoreStateCounters.hh │ │ ├── ExtendFromPrimariesAction.cc │ │ ├── ExtendFromPrimariesAction.cu │ │ ├── ExtendFromPrimariesAction.hh │ │ ├── ExtendFromSecondariesAction.cc │ │ ├── ExtendFromSecondariesAction.cu │ │ ├── ExtendFromSecondariesAction.hh │ │ ├── InitializeTracksAction.cc │ │ ├── InitializeTracksAction.cu │ │ ├── InitializeTracksAction.hh │ │ ├── SimData.hh │ │ ├── SimParams.cc │ │ ├── SimParams.hh │ │ ├── SimTrackView.hh │ │ ├── SortTracksAction.cc │ │ ├── SortTracksAction.hh │ │ ├── StatusCheckData.hh │ │ ├── StatusChecker.cc │ │ ├── StatusChecker.cu │ │ ├── StatusChecker.hh │ │ ├── TrackFunctors.hh │ │ ├── TrackInitData.hh │ │ ├── TrackInitParams.cc │ │ ├── TrackInitParams.hh │ │ ├── Utils.hh │ │ └── detail │ │ │ ├── Filler.cu │ │ │ ├── InitTracksExecutor.hh │ │ │ ├── LocateAliveExecutor.hh │ │ │ ├── ProcessPrimariesExecutor.hh │ │ │ ├── ProcessSecondariesExecutor.hh │ │ │ ├── StatusCheckExecutor.hh │ │ │ ├── TrackInitAlgorithms.cc │ │ │ ├── TrackInitAlgorithms.cu │ │ │ ├── TrackInitAlgorithms.hh │ │ │ ├── TrackSortUtils.cc │ │ │ ├── TrackSortUtils.cu │ │ │ └── TrackSortUtils.hh │ └── user │ │ ├── ActionDiagnostic.cc │ │ ├── ActionDiagnostic.cu │ │ ├── ActionDiagnostic.hh │ │ ├── ActionTimes.cc │ │ ├── ActionTimes.hh │ │ ├── DetectorSteps.cc │ │ ├── DetectorSteps.cu │ │ ├── DetectorSteps.hh │ │ ├── ParticleTallyData.cc │ │ ├── ParticleTallyData.hh │ │ ├── RootStepWriter.cc │ │ ├── RootStepWriter.hh │ │ ├── RootStepWriterIO.json.cc │ │ ├── RootStepWriterIO.json.hh │ │ ├── RootStepWriterInput.hh │ │ ├── SDData.hh │ │ ├── SDParams.cc │ │ ├── SDParams.hh │ │ ├── SimpleCalo.cc │ │ ├── SimpleCalo.hh │ │ ├── SimpleCaloData.cc │ │ ├── SimpleCaloData.hh │ │ ├── SlotDiagnostic.cc │ │ ├── SlotDiagnostic.cu │ │ ├── SlotDiagnostic.hh │ │ ├── StepCollector.cc │ │ ├── StepCollector.hh │ │ ├── StepData.hh │ │ ├── StepDiagnostic.cc │ │ ├── StepDiagnostic.cu │ │ ├── StepDiagnostic.hh │ │ ├── StepInterface.hh │ │ └── detail │ │ ├── ActionDiagnosticExecutor.hh │ │ ├── SimpleCaloExecutor.hh │ │ ├── SimpleCaloImpl.cc │ │ ├── SimpleCaloImpl.cu │ │ ├── SimpleCaloImpl.hh │ │ ├── SlotDiagnosticExecutor.hh │ │ ├── StepDiagnosticExecutor.hh │ │ ├── StepGatherAction.cc │ │ ├── StepGatherAction.cu │ │ ├── StepGatherAction.hh │ │ ├── StepGatherExecutor.hh │ │ ├── StepParams.cc │ │ ├── StepParams.hh │ │ └── StepScratchCopyExecutor.hh ├── celeritas_cmake_strings.h ├── celeritas_sys_config.h ├── celeritas_version.h ├── corecel │ ├── Assert.cc │ ├── Assert.hh │ ├── AssertIO.json.cc │ ├── AssertIO.json.hh │ ├── CMakeLists.txt │ ├── Config.cc.in │ ├── Config.hh.in │ ├── Constants.hh │ ├── DeviceRuntimeApi.hh │ ├── Macros.hh │ ├── OpaqueId.hh │ ├── OpaqueIdIO.hh │ ├── Types.cc │ ├── Types.hh │ ├── Version.cc.in │ ├── Version.hh.in │ ├── cont │ │ ├── Array.hh │ │ ├── ArrayIO.hh │ │ ├── ArrayIO.json.hh │ │ ├── Bitset.hh │ │ ├── EnumArray.hh │ │ ├── EnumClassUtils.hh │ │ ├── InitializedValue.hh │ │ ├── LabelIdMultiMap.hh │ │ ├── MiniStack.hh │ │ ├── Range.hh │ │ ├── Span.hh │ │ ├── SpanIO.hh │ │ ├── SpanIO.json.hh │ │ ├── VariantUtils.hh │ │ └── detail │ │ │ ├── RangeImpl.hh │ │ │ ├── SpanImpl.hh │ │ │ └── VariantUtilsImpl.hh │ ├── data │ │ ├── AuxInterface.cc │ │ ├── AuxInterface.hh │ │ ├── AuxParams.hh │ │ ├── AuxParamsRegistry.cc │ │ ├── AuxParamsRegistry.hh │ │ ├── AuxState.hh │ │ ├── AuxStateVec.cc │ │ ├── AuxStateVec.hh │ │ ├── Collection.hh │ │ ├── CollectionAlgorithms.hh │ │ ├── CollectionBuilder.hh │ │ ├── CollectionMirror.hh │ │ ├── CollectionStateStore.hh │ │ ├── Copier.cc │ │ ├── Copier.hh │ │ ├── DedupeCollectionBuilder.hh │ │ ├── DeviceAllocation.cc │ │ ├── DeviceAllocation.hh │ │ ├── DeviceVector.hh │ │ ├── Filler.cu │ │ ├── Filler.device.t.hh │ │ ├── Filler.hh │ │ ├── HyperslabIndexer.hh │ │ ├── LdgIterator.hh │ │ ├── LdgTraits.hh │ │ ├── ObserverPtr.device.hh │ │ ├── ObserverPtr.hh │ │ ├── ParamsDataInterface.hh │ │ ├── PinnedAllocator.hh │ │ ├── Ref.hh │ │ ├── StackAllocator.hh │ │ ├── StackAllocatorData.hh │ │ ├── StreamStore.hh │ │ └── detail │ │ │ ├── CollectionImpl.hh │ │ │ ├── DisabledStorage.hh │ │ │ ├── FillInvalid.hh │ │ │ ├── HyperslabIndexerImpl.hh │ │ │ ├── PinnedAllocatorImpl.cc │ │ │ ├── PinnedAllocatorImpl.hh │ │ │ └── RefImpl.hh │ ├── device_runtime_api.h │ ├── grid │ │ ├── FindInterp.hh │ │ ├── GridTypes.cc │ │ ├── GridTypes.hh │ │ ├── GridTypesIO.json.cc │ │ ├── GridTypesIO.json.hh │ │ ├── Interpolator.hh │ │ ├── NonuniformGrid.hh │ │ ├── NonuniformGridData.hh │ │ ├── SplineDerivCalculator.cc │ │ ├── SplineDerivCalculator.hh │ │ ├── SplineInterpolator.hh │ │ ├── TwodGridCalculator.hh │ │ ├── TwodGridData.hh │ │ ├── TwodSubgridCalculator.hh │ │ ├── UniformGrid.hh │ │ ├── UniformGridData.hh │ │ ├── VectorUtils.cc │ │ ├── VectorUtils.hh │ │ └── detail │ │ │ ├── GridAccessor.hh │ │ │ └── InterpolatorTraits.hh │ ├── inp │ │ ├── Distributions.hh │ │ └── Grid.hh │ ├── io │ │ ├── BuildOutput.cc │ │ ├── BuildOutput.hh │ │ ├── ColorUtils.cc │ │ ├── ColorUtils.hh │ │ ├── EnumStringMapper.hh │ │ ├── ExceptionOutput.cc │ │ ├── ExceptionOutput.hh │ │ ├── FileOrConsole.hh │ │ ├── Join.hh │ │ ├── JsonPimpl.hh │ │ ├── JsonUtils.json.cc │ │ ├── JsonUtils.json.hh │ │ ├── Label.cc │ │ ├── Label.hh │ │ ├── LabelIO.json.hh │ │ ├── LogContextException.cc │ │ ├── LogContextException.hh │ │ ├── LogHandlers.cc │ │ ├── LogHandlers.hh │ │ ├── Logger.cc │ │ ├── Logger.hh │ │ ├── LoggerTypes.cc │ │ ├── LoggerTypes.hh │ │ ├── OutputInterface.cc │ │ ├── OutputInterface.hh │ │ ├── OutputInterfaceAdapter.hh │ │ ├── OutputRegistry.cc │ │ ├── OutputRegistry.hh │ │ ├── Repr.hh │ │ ├── ScopedStreamFormat.hh │ │ ├── ScopedStreamRedirect.cc │ │ ├── ScopedStreamRedirect.hh │ │ ├── ScopedTimeAndRedirect.cc │ │ ├── ScopedTimeAndRedirect.hh │ │ ├── ScopedTimeLog.hh │ │ ├── StreamableVariant.hh │ │ ├── StringEnumMapper.hh │ │ ├── StringUtils.cc │ │ ├── StringUtils.hh │ │ └── detail │ │ │ ├── EnumStringMapperImpl.cc │ │ │ ├── EnumStringMapperImpl.hh │ │ │ ├── Joined.hh │ │ │ ├── LoggerMessage.cc │ │ │ ├── LoggerMessage.hh │ │ │ ├── NullLoggerMessage.hh │ │ │ ├── ReprImpl.cc │ │ │ └── ReprImpl.hh │ ├── math │ │ ├── Algorithms.hh │ │ ├── ArrayOperators.hh │ │ ├── ArraySoftUnit.hh │ │ ├── ArrayUtils.hh │ │ ├── Atomics.hh │ │ ├── BisectionRootFinder.hh │ │ ├── Constant.hh │ │ ├── FerrariSolver.hh │ │ ├── HashUtils.hh │ │ ├── IllinoisRootFinder.hh │ │ ├── Integrator.hh │ │ ├── NumericLimits.hh │ │ ├── PdfUtils.hh │ │ ├── PolyEvaluator.hh │ │ ├── Quantity.hh │ │ ├── QuantityIO.hh │ │ ├── QuantityIO.json.hh │ │ ├── RegulaFalsiRootFinder.hh │ │ ├── SoftEqual.hh │ │ ├── TridiagonalSolver.cc │ │ ├── TridiagonalSolver.hh │ │ ├── Turn.hh │ │ ├── UnitUtils.hh │ │ └── detail │ │ │ ├── AlgorithmsImpl.hh │ │ │ ├── ArrayUtilsImpl.hh │ │ │ ├── FnvHasher.hh │ │ │ ├── QuantityImpl.hh │ │ │ ├── Sincospi.hh │ │ │ └── SoftEqualTraits.hh │ ├── random │ │ ├── Types.cc │ │ ├── Types.hh │ │ ├── data │ │ │ ├── CuHipRngData.cc │ │ │ ├── CuHipRngData.hh │ │ │ ├── DistributionData.hh │ │ │ ├── RanluxppRngData.cc │ │ │ ├── RanluxppRngData.hh │ │ │ ├── RanluxppTypes.hh │ │ │ ├── RngData.hh │ │ │ ├── XorwowRngData.cc │ │ │ ├── XorwowRngData.hh │ │ │ └── detail │ │ │ │ ├── CuHipRngStateInit.cc │ │ │ │ ├── CuHipRngStateInit.cu │ │ │ │ ├── CuHipRngStateInit.hh │ │ │ │ ├── MockRand.hh │ │ │ │ ├── RanluxppRngStateInit.cc │ │ │ │ ├── RanluxppRngStateInit.cu │ │ │ │ └── RanluxppRngStateInit.hh │ │ ├── distribution │ │ │ ├── BernoulliDistribution.hh │ │ │ ├── DeltaDistribution.hh │ │ │ ├── DistributionInserter.cc │ │ │ ├── DistributionInserter.hh │ │ │ ├── DistributionTypeTraits.hh │ │ │ ├── DistributionVisitor.hh │ │ │ ├── ExponentialDistribution.hh │ │ │ ├── GammaDistribution.hh │ │ │ ├── GenerateCanonical.hh │ │ │ ├── InverseSquareDistribution.hh │ │ │ ├── IsotropicDistribution.hh │ │ │ ├── NormalDistribution.hh │ │ │ ├── PoissonDistribution.hh │ │ │ ├── PowerDistribution.hh │ │ │ ├── RadialDistribution.hh │ │ │ ├── ReciprocalDistribution.hh │ │ │ ├── RejectionSampler.hh │ │ │ ├── Selector.hh │ │ │ ├── UniformBoxDistribution.hh │ │ │ ├── UniformRealDistribution.hh │ │ │ └── detail │ │ │ │ └── GenerateCanonical32.hh │ │ ├── engine │ │ │ ├── CachedRngEngine.hh │ │ │ ├── CuHipRngEngine.hh │ │ │ ├── RanluxppRngEngine.hh │ │ │ ├── RngEngine.hh │ │ │ ├── XorwowRngEngine.hh │ │ │ └── detail │ │ │ │ └── RanluxppImpl.hh │ │ └── params │ │ │ ├── CuHipRngParams.cc │ │ │ ├── CuHipRngParams.hh │ │ │ ├── RanluxppRngParams.cc │ │ │ ├── RanluxppRngParams.hh │ │ │ ├── RngParams.hh │ │ │ ├── RngParamsFwd.hh │ │ │ ├── XorwowRngParams.cc │ │ │ └── XorwowRngParams.hh │ └── sys │ │ ├── ActionGroups.hh │ │ ├── ActionGroups.t.hh │ │ ├── ActionInterface.cc │ │ ├── ActionInterface.hh │ │ ├── ActionRegistry.cc │ │ ├── ActionRegistry.hh │ │ ├── ActionRegistryOutput.cc │ │ ├── ActionRegistryOutput.hh │ │ ├── Device.cc │ │ ├── Device.hh │ │ ├── DeviceIO.json.cc │ │ ├── DeviceIO.json.hh │ │ ├── Environment.cc │ │ ├── Environment.hh │ │ ├── EnvironmentIO.json.hh │ │ ├── KernelAttributes.hh │ │ ├── KernelLauncher.device.hh │ │ ├── KernelLauncher.hh │ │ ├── KernelParamCalculator.device.cc │ │ ├── KernelParamCalculator.device.hh │ │ ├── KernelRegistry.cc │ │ ├── KernelRegistry.hh │ │ ├── KernelRegistryIO.json.cc │ │ ├── KernelRegistryIO.json.hh │ │ ├── KernelTraits.hh │ │ ├── MemRegistry.cc │ │ ├── MemRegistry.hh │ │ ├── MemRegistryIO.json.cc │ │ ├── MemRegistryIO.json.hh │ │ ├── MpiCommunicator.cc │ │ ├── MpiCommunicator.hh │ │ ├── MpiOperations.hh │ │ ├── MultiExceptionHandler.cc │ │ ├── MultiExceptionHandler.hh │ │ ├── ScopedLimitSaver.cuda.cc │ │ ├── ScopedLimitSaver.hh │ │ ├── ScopedMem.cc │ │ ├── ScopedMem.hh │ │ ├── ScopedMpiInit.cc │ │ ├── ScopedMpiInit.hh │ │ ├── ScopedProfiling.cc │ │ ├── ScopedProfiling.cuda.cc │ │ ├── ScopedProfiling.hh │ │ ├── ScopedProfiling.hip.cc │ │ ├── ScopedSignalHandler.cc │ │ ├── ScopedSignalHandler.hh │ │ ├── Stopwatch.hh │ │ ├── Stream.cu │ │ ├── Stream.hh │ │ ├── ThreadId.hh │ │ ├── Thrust.device.hh │ │ ├── TraceCounter.hh │ │ ├── TracingSession.hh │ │ ├── TracingSession.perfetto.cc │ │ ├── TypeDemangler.cc │ │ ├── TypeDemangler.hh │ │ ├── Version.cc │ │ ├── Version.hh │ │ └── detail │ │ ├── ActionRegistryImpl.hh │ │ ├── AsyncMemoryResource.cu │ │ ├── AsyncMemoryResource.device.hh │ │ ├── KernelLauncherImpl.device.hh │ │ ├── KernelTraitsImpl.hh │ │ ├── MpiCommunicatorImpl.hh │ │ ├── MpiType.hh │ │ ├── NvtxUtils.cc │ │ ├── NvtxUtils.hh │ │ ├── TraceCounterImpl.cuda.cc │ │ ├── TraceCounterImpl.hh │ │ ├── TraceCounterImpl.perfetto.cc │ │ └── TrackEvent.perfetto.hh ├── geocel │ ├── BoundingBox.hh │ ├── BoundingBoxIO.json.cc │ ├── BoundingBoxIO.json.hh │ ├── CMakeLists.txt │ ├── GeantGdmlLoader.cc │ ├── GeantGdmlLoader.hh │ ├── GeantGeoParams.cc │ ├── GeantGeoParams.hh │ ├── GeantGeoUtils.cc │ ├── GeantGeoUtils.hh │ ├── GeantUtils.cc │ ├── GeantUtils.hh │ ├── GeoInterface.cc │ ├── GeoParamsInterface.hh │ ├── GeoParamsOutput.cc │ ├── GeoParamsOutput.hh │ ├── GeoTrackInterface.hh │ ├── GeoTraits.hh │ ├── ScopedGeantExceptionHandler.cc │ ├── ScopedGeantExceptionHandler.hh │ ├── ScopedGeantLogger.cc │ ├── ScopedGeantLogger.hh │ ├── SurfaceData.hh │ ├── SurfaceParams.cc │ ├── SurfaceParams.hh │ ├── Types.hh │ ├── VolumeCollectionBuilder.hh │ ├── VolumeIdBuilder.cc │ ├── VolumeIdBuilder.hh │ ├── VolumeParams.cc │ ├── VolumeParams.hh │ ├── VolumeSurfaceView.hh │ ├── VolumeToString.cc │ ├── VolumeToString.hh │ ├── VolumeVisitor.hh │ ├── detail │ │ ├── GeantVolumeInstanceMapper.cc │ │ ├── GeantVolumeInstanceMapper.hh │ │ ├── LengthUnits.hh │ │ ├── MakeLabelVector.hh │ │ ├── SurfaceParamsBuilder.cc │ │ └── SurfaceParamsBuilder.hh │ ├── g4 │ │ ├── Convert.hh │ │ ├── GeantGeoData.hh │ │ ├── GeantGeoTrackView.hh │ │ ├── GeantGeoTraits.hh │ │ ├── GeantNavHistoryUpdater.cc │ │ ├── GeantNavHistoryUpdater.hh │ │ ├── RaytraceImager.cc │ │ ├── RaytraceImager.hh │ │ ├── Repr.hh │ │ ├── SafetyImager.cc │ │ └── detail │ │ │ ├── GeantGeoNavCollection.cc │ │ │ └── GeantGeoNavCollection.hh │ ├── inp │ │ └── Model.hh │ ├── rasterize │ │ ├── Color.cc │ │ ├── Color.hh │ │ ├── Image.cc │ │ ├── Image.hh │ │ ├── ImageData.hh │ │ ├── ImageIO.json.cc │ │ ├── ImageIO.json.hh │ │ ├── ImageInterface.hh │ │ ├── ImageLineView.hh │ │ ├── ImageWriter.hh │ │ ├── ImageWriter.libpng.cc │ │ ├── RaytraceImager.device.t.hh │ │ ├── RaytraceImager.hh │ │ ├── RaytraceImager.nocuda.t.hh │ │ ├── RaytraceImager.t.hh │ │ ├── Raytracer.hh │ │ ├── SafetyImager.hh │ │ ├── SafetyImager.t.hh │ │ └── detail │ │ │ ├── RaytraceExecutor.hh │ │ │ └── SafetyCalculator.hh │ └── vg │ │ ├── RaytraceImager.cc │ │ ├── RaytraceImager.cu │ │ ├── RaytraceImager.hh │ │ ├── SafetyImager.cc │ │ ├── VecgeomData.cc │ │ ├── VecgeomData.hh │ │ ├── VecgeomGeoTraits.hh │ │ ├── VecgeomParams.cc │ │ ├── VecgeomParams.hh │ │ ├── VecgeomParamsOutput.cc │ │ ├── VecgeomParamsOutput.hh │ │ ├── VecgeomTrackView.hh │ │ ├── VecgeomTypes.hh │ │ └── detail │ │ ├── BVHNavigator.hh │ │ ├── ScopedVgNavState.hh │ │ ├── SolidsNavigator.hh │ │ ├── SurfNavigator.hh │ │ ├── VecgeomCompatibility.hh │ │ ├── VecgeomNavCollection.cc │ │ ├── VecgeomNavCollection.hh │ │ ├── VecgeomSetup.cu │ │ ├── VecgeomSetup.hh │ │ └── VgNavStateWrapper.hh └── orange │ ├── BoundingBoxUtils.cc │ ├── BoundingBoxUtils.hh │ ├── CMakeLists.txt │ ├── Debug.cc │ ├── Debug.hh │ ├── DebugIO.json.cc │ ├── DebugIO.json.hh │ ├── LevelStateAccessor.hh │ ├── MatrixUtils.cc │ ├── MatrixUtils.hh │ ├── OrangeData.hh │ ├── OrangeGeoTraits.hh │ ├── OrangeInput.hh │ ├── OrangeInputIO.json.cc │ ├── OrangeInputIO.json.hh │ ├── OrangeParams.cc │ ├── OrangeParams.hh │ ├── OrangeParamsOutput.cc │ ├── OrangeParamsOutput.hh │ ├── OrangeTrackView.hh │ ├── OrangeTypes.cc │ ├── OrangeTypes.hh │ ├── OrangeTypesIO.json.cc │ ├── OrangeTypesIO.json.hh │ ├── RaytraceImager.cc │ ├── RaytraceImager.cu │ ├── RaytraceImager.hh │ ├── SafetyImager.cc │ ├── SenseUtils.hh │ ├── detail │ ├── BIHBuilder.cc │ ├── BIHBuilder.hh │ ├── BIHData.hh │ ├── BIHEnclosingVolFinder.hh │ ├── BIHIntersectingVolFinder.hh │ ├── BIHPartitioner.cc │ ├── BIHPartitioner.hh │ ├── BIHUtils.hh │ ├── BIHView.hh │ ├── DepthCalculator.cc │ ├── DepthCalculator.hh │ ├── LogicUtils.cc │ ├── LogicUtils.hh │ ├── OrangeInputIOImpl.json.cc │ ├── OrangeInputIOImpl.json.hh │ ├── OrientedBoundingZone.hh │ ├── RectArrayInserter.cc │ ├── RectArrayInserter.hh │ ├── SurfacesRecordBuilder.cc │ ├── SurfacesRecordBuilder.hh │ ├── TransformRecordInserter.hh │ ├── UnitInserter.cc │ ├── UnitInserter.hh │ ├── UniverseIndexer.hh │ ├── UniverseInserter.cc │ └── UniverseInserter.hh │ ├── g4org │ ├── Converter.cc │ ├── Converter.hh │ ├── LogicalVolumeConverter.cc │ ├── LogicalVolumeConverter.hh │ ├── PhysicalVolumeConverter.cc │ ├── PhysicalVolumeConverter.hh │ ├── ProtoConstructor.cc │ ├── ProtoConstructor.hh │ ├── Scaler.hh │ ├── SolidConverter.cc │ ├── SolidConverter.hh │ ├── Transformer.hh │ └── Volume.hh │ ├── inp │ ├── IO.json.cc │ ├── IO.json.hh │ └── Import.hh │ ├── orangeinp │ ├── CsgObject.cc │ ├── CsgObject.hh │ ├── CsgTree.cc │ ├── CsgTree.hh │ ├── CsgTreeIO.json.cc │ ├── CsgTreeIO.json.hh │ ├── CsgTreeUtils.cc │ ├── CsgTreeUtils.hh │ ├── CsgTypes.cc │ ├── CsgTypes.hh │ ├── InputBuilder.cc │ ├── InputBuilder.hh │ ├── IntersectRegion.cc │ ├── IntersectRegion.hh │ ├── IntersectSurfaceBuilder.cc │ ├── IntersectSurfaceBuilder.hh │ ├── ObjectIO.json.cc │ ├── ObjectIO.json.hh │ ├── ObjectInterface.cc │ ├── ObjectInterface.hh │ ├── PolySolid.cc │ ├── PolySolid.hh │ ├── ProtoInterface.cc │ ├── ProtoInterface.hh │ ├── RevolvedPolygon.cc │ ├── RevolvedPolygon.hh │ ├── ScaleUtils.cc │ ├── ScaleUtils.hh │ ├── Shape.cc │ ├── Shape.hh │ ├── Solid.cc │ ├── Solid.hh │ ├── StackedExtrudedPolygon.cc │ ├── StackedExtrudedPolygon.hh │ ├── Transformed.cc │ ├── Transformed.hh │ ├── Truncated.cc │ ├── Truncated.hh │ ├── UnitProto.cc │ ├── UnitProto.hh │ └── detail │ │ ├── BoundingZone.cc │ │ ├── BoundingZone.hh │ │ ├── BuildIntersectRegion.cc │ │ ├── BuildIntersectRegion.hh │ │ ├── ConvexHullFinder.hh │ │ ├── CsgLogicUtils.hh │ │ ├── CsgUnit.hh │ │ ├── CsgUnitBuilder.cc │ │ ├── CsgUnitBuilder.hh │ │ ├── DeMorganSimplifier.cc │ │ ├── DeMorganSimplifier.hh │ │ ├── InfixStringBuilder.hh │ │ ├── InternalSurfaceFlagger.cc │ │ ├── InternalSurfaceFlagger.hh │ │ ├── IntersectSurfaceState.cc │ │ ├── IntersectSurfaceState.hh │ │ ├── LocalSurfaceInserter.cc │ │ ├── LocalSurfaceInserter.hh │ │ ├── NegatedSurfaceClipper.hh │ │ ├── NodeReplacer.hh │ │ ├── NodeSimplifier.cc │ │ ├── NodeSimplifier.hh │ │ ├── PolygonUtils.hh │ │ ├── ProtoBuilder.cc │ │ ├── ProtoBuilder.hh │ │ ├── ProtoMap.cc │ │ ├── ProtoMap.hh │ │ ├── SenseEvaluator.cc │ │ ├── SenseEvaluator.hh │ │ ├── SurfaceGridHash.cc │ │ ├── SurfaceGridHash.hh │ │ ├── SurfaceHashPoint.hh │ │ ├── TransformInserter.cc │ │ ├── TransformInserter.hh │ │ ├── VolumeBuilder.cc │ │ └── VolumeBuilder.hh │ ├── surf │ ├── ConeAligned.cc │ ├── ConeAligned.hh │ ├── CylAligned.cc │ ├── CylAligned.hh │ ├── CylCentered.hh │ ├── FaceNamer.cc │ ├── FaceNamer.hh │ ├── GeneralQuadric.cc │ ├── GeneralQuadric.hh │ ├── Involute.cc │ ├── Involute.hh │ ├── LocalSurfaceVisitor.hh │ ├── Plane.cc │ ├── Plane.hh │ ├── PlaneAligned.cc │ ├── PlaneAligned.hh │ ├── RecursiveSimplifier.hh │ ├── SimpleQuadric.cc │ ├── SimpleQuadric.hh │ ├── SoftSurfaceEqual.cc │ ├── SoftSurfaceEqual.hh │ ├── Sphere.cc │ ├── Sphere.hh │ ├── SphereCentered.hh │ ├── SurfaceClipper.cc │ ├── SurfaceClipper.hh │ ├── SurfaceFwd.hh │ ├── SurfaceIO.cc │ ├── SurfaceIO.hh │ ├── SurfaceSimplifier.cc │ ├── SurfaceSimplifier.hh │ ├── SurfaceTypeTraits.hh │ ├── VariantSurface.cc │ ├── VariantSurface.hh │ └── detail │ │ ├── AllSurfaces.hh │ │ ├── InvolutePoint.hh │ │ ├── InvoluteSolver.hh │ │ ├── QuadraticSolver.hh │ │ ├── QuadricConeConverter.hh │ │ ├── QuadricCylConverter.hh │ │ ├── QuadricPlaneConverter.hh │ │ ├── QuadricSphereConverter.hh │ │ ├── RecursiveSimplifierImpl.hh │ │ ├── SurfaceTransformer.cc │ │ ├── SurfaceTransformer.hh │ │ ├── SurfaceTranslator.cc │ │ └── SurfaceTranslator.hh │ ├── transform │ ├── NoTransformation.hh │ ├── SignedPermutation.cc │ ├── SignedPermutation.hh │ ├── TransformHasher.cc │ ├── TransformHasher.hh │ ├── TransformIO.cc │ ├── TransformIO.hh │ ├── TransformSimplifier.cc │ ├── TransformSimplifier.hh │ ├── TransformTypeTraits.hh │ ├── TransformVisitor.hh │ ├── Transformation.cc │ ├── Transformation.hh │ ├── Translation.hh │ ├── VariantTransform.cc │ ├── VariantTransform.hh │ └── detail │ │ ├── TransformTransformer.hh │ │ └── TransformTranslator.hh │ └── univ │ ├── RectArrayTracker.hh │ ├── SimpleUnitTracker.hh │ ├── TrackerVisitor.hh │ ├── UnivTypeTraits.hh │ ├── VolumeView.hh │ └── detail │ ├── InfixEvaluator.hh │ ├── LogicEvaluator.hh │ ├── LogicStack.hh │ ├── RaggedRightIndexer.hh │ ├── SenseCalculator.hh │ ├── SurfaceFunctors.hh │ ├── Types.hh │ └── Utils.hh └── test ├── .clang-tidy ├── AssertionHelper.cc ├── AssertionHelper.hh ├── CMakeLists.txt ├── JsonComparer.test.cc ├── PersistentSP.hh ├── Test.cc ├── Test.hh ├── TestMacros.hh ├── TestMacros.test.cc ├── TestMain.hh ├── accel ├── CMakeLists.txt ├── ExceptionConverter.test.cc ├── HepMC3PrimaryGenerator.test.cc ├── IntegrationTestBase.cc ├── IntegrationTestBase.hh ├── RZMapMagneticField.test.cc ├── ShimSensitiveDetector.hh ├── TrackingManagerIntegration.test.cc └── UserActionIntegration.test.cc ├── celeritas ├── CMakeLists.txt ├── Constants.test.cc ├── CoreGeoTestBase.hh ├── GeantTestBase.cc ├── GeantTestBase.hh ├── GlobalTestBase.cc ├── GlobalTestBase.hh ├── ImportedDataTestBase.cc ├── ImportedDataTestBase.hh ├── InvalidOrangeTestBase.cc ├── InvalidOrangeTestBase.hh ├── LArSphereBase.hh ├── LeadBoxTestBase.hh ├── MockTestBase.cc ├── MockTestBase.hh ├── OneSteelSphereBase.hh ├── OnlyCoreTestBase.hh ├── OnlyGeoTestBase.hh ├── RootTestBase.cc ├── RootTestBase.hh ├── SimpleCmsTestBase.hh ├── SimpleTestBase.cc ├── SimpleTestBase.hh ├── TestEm15Base.hh ├── TestEm3Base.hh ├── Units.test.cc ├── data │ ├── au-tr-pr-19.dat │ ├── br29 │ ├── cms-tiny.field.json │ ├── el2 │ ├── el29 │ ├── event-novtx.hepmc3 │ ├── event-variety.hepmc3 │ ├── fl-tr-pr-19.dat │ ├── four-steel-slabs.geant.json │ ├── four-steel-slabs.root │ ├── four-steel-slabs.root-dump.json │ ├── gamma-nucl │ │ ├── inel74 │ │ ├── inel8 │ │ └── inel82 │ ├── inel2 │ ├── inel29 │ ├── pe-cs-19.dat │ ├── pe-high-19.dat │ ├── pe-le-cs-19.dat │ ├── pe-low-19.dat │ ├── pe-ss-cs-19.dat │ ├── simple-cms.geant.json │ └── simple-cms.root ├── decay │ └── MuDecay.test.cc ├── em │ ├── BetheBloch.test.cc │ ├── BetheHeitler.test.cc │ ├── BraggICRU73QO.test.cc │ ├── CoulombScattering.test.cc │ ├── EPlusGG.test.cc │ ├── GammaNuclear.test.cc │ ├── KleinNishina.test.cc │ ├── LivermorePE.test.cc │ ├── MollerBhabha.test.cc │ ├── MscTestBase.cc │ ├── MscTestBase.hh │ ├── MuBetheBloch.test.cc │ ├── MuBremsstrahlung.test.cc │ ├── MuPairProduction.test.cc │ ├── Rayleigh.test.cc │ ├── RelativisticBrem.test.cc │ ├── SeltzerBerger.test.cc │ ├── UrbanMsc.test.cc │ ├── WentzelVIMsc.test.cc │ ├── distribution │ │ ├── EnergyLossHelper.test.cc │ │ ├── MuAngularDistribution.test.cc │ │ └── TsaiUrbanDistribution.test.cc │ └── xs │ │ ├── NuclearFormFactors.test.cc │ │ └── ScreeningFunctions.test.cc ├── ext │ ├── GeantImporter.test.cc │ ├── GeantSd.test.cc │ ├── RootImporter.test.cc │ ├── RootJsonDumper.test.cc │ ├── SDTestBase.cc │ ├── SDTestBase.hh │ ├── SimpleSensitiveDetector.cc │ ├── SimpleSensitiveDetector.hh │ └── detail │ │ ├── HitProcessor.test.cc │ │ ├── LevelTouchableUpdater.test.cc │ │ ├── NaviTouchableUpdater.test.cc │ │ └── TrackProcessor.test.cc ├── field │ ├── CMSParameterizedField.hh │ ├── DiagnosticIntegrator.hh │ ├── FieldPropagator.test.cc │ ├── FieldSubstepper.test.cc │ ├── FieldTestBase.cc │ ├── FieldTestBase.hh │ ├── FieldTestParams.hh │ ├── Fields.test.cc │ ├── Fields.test.cu │ ├── Fields.test.hh │ ├── Integrators.test.cc │ ├── LinearPropagator.test.cc │ └── MagFieldEquation.test.cc ├── geo │ ├── GeoMaterial.test.cc │ ├── Geometry.test.cc │ ├── HeuristicGeoData.hh │ ├── HeuristicGeoExecutor.hh │ ├── HeuristicGeoTestBase.cc │ ├── HeuristicGeoTestBase.cu │ └── HeuristicGeoTestBase.hh ├── global │ ├── AlongStep.test.cc │ ├── AlongStepTestBase.cc │ ├── AlongStepTestBase.hh │ ├── DummyAction.cc │ ├── DummyAction.hh │ ├── KernelContextException.test.cc │ ├── Stepper.test.cc │ ├── StepperGeant.test.cc │ ├── StepperTestBase.cc │ └── StepperTestBase.hh ├── grid │ ├── CalculatorTestBase.cc │ ├── CalculatorTestBase.hh │ ├── ElementCdfCalculator.test.cc │ ├── GridIdFinder.test.cc │ ├── GridInserter.test.cc │ ├── InverseCdfFinder.test.cc │ ├── InverseRangeCalculator.test.cc │ ├── NonuniformGridBuilder.test.cc │ ├── NonuniformGridCalculator.test.cc │ ├── NonuniformGridInserter.test.cc │ ├── RangeCalculator.test.cc │ ├── RangeGridCalculator.test.cc │ ├── SplineCalculator.test.cc │ ├── UniformLogGridCalculator.test.cc │ └── XsCalculator.test.cc ├── io │ ├── EventIO.test.cc │ ├── EventIOTestBase.cc │ ├── EventIOTestBase.hh │ ├── ImportUnits.test.cc │ ├── JsonEventIO.test.cc │ ├── RootEventIO.test.cc │ └── SeltzerBergerReader.test.cc ├── mat │ ├── Material.test.cc │ ├── Material.test.cu │ ├── Material.test.hh │ └── MaterialTestBase.hh ├── neutron │ ├── NeutronElastic.test.cc │ ├── NeutronInelastic.test.cc │ ├── NeutronTestBase.cc │ └── NeutronTestBase.hh ├── optical │ ├── Absorption.test.cc │ ├── Cherenkov.test.cc │ ├── Fresnel.test.cc │ ├── Generator.test.cc │ ├── ImportedMaterials.test.cc │ ├── ImportedModelAdapter.test.cc │ ├── InteractorHostTestBase.cc │ ├── InteractorHostTestBase.hh │ ├── MfpBuilder.test.cc │ ├── Mie.test.cc │ ├── ModelImporter.test.cc │ ├── OpticalCollector.test.cc │ ├── OpticalMockModels.hh │ ├── OpticalMockTestBase.cc │ ├── OpticalMockTestBase.hh │ ├── OpticalTestBase.cc │ ├── OpticalTestBase.hh │ ├── OpticalUtils.test.cc │ ├── Physics.test.cc │ ├── Rayleigh.test.cc │ ├── RayleighMfpCalculator.test.cc │ ├── ReflectionFormSampler.test.cc │ ├── RoughnessCalculator.test.cc │ ├── Scintillation.test.cc │ ├── SurfacePhysics.test.cc │ ├── SurfacePhysicsIntegration.test.cc │ ├── SurfacePhysicsUtils.test.cc │ ├── TrivialSurfaceInteractor.test.cc │ ├── ValidationUtils.cc │ ├── ValidationUtils.hh │ ├── VolumeSurfaceSelector.test.cc │ ├── WavelengthShift.test.cc │ └── detail │ │ └── ValidationUtilsImpl.hh ├── phys │ ├── CutoffParams.test.cc │ ├── FourVector.test.cc │ ├── InteractionIO.cc │ ├── InteractionIO.hh │ ├── InteractionUtils.test.cc │ ├── InteractorHostTestBase.cc │ ├── InteractorHostTestBase.hh │ ├── MockModel.cc │ ├── MockModel.hh │ ├── MockProcess.cc │ ├── MockProcess.hh │ ├── Particle.test.cc │ ├── Particle.test.cu │ ├── Particle.test.hh │ ├── Physics.test.cc │ ├── Physics.test.cu │ ├── Physics.test.hh │ ├── PhysicsStepUtils.test.cc │ ├── PrimaryGenerator.test.cc │ ├── ProcessBuilder.test.cc │ ├── SecondaryIO.cc │ ├── SecondaryIO.hh │ └── SurfacePhysicsMap.test.cc ├── random │ ├── ElementSelector.test.cc │ ├── IsotopeSelector.test.cc │ └── RngReseed.test.cc ├── track │ ├── MockInteractAction.cc │ ├── MockInteractAction.cu │ ├── MockInteractAction.hh │ ├── MockInteractData.hh │ ├── MockInteractExecutor.hh │ ├── Sim.test.cc │ ├── StatusChecker.test.cc │ ├── TrackInit.test.cc │ └── TrackSort.test.cc └── user │ ├── CaloTestBase.cc │ ├── CaloTestBase.hh │ ├── DetectorSteps.test.cc │ ├── Diagnostic.test.cc │ ├── DiagnosticTestBase.cc │ ├── DiagnosticTestBase.hh │ ├── ExampleInstanceCalo.cc │ ├── ExampleInstanceCalo.hh │ ├── ExampleMctruth.cc │ ├── ExampleMctruth.hh │ ├── MctruthTestBase.cc │ ├── MctruthTestBase.hh │ ├── SDParams.test.cc │ ├── SimpleLoopTestBase.cc │ ├── SimpleLoopTestBase.hh │ ├── SlotDiagnostic.test.cc │ └── StepCollector.test.cc ├── celeritas_test.hh ├── celeritas_test_config.h.in ├── corecel ├── Assert.test.cc ├── CMakeLists.txt ├── OpaqueId.test.cc ├── OpaqueIdUtils.hh ├── ScopedLogStorer.cc ├── ScopedLogStorer.hh ├── StringSimplifier.cc ├── StringSimplifier.hh ├── StringSimplifier.test.cc ├── cont │ ├── Array.test.cc │ ├── Bitset.test.cc │ ├── InitializedValue.test.cc │ ├── LabelIdMultiMap.test.cc │ ├── LabelIdMultiMapUtils.hh │ ├── Range.test.cc │ ├── Range.test.cu │ ├── Range.test.hh │ ├── Span.test.cc │ └── VariantUtils.test.cc ├── data │ ├── AuxInterface.test.cc │ ├── AuxMockData.hh │ ├── AuxMockParams.cc │ ├── AuxMockParams.hh │ ├── Collection.test.cc │ ├── Collection.test.cu │ ├── Collection.test.hh │ ├── Copier.test.cc │ ├── DeviceAllocation.test.cc │ ├── DeviceVector.test.cc │ ├── Filler.test.cc │ ├── HyperslabIndexer.test.cc │ ├── LdgIterator.test.cc │ ├── ObserverPtr.test.cc │ ├── ObserverPtr.test.cu │ ├── ObserverPtr.test.hh │ ├── StackAllocator.test.cc │ ├── StackAllocator.test.cu │ └── StackAllocator.test.hh ├── grid │ ├── FindInterp.test.cc │ ├── Interpolator.test.cc │ ├── NonuniformGrid.test.cc │ ├── SplineDerivCalculator.test.cc │ ├── SplineInterpolator.test.cc │ ├── TwodGridCalculator.test.cc │ ├── UniformGrid.test.cc │ └── VectorUtils.test.cc ├── io │ ├── EnumStringMapper.test.cc │ ├── HexRepr.hh │ ├── Join.test.cc │ ├── Label.test.cc │ ├── Logger.test.cc │ ├── OutputRegistry.test.cc │ ├── Repr.test.cc │ ├── ScopedStreamRedirect.test.cc │ ├── StringEnumMapper.test.cc │ └── StringUtils.test.cc ├── math │ ├── Algorithms.test.cc │ ├── Algorithms.test.cu │ ├── Algorithms.test.hh │ ├── ArrayOperators.test.cc │ ├── ArrayUtils.test.cc │ ├── BisectionRootFinder.test.cc │ ├── Constant.test.cc │ ├── DiagnosticRealFunc.hh │ ├── HashUtils.test.cc │ ├── IllinoisRootFinder.test.cc │ ├── Integrator.test.cc │ ├── NumericLimits.test.cc │ ├── NumericLimits.test.cu │ ├── NumericLimits.test.hh │ ├── PdfUtils.test.cc │ ├── PolyEvaluator.test.cc │ ├── Quantity.test.cc │ ├── QuarticSolver.test.cc │ ├── RegulaFalsiRootFinder.test.cc │ ├── SoftEqual.test.cc │ └── TridiagonalSolver.test.cc ├── random │ ├── CachedRngEngine.test.cc │ ├── DiagnosticRngEngine.hh │ ├── Histogram.cc │ ├── Histogram.hh │ ├── Histogram.test.cc │ ├── HistogramSampler.cc │ ├── HistogramSampler.hh │ ├── RanluxppRngEngine.test.cc │ ├── RngEngine.test.cc │ ├── RngEngine.test.cu │ ├── RngEngine.test.hh │ ├── RngTally.hh │ ├── Selector.test.cc │ ├── SequenceEngine.hh │ ├── XorwowRngEngine.test.cc │ └── distribution │ │ ├── BernoulliDistribution.test.cc │ │ ├── DistributionTypeTraits.test.cc │ │ ├── ExponentialDistribution.test.cc │ │ ├── GammaDistribution.test.cc │ │ ├── InverseSquareDistribution.test.cc │ │ ├── IsotropicDistribution.test.cc │ │ ├── NormalDistribution.test.cc │ │ ├── PoissonDistribution.test.cc │ │ ├── PowerDistribution.test.cc │ │ ├── RadialDistribution.test.cc │ │ ├── ReciprocalDistribution.test.cc │ │ ├── RejectionSampler.test.cc │ │ ├── UniformBoxDistribution.test.cc │ │ └── UniformRealDistribution.test.cc └── sys │ ├── ActionRegistry.test.cc │ ├── Device.test.cc │ ├── Environment.test.cc │ ├── MpiCommunicator.test.cc │ ├── MultiExceptionHandler.test.cc │ ├── ScopedSignalHandler.test.cc │ ├── Stopwatch.test.cc │ ├── TypeDemangler.test.cc │ └── Version.test.cc ├── geocel ├── BoundingBox.test.cc ├── CMakeLists.txt ├── CheckedGeoTrackView.cc ├── CheckedGeoTrackView.hh ├── GeantGdmlLoader.test.cc ├── GeantGeoUtils.test.cc ├── GeantImportVolumeResult.cc ├── GeantImportVolumeResult.hh ├── GenericGeoParameterizedTest.hh ├── GenericGeoResults.cc ├── GenericGeoResults.hh ├── GenericGeoTestBase.hh ├── GenericGeoTestBase.t.hh ├── GenericGeoTestInterface.cc ├── GenericGeoTestInterface.hh ├── GeoTests.cc ├── GeoTests.hh ├── InstancePathFinder.hh ├── LazyGeantGeoManager.cc ├── LazyGeantGeoManager.hh ├── MockGeoTrackView.hh ├── ScopedGeantLogger.test.cc ├── Surface.test.cc ├── SurfaceTestBase.cc ├── SurfaceTestBase.hh ├── SurfaceUtils.hh ├── UnitUtils.hh ├── Volume.test.cc ├── VolumeTestBase.cc ├── VolumeTestBase.hh ├── WrappedGeoTrackView.hh ├── data │ ├── atlas-lar-endcap.gdml │ ├── cms-ee-back-dee.gdml │ ├── cmse.gdml │ ├── field-layers.gdml │ ├── field-layers.org.json │ ├── field-layers.org.py │ ├── four-levels.gdml │ ├── four-steel-slabs.gdml │ ├── four-steel-slabs.org.json │ ├── four-steel-slabs.org.omn │ ├── intersection-boxes.gdml │ ├── lar-sphere-extramat.gdml │ ├── lar-sphere.gdml │ ├── lar-sphere.org.json │ ├── lar-sphere.org.omn │ ├── lead-box.gdml │ ├── lead-box.org.json │ ├── lead-box.org.omn │ ├── mucf-box.gdml │ ├── multi-level.gdml │ ├── one-box.gdml │ ├── one-steel-sphere.gdml │ ├── one-steel-sphere.org.json │ ├── one-steel-sphere.org.omn │ ├── op-novice.gdml │ ├── optical-box.gdml │ ├── optical-surfaces.gdml │ ├── pincell.gdml │ ├── polyhedra.gdml │ ├── replica.gdml │ ├── simple-cms.gdml │ ├── simple-cms.org.json │ ├── simple-cms.org.omn │ ├── solids.gdml │ ├── testem15.gdml │ ├── testem15.org.json │ ├── testem15.org.omn │ ├── testem3-flat.gdml │ ├── testem3-flat.org.json │ ├── testem3-flat.org.py │ ├── testem3.gdml │ ├── three-spheres.gdml │ ├── three-spheres.org.json │ ├── three-spheres.org.omn │ ├── tilecal-plug.gdml │ ├── transformed-box.gdml │ ├── two-boxes.gdml │ ├── two-boxes.org.json │ ├── two-boxes.org.omn │ └── znenv.gdml ├── g4 │ ├── GeantGeo.test.cc │ ├── GeantGeoTestBase.cc │ ├── GeantGeoTestBase.hh │ └── GeantNavHistoryUpdater.test.cc ├── rasterize │ ├── Color.test.cc │ ├── Image.test.cc │ ├── ImageWriter.test.cc │ └── Raytracer.test.cc └── vg │ ├── Vecgeom.test.cc │ ├── Vecgeom.test.cu │ ├── Vecgeom.test.hh │ ├── VecgeomTestBase.cc │ └── VecgeomTestBase.hh ├── orange ├── BoundingBoxUtils.test.cc ├── CMakeLists.txt ├── MatrixUtils.test.cc ├── Orange.test.cc ├── OrangeGeant.test.cc ├── OrangeGeoTestBase.cc ├── OrangeGeoTestBase.hh ├── OrangeJson.test.cc ├── OrangeShift.test.cc ├── OrangeShift.test.cu ├── OrangeTestBase.cc ├── OrangeTestBase.hh ├── OrangeTypes.test.cc ├── RaytraceImager.test.cc ├── data │ ├── .gitignore │ ├── README.txt │ ├── field-layers.gdml │ ├── field-layers.org.json │ ├── field-layers.org.py │ ├── five-volumes.ipynb │ ├── five-volumes.org.json │ ├── five-volumes.org.omn │ ├── geant4-testem15.org.json │ ├── geant4-testem15.org.omn │ ├── hex-array.org.json │ ├── inputbuilder-bgspheres.org.json │ ├── inputbuilder-globalspheres.org.json │ ├── inputbuilder-hierarchy.org.json │ ├── inputbuilder-incomplete-bb.org.json │ ├── inputbuilder-involute-cw.org.json │ ├── inputbuilder-involute-fuel.org.json │ ├── inputbuilder-involute.org.json │ ├── inputbuilder-lar-split-detector.org.json │ ├── inputbuilder-universe-union-boundary.org.json │ ├── inputbuilder-universes.org.json │ ├── nested-rect-arrays.org.json │ ├── nested-rect_arrays.org.omn │ ├── rect-array.org.json │ ├── rect-array.org.omn │ ├── testem3.org.json │ ├── testem3.org.omn │ ├── universes.org.json │ └── universes.org.omn ├── detail │ ├── BIHBuilder.test.cc │ ├── BIHEnclosingVolFinder.test.cc │ ├── BIHIntersectingVolFinder.test.cc │ ├── BIHUtils.test.cc │ ├── LogicUtils.test.cc │ ├── OrientedBoundingZone.test.cc │ └── UniverseIndexer.test.cc ├── g4org │ ├── Converter.test.cc │ ├── GeantLoadTestBase.hh │ ├── PhysicalVolumeConverter.test.cc │ ├── ProtoConstructor.test.cc │ ├── SolidConverter.test.cc │ └── Transformer.test.cc ├── orangeinp │ ├── CsgObject.test.cc │ ├── CsgTestUtils.cc │ ├── CsgTestUtils.hh │ ├── CsgTree.test.cc │ ├── CsgTreeUtils.test.cc │ ├── IntersectRegion.test.cc │ ├── IntersectSurfaceBuilder.test.cc │ ├── IntersectTestResult.cc │ ├── IntersectTestResult.hh │ ├── ObjectTestBase.cc │ ├── ObjectTestBase.hh │ ├── PolySolid.test.cc │ ├── RevolvedPolygon.test.cc │ ├── Shape.test.cc │ ├── Solid.test.cc │ ├── StackedExtrudedPolygon.test.cc │ ├── Transformed.test.cc │ ├── Truncated.test.cc │ ├── UnitProto.test.cc │ └── detail │ │ ├── BoundingZone.test.cc │ │ ├── ConvexHullFinder.test.cc │ │ ├── LocalSurfaceInserter.test.cc │ │ ├── PolygonUtils.test.cc │ │ ├── ProtoMap.test.cc │ │ ├── SurfaceGridHash.test.cc │ │ └── TransformInserter.test.cc ├── surf │ ├── ConeAligned.test.cc │ ├── CylAligned.test.cc │ ├── CylCentered.test.cc │ ├── FaceNamer.test.cc │ ├── GeneralQuadric.test.cc │ ├── Involute.test.cc │ ├── LocalSurfaceVisitor.test.cc │ ├── LocalSurfaceVisitor.test.cu │ ├── LocalSurfaceVisitor.test.hh │ ├── Plane.test.cc │ ├── PlaneAligned.test.cc │ ├── RecursiveSimplifier.test.cc │ ├── SimpleQuadric.test.cc │ ├── SoftSurfaceEqual.test.cc │ ├── Sphere.test.cc │ ├── SphereCentered.test.cc │ ├── SurfaceClipper.test.cc │ ├── SurfaceSimplifier.test.cc │ ├── SurfaceTestUtils.hh │ └── detail │ │ ├── InvolutePoint.test.cc │ │ ├── InvoluteSolver.test.cc │ │ ├── QuadraticSolver.test.cc │ │ ├── SurfaceTransformer.test.cc │ │ └── SurfaceTranslator.test.cc ├── transform │ ├── SignedPermutation.test.cc │ ├── TransformSimplifier.test.cc │ ├── Transformation.test.cc │ ├── Translation.test.cc │ └── VariantTransform.test.cc └── univ │ ├── RectArrayTracker.test.cc │ ├── SimpleUnitTracker.test.cc │ ├── SimpleUnitTracker.test.cu │ ├── SimpleUnitTracker.test.hh │ ├── TrackerVisitor.test.cc │ ├── VolumeView.test.cc │ └── detail │ ├── InfixEvaluator.test.cc │ ├── LogicEvaluator.test.cc │ ├── LogicStack.test.cc │ ├── RaggedRightIndexer.test.cc │ ├── SenseCalculator.test.cc │ └── SurfaceFunctors.test.cc └── testdetail ├── JsonComparer.cc ├── JsonComparer.hh ├── NonMasterResultPrinter.cc ├── NonMasterResultPrinter.hh ├── TestMacrosImpl.cc ├── TestMacrosImpl.hh ├── TestMainImpl.cc └── TestMainImpl.hh /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/README.md -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/CliUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/CliUtils.cc -------------------------------------------------------------------------------- /app/CliUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/CliUtils.hh -------------------------------------------------------------------------------- /app/celer-export-geant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-export-geant.cc -------------------------------------------------------------------------------- /app/celer-g4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/CMakeLists.txt -------------------------------------------------------------------------------- /app/celer-g4/EventAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/EventAction.cc -------------------------------------------------------------------------------- /app/celer-g4/EventAction.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/EventAction.hh -------------------------------------------------------------------------------- /app/celer-g4/GeantDiagnostics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/GeantDiagnostics.cc -------------------------------------------------------------------------------- /app/celer-g4/GeantDiagnostics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/GeantDiagnostics.hh -------------------------------------------------------------------------------- /app/celer-g4/GlobalSetup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/GlobalSetup.cc -------------------------------------------------------------------------------- /app/celer-g4/GlobalSetup.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/GlobalSetup.hh -------------------------------------------------------------------------------- /app/celer-g4/LogHandlers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/LogHandlers.cc -------------------------------------------------------------------------------- /app/celer-g4/LogHandlers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/LogHandlers.hh -------------------------------------------------------------------------------- /app/celer-g4/RootIO.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/RootIO.cc -------------------------------------------------------------------------------- /app/celer-g4/RootIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/RootIO.hh -------------------------------------------------------------------------------- /app/celer-g4/RunAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/RunAction.cc -------------------------------------------------------------------------------- /app/celer-g4/RunAction.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/RunAction.hh -------------------------------------------------------------------------------- /app/celer-g4/RunInput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/RunInput.cc -------------------------------------------------------------------------------- /app/celer-g4/RunInput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/RunInput.hh -------------------------------------------------------------------------------- /app/celer-g4/RunInputIO.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/RunInputIO.json.cc -------------------------------------------------------------------------------- /app/celer-g4/RunInputIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/RunInputIO.json.hh -------------------------------------------------------------------------------- /app/celer-g4/SensitiveDetector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/SensitiveDetector.cc -------------------------------------------------------------------------------- /app/celer-g4/SensitiveDetector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/SensitiveDetector.hh -------------------------------------------------------------------------------- /app/celer-g4/SensitiveHit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/SensitiveHit.cc -------------------------------------------------------------------------------- /app/celer-g4/SensitiveHit.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/SensitiveHit.hh -------------------------------------------------------------------------------- /app/celer-g4/TrackingAction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/TrackingAction.cc -------------------------------------------------------------------------------- /app/celer-g4/TrackingAction.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/TrackingAction.hh -------------------------------------------------------------------------------- /app/celer-g4/celer-g4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/celer-g4.cc -------------------------------------------------------------------------------- /app/celer-g4/celer-g4.nogeant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/celer-g4.nogeant.cc -------------------------------------------------------------------------------- /app/celer-g4/test-harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-g4/test-harness.py -------------------------------------------------------------------------------- /app/celer-geo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-geo/CMakeLists.txt -------------------------------------------------------------------------------- /app/celer-geo/GeoInput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-geo/GeoInput.cc -------------------------------------------------------------------------------- /app/celer-geo/GeoInput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-geo/GeoInput.hh -------------------------------------------------------------------------------- /app/celer-geo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-geo/README.md -------------------------------------------------------------------------------- /app/celer-geo/Runner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-geo/Runner.cc -------------------------------------------------------------------------------- /app/celer-geo/Runner.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-geo/Runner.hh -------------------------------------------------------------------------------- /app/celer-geo/Types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-geo/Types.cc -------------------------------------------------------------------------------- /app/celer-geo/Types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-geo/Types.hh -------------------------------------------------------------------------------- /app/celer-geo/celer-geo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-geo/celer-geo.cc -------------------------------------------------------------------------------- /app/celer-geo/test-harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-geo/test-harness.py -------------------------------------------------------------------------------- /app/celer-sim/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/CMakeLists.txt -------------------------------------------------------------------------------- /app/celer-sim/Runner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/Runner.cc -------------------------------------------------------------------------------- /app/celer-sim/Runner.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/Runner.hh -------------------------------------------------------------------------------- /app/celer-sim/RunnerInput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/RunnerInput.cc -------------------------------------------------------------------------------- /app/celer-sim/RunnerInput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/RunnerInput.hh -------------------------------------------------------------------------------- /app/celer-sim/RunnerInputIO.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/RunnerInputIO.json.cc -------------------------------------------------------------------------------- /app/celer-sim/RunnerInputIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/RunnerInputIO.json.hh -------------------------------------------------------------------------------- /app/celer-sim/RunnerOutput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/RunnerOutput.cc -------------------------------------------------------------------------------- /app/celer-sim/RunnerOutput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/RunnerOutput.hh -------------------------------------------------------------------------------- /app/celer-sim/StepTimer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/StepTimer.hh -------------------------------------------------------------------------------- /app/celer-sim/Transporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/Transporter.cc -------------------------------------------------------------------------------- /app/celer-sim/Transporter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/Transporter.hh -------------------------------------------------------------------------------- /app/celer-sim/celer-sim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/celer-sim.cc -------------------------------------------------------------------------------- /app/celer-sim/simple-driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/celer-sim/simple-driver.py -------------------------------------------------------------------------------- /app/data/four-steel-slabs.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/data/four-steel-slabs.gdml -------------------------------------------------------------------------------- /app/data/gamma-4evt-15prim.hepmc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/data/gamma-4evt-15prim.hepmc3 -------------------------------------------------------------------------------- /app/data/lar-sphere.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/data/lar-sphere.gdml -------------------------------------------------------------------------------- /app/data/simple-cms.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/data/simple-cms.gdml -------------------------------------------------------------------------------- /app/data/simple-cms.org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/data/simple-cms.org.json -------------------------------------------------------------------------------- /app/data/simple-cms.org.omn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/data/simple-cms.org.omn -------------------------------------------------------------------------------- /app/orange-update.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/app/orange-update.cc -------------------------------------------------------------------------------- /cmake/CeleritasAddTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/CeleritasAddTest.cmake -------------------------------------------------------------------------------- /cmake/CeleritasConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/CeleritasConfig.cmake.in -------------------------------------------------------------------------------- /cmake/CeleritasG4Tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/CeleritasG4Tests.cmake -------------------------------------------------------------------------------- /cmake/CeleritasLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/CeleritasLibrary.cmake -------------------------------------------------------------------------------- /cmake/CeleritasLibraryUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/CeleritasLibraryUtils.cmake -------------------------------------------------------------------------------- /cmake/CeleritasOptionUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/CeleritasOptionUtils.cmake -------------------------------------------------------------------------------- /cmake/CeleritasUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/CeleritasUtils.cmake -------------------------------------------------------------------------------- /cmake/CgvFindVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/CgvFindVersion.cmake -------------------------------------------------------------------------------- /cmake/FindCLI11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/FindCLI11.cmake -------------------------------------------------------------------------------- /cmake/FindG4VG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/FindG4VG.cmake -------------------------------------------------------------------------------- /cmake/FindGeant4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/FindGeant4.cmake -------------------------------------------------------------------------------- /cmake/FindHepMC3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/FindHepMC3.cmake -------------------------------------------------------------------------------- /cmake/FindPerfetto.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/FindPerfetto.cmake -------------------------------------------------------------------------------- /cmake/FindROOT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/FindROOT.cmake -------------------------------------------------------------------------------- /cmake/FindThrust.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/FindThrust.cmake -------------------------------------------------------------------------------- /cmake/FindVecGeom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/FindVecGeom.cmake -------------------------------------------------------------------------------- /cmake/Findcovfie.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/Findcovfie.cmake -------------------------------------------------------------------------------- /cmake/Findnlohmann_json.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/Findnlohmann_json.cmake -------------------------------------------------------------------------------- /cmake/external/CudaRdcUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/external/CudaRdcUtils.cmake -------------------------------------------------------------------------------- /cmake/try-sincospi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/cmake/try-sincospi.cc -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/COPYRIGHT -------------------------------------------------------------------------------- /doc/_input/optical-flow.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_input/optical-flow.dot -------------------------------------------------------------------------------- /doc/_input/orangeinp-types.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_input/orangeinp-types.dot -------------------------------------------------------------------------------- /doc/_python/celerdirectives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_python/celerdirectives.py -------------------------------------------------------------------------------- /doc/_python/monkeysphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_python/monkeysphinx.py -------------------------------------------------------------------------------- /doc/_static/.gitignore: -------------------------------------------------------------------------------- 1 | # Auto-generated files 2 | /dot 3 | -------------------------------------------------------------------------------- /doc/_static/celeritas-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_static/celeritas-square.svg -------------------------------------------------------------------------------- /doc/_static/dot-not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_static/dot-not-found.png -------------------------------------------------------------------------------- /doc/_static/doxygen-custom.css: -------------------------------------------------------------------------------- 1 | #projectlogo img 2 | { 3 | height: 50px; 4 | } 5 | -------------------------------------------------------------------------------- /doc/_static/inlining-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_static/inlining-hierarchy.png -------------------------------------------------------------------------------- /doc/_static/inlining-levels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_static/inlining-levels.png -------------------------------------------------------------------------------- /doc/_static/inlining-physical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_static/inlining-physical.png -------------------------------------------------------------------------------- /doc/_static/macros.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_static/macros.tex -------------------------------------------------------------------------------- /doc/_static/ornltm-extract.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_static/ornltm-extract.sty -------------------------------------------------------------------------------- /doc/_static/ornltm-footer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_static/ornltm-footer.tex -------------------------------------------------------------------------------- /doc/_static/sphinxcustom.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_static/sphinxcustom.sty -------------------------------------------------------------------------------- /doc/_static/zotero.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/_static/zotero.bib -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/config.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/config.json.in -------------------------------------------------------------------------------- /doc/development/administration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/development/administration.rst -------------------------------------------------------------------------------- /doc/development/coding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/development/coding.rst -------------------------------------------------------------------------------- /doc/development/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/development/contributing.rst -------------------------------------------------------------------------------- /doc/development/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/development/style.rst -------------------------------------------------------------------------------- /doc/development/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/development/testing.rst -------------------------------------------------------------------------------- /doc/example/celer-g4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/example/celer-g4.rst -------------------------------------------------------------------------------- /doc/example/celer-geo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/example/celer-geo.rst -------------------------------------------------------------------------------- /doc/example/celer-sim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/example/celer-sim.rst -------------------------------------------------------------------------------- /doc/example/geant4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/example/geant4.rst -------------------------------------------------------------------------------- /doc/example/minimal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/example/minimal.rst -------------------------------------------------------------------------------- /doc/implementation/core-physics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/implementation/core-physics.rst -------------------------------------------------------------------------------- /doc/implementation/corecel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/implementation/corecel.rst -------------------------------------------------------------------------------- /doc/implementation/data-model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/implementation/data-model.rst -------------------------------------------------------------------------------- /doc/implementation/em-physics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/implementation/em-physics.rst -------------------------------------------------------------------------------- /doc/implementation/geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/implementation/geometry.rst -------------------------------------------------------------------------------- /doc/implementation/mucf-physics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/implementation/mucf-physics.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/licenses/additional.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/licenses/additional.rst -------------------------------------------------------------------------------- /doc/licenses/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/licenses/code.rst -------------------------------------------------------------------------------- /doc/licenses/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/licenses/documentation.rst -------------------------------------------------------------------------------- /doc/release-history/v0.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/release-history/v0.1.rst -------------------------------------------------------------------------------- /doc/release-history/v0.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/release-history/v0.2.rst -------------------------------------------------------------------------------- /doc/release-history/v0.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/release-history/v0.3.rst -------------------------------------------------------------------------------- /doc/release-history/v0.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/release-history/v0.4.rst -------------------------------------------------------------------------------- /doc/release-history/v0.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/release-history/v0.5.rst -------------------------------------------------------------------------------- /doc/release-history/v0.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/release-history/v0.6.rst -------------------------------------------------------------------------------- /doc/usage/execution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/execution.rst -------------------------------------------------------------------------------- /doc/usage/execution/environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/execution/environment.rst -------------------------------------------------------------------------------- /doc/usage/execution/profiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/execution/profiling.rst -------------------------------------------------------------------------------- /doc/usage/execution/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/execution/utilities.rst -------------------------------------------------------------------------------- /doc/usage/input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/input.rst -------------------------------------------------------------------------------- /doc/usage/input/control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/input/control.rst -------------------------------------------------------------------------------- /doc/usage/input/diagnostics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/input/diagnostics.rst -------------------------------------------------------------------------------- /doc/usage/input/field.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/input/field.rst -------------------------------------------------------------------------------- /doc/usage/input/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/input/model.rst -------------------------------------------------------------------------------- /doc/usage/input/physics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/input/physics.rst -------------------------------------------------------------------------------- /doc/usage/input/problem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/input/problem.rst -------------------------------------------------------------------------------- /doc/usage/input/scoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/input/scoring.rst -------------------------------------------------------------------------------- /doc/usage/input/tracking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/input/tracking.rst -------------------------------------------------------------------------------- /doc/usage/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/installation.rst -------------------------------------------------------------------------------- /doc/usage/integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/doc/usage/integration.rst -------------------------------------------------------------------------------- /example/geant4/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /install 3 | -------------------------------------------------------------------------------- /example/geant4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/example/geant4/CMakeLists.txt -------------------------------------------------------------------------------- /example/geant4/add-celer.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/example/geant4/add-celer.diff -------------------------------------------------------------------------------- /example/geant4/fastsim-offload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/example/geant4/fastsim-offload.cc -------------------------------------------------------------------------------- /example/geant4/simple-offload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/example/geant4/simple-offload.cc -------------------------------------------------------------------------------- /example/minimal/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /install 3 | -------------------------------------------------------------------------------- /example/minimal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/example/minimal/CMakeLists.txt -------------------------------------------------------------------------------- /example/minimal/minimal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/example/minimal/minimal.cc -------------------------------------------------------------------------------- /example/offload-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/example/offload-template/.gitignore -------------------------------------------------------------------------------- /example/offload-template/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/example/offload-template/README.rst -------------------------------------------------------------------------------- /example/offload-template/run.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/example/offload-template/run.mac -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/ci/gcovr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/ci/gcovr.cfg -------------------------------------------------------------------------------- /scripts/ci/host-system-info.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/ci/host-system-info.cmake -------------------------------------------------------------------------------- /scripts/ci/llvm-gcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/ci/llvm-gcov.sh -------------------------------------------------------------------------------- /scripts/ci/run-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/ci/run-ci.sh -------------------------------------------------------------------------------- /scripts/ci/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/ci/spack.yaml -------------------------------------------------------------------------------- /scripts/ci/test-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/ci/test-examples.sh -------------------------------------------------------------------------------- /scripts/cmake-presets/_dev_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/_dev_.json -------------------------------------------------------------------------------- /scripts/cmake-presets/bede.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/bede.json -------------------------------------------------------------------------------- /scripts/cmake-presets/esseivaj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/esseivaj.json -------------------------------------------------------------------------------- /scripts/cmake-presets/executor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/executor.json -------------------------------------------------------------------------------- /scripts/cmake-presets/faraday.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/faraday.json -------------------------------------------------------------------------------- /scripts/cmake-presets/frontier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/frontier.json -------------------------------------------------------------------------------- /scripts/cmake-presets/gondolin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/gondolin.json -------------------------------------------------------------------------------- /scripts/cmake-presets/hudson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/hudson.json -------------------------------------------------------------------------------- /scripts/cmake-presets/jlse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/jlse.json -------------------------------------------------------------------------------- /scripts/cmake-presets/milan0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/milan0.json -------------------------------------------------------------------------------- /scripts/cmake-presets/morannon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/morannon.json -------------------------------------------------------------------------------- /scripts/cmake-presets/omnia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/omnia.json -------------------------------------------------------------------------------- /scripts/cmake-presets/stognini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/stognini.json -------------------------------------------------------------------------------- /scripts/cmake-presets/zeus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/cmake-presets/zeus.json -------------------------------------------------------------------------------- /scripts/dev/analyze-cmake-trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/analyze-cmake-trace.py -------------------------------------------------------------------------------- /scripts/dev/celeritas-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/celeritas-gen.py -------------------------------------------------------------------------------- /scripts/dev/celerlldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/celerlldb.py -------------------------------------------------------------------------------- /scripts/dev/cloc-to-numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/cloc-to-numbers.py -------------------------------------------------------------------------------- /scripts/dev/codespell-fixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/codespell-fixes.txt -------------------------------------------------------------------------------- /scripts/dev/codespell-ignore.txt: -------------------------------------------------------------------------------- 1 | AssertIO 2 | nax 3 | nd 4 | VarT 5 | therefrom 6 | TE 7 | TM 8 | -------------------------------------------------------------------------------- /scripts/dev/install-commit-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/install-commit-hooks.sh -------------------------------------------------------------------------------- /scripts/dev/iwyu-apple-clang.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/iwyu-apple-clang.imp -------------------------------------------------------------------------------- /scripts/dev/iwyu-celeritas.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/iwyu-celeritas.imp -------------------------------------------------------------------------------- /scripts/dev/iwyu-dependencies.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/iwyu-dependencies.imp -------------------------------------------------------------------------------- /scripts/dev/run-cloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/run-cloc.sh -------------------------------------------------------------------------------- /scripts/dev/run-iwyu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/dev/run-iwyu.sh -------------------------------------------------------------------------------- /scripts/doc-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/doc-requirements.txt -------------------------------------------------------------------------------- /scripts/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/docker/README.md -------------------------------------------------------------------------------- /scripts/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/docker/build.sh -------------------------------------------------------------------------------- /scripts/docker/ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/docker/ci/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/ci/entrypoint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/docker/ci/entrypoint.bash -------------------------------------------------------------------------------- /scripts/docker/dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/docker/dev/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/interactive/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/docker/interactive/build.sh -------------------------------------------------------------------------------- /scripts/docker/interactive/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/docker/interactive/run.sh -------------------------------------------------------------------------------- /scripts/env/ci-centos-rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/ci-centos-rocm.sh -------------------------------------------------------------------------------- /scripts/env/exalearn4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/exalearn4.sh -------------------------------------------------------------------------------- /scripts/env/excl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/excl.sh -------------------------------------------------------------------------------- /scripts/env/faraday.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/faraday.sh -------------------------------------------------------------------------------- /scripts/env/frontier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/frontier.sh -------------------------------------------------------------------------------- /scripts/env/hudson.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/hudson.sh -------------------------------------------------------------------------------- /scripts/env/jlse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/jlse.sh -------------------------------------------------------------------------------- /scripts/env/login-excl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/login-excl.sh -------------------------------------------------------------------------------- /scripts/env/milan0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/milan0.sh -------------------------------------------------------------------------------- /scripts/env/omnia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/omnia.sh -------------------------------------------------------------------------------- /scripts/env/perlmutter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/perlmutter.sh -------------------------------------------------------------------------------- /scripts/env/scisoftbuild01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/scisoftbuild01.sh -------------------------------------------------------------------------------- /scripts/env/wildstyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/wildstyle.sh -------------------------------------------------------------------------------- /scripts/env/zeus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/env/zeus.sh -------------------------------------------------------------------------------- /scripts/release/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/release/users.json -------------------------------------------------------------------------------- /scripts/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/spack.yaml -------------------------------------------------------------------------------- /scripts/user/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/user/.gitignore -------------------------------------------------------------------------------- /scripts/user/orange-csg-to-dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/scripts/user/orange-csg-to-dot.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CeleritasG4.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/CeleritasG4.hh -------------------------------------------------------------------------------- /src/accel/AlongStepFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/AlongStepFactory.cc -------------------------------------------------------------------------------- /src/accel/AlongStepFactory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/AlongStepFactory.hh -------------------------------------------------------------------------------- /src/accel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/CMakeLists.txt -------------------------------------------------------------------------------- /src/accel/CartMapMagneticField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/CartMapMagneticField.cc -------------------------------------------------------------------------------- /src/accel/CartMapMagneticField.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/CartMapMagneticField.hh -------------------------------------------------------------------------------- /src/accel/CylMapMagneticField.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/CylMapMagneticField.cc -------------------------------------------------------------------------------- /src/accel/CylMapMagneticField.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/CylMapMagneticField.hh -------------------------------------------------------------------------------- /src/accel/ExceptionConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/ExceptionConverter.cc -------------------------------------------------------------------------------- /src/accel/ExceptionConverter.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/ExceptionConverter.cu -------------------------------------------------------------------------------- /src/accel/ExceptionConverter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/ExceptionConverter.hh -------------------------------------------------------------------------------- /src/accel/FastSimulationModel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/FastSimulationModel.cc -------------------------------------------------------------------------------- /src/accel/FastSimulationModel.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/FastSimulationModel.hh -------------------------------------------------------------------------------- /src/accel/FastSimulationOffload.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/FastSimulationOffload.hh -------------------------------------------------------------------------------- /src/accel/GeantSimpleCalo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/GeantSimpleCalo.cc -------------------------------------------------------------------------------- /src/accel/GeantSimpleCalo.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/GeantSimpleCalo.hh -------------------------------------------------------------------------------- /src/accel/GeantStepDiagnostic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/GeantStepDiagnostic.cc -------------------------------------------------------------------------------- /src/accel/GeantStepDiagnostic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/GeantStepDiagnostic.hh -------------------------------------------------------------------------------- /src/accel/HepMC3PrimaryGenerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/HepMC3PrimaryGenerator.cc -------------------------------------------------------------------------------- /src/accel/HepMC3PrimaryGenerator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/HepMC3PrimaryGenerator.hh -------------------------------------------------------------------------------- /src/accel/IntegrationBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/IntegrationBase.cc -------------------------------------------------------------------------------- /src/accel/IntegrationBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/IntegrationBase.hh -------------------------------------------------------------------------------- /src/accel/LocalOffloadInterface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/LocalOffloadInterface.hh -------------------------------------------------------------------------------- /src/accel/LocalOpticalOffload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/LocalOpticalOffload.cc -------------------------------------------------------------------------------- /src/accel/LocalOpticalOffload.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/LocalOpticalOffload.hh -------------------------------------------------------------------------------- /src/accel/LocalTransporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/LocalTransporter.cc -------------------------------------------------------------------------------- /src/accel/LocalTransporter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/LocalTransporter.hh -------------------------------------------------------------------------------- /src/accel/Logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/Logger.cc -------------------------------------------------------------------------------- /src/accel/Logger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/Logger.hh -------------------------------------------------------------------------------- /src/accel/RZMapMagneticField.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/RZMapMagneticField.hh -------------------------------------------------------------------------------- /src/accel/SetupOptions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/SetupOptions.cc -------------------------------------------------------------------------------- /src/accel/SetupOptions.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/SetupOptions.hh -------------------------------------------------------------------------------- /src/accel/SetupOptionsMessenger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/SetupOptionsMessenger.cc -------------------------------------------------------------------------------- /src/accel/SetupOptionsMessenger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/SetupOptionsMessenger.hh -------------------------------------------------------------------------------- /src/accel/SharedParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/SharedParams.cc -------------------------------------------------------------------------------- /src/accel/SharedParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/SharedParams.hh -------------------------------------------------------------------------------- /src/accel/SimpleOffload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/SimpleOffload.cc -------------------------------------------------------------------------------- /src/accel/SimpleOffload.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/SimpleOffload.hh -------------------------------------------------------------------------------- /src/accel/TimeOutput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/TimeOutput.cc -------------------------------------------------------------------------------- /src/accel/TimeOutput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/TimeOutput.hh -------------------------------------------------------------------------------- /src/accel/TrackingManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/TrackingManager.cc -------------------------------------------------------------------------------- /src/accel/TrackingManager.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/TrackingManager.hh -------------------------------------------------------------------------------- /src/accel/TrackingManagerOffload.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/TrackingManagerOffload.hh -------------------------------------------------------------------------------- /src/accel/Types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/Types.hh -------------------------------------------------------------------------------- /src/accel/UserActionIntegration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/UserActionIntegration.cc -------------------------------------------------------------------------------- /src/accel/UserActionIntegration.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/UserActionIntegration.hh -------------------------------------------------------------------------------- /src/accel/detail/LoggerImpl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/detail/LoggerImpl.cc -------------------------------------------------------------------------------- /src/accel/detail/LoggerImpl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/detail/LoggerImpl.hh -------------------------------------------------------------------------------- /src/accel/detail/OffloadWriter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/accel/detail/OffloadWriter.hh -------------------------------------------------------------------------------- /src/celeritas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/CMakeLists.txt -------------------------------------------------------------------------------- /src/celeritas/Constants.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/Constants.hh -------------------------------------------------------------------------------- /src/celeritas/Quantities.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/Quantities.hh -------------------------------------------------------------------------------- /src/celeritas/Types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/Types.cc -------------------------------------------------------------------------------- /src/celeritas/Types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/Types.hh -------------------------------------------------------------------------------- /src/celeritas/TypesIO.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/TypesIO.json.cc -------------------------------------------------------------------------------- /src/celeritas/TypesIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/TypesIO.json.hh -------------------------------------------------------------------------------- /src/celeritas/UnitTypes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/UnitTypes.hh -------------------------------------------------------------------------------- /src/celeritas/Units.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/Units.hh -------------------------------------------------------------------------------- /src/celeritas/em/detail/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/em/detail/Utils.cc -------------------------------------------------------------------------------- /src/celeritas/em/detail/Utils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/em/detail/Utils.hh -------------------------------------------------------------------------------- /src/celeritas/em/msc/UrbanMsc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/em/msc/UrbanMsc.hh -------------------------------------------------------------------------------- /src/celeritas/ext/Convert.root.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/Convert.root.hh -------------------------------------------------------------------------------- /src/celeritas/ext/EmPhysicsList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/EmPhysicsList.cc -------------------------------------------------------------------------------- /src/celeritas/ext/EmPhysicsList.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/EmPhysicsList.hh -------------------------------------------------------------------------------- /src/celeritas/ext/GeantImporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/GeantImporter.cc -------------------------------------------------------------------------------- /src/celeritas/ext/GeantImporter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/GeantImporter.hh -------------------------------------------------------------------------------- /src/celeritas/ext/GeantSd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/GeantSd.cc -------------------------------------------------------------------------------- /src/celeritas/ext/GeantSd.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/GeantSd.hh -------------------------------------------------------------------------------- /src/celeritas/ext/GeantSdOutput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/GeantSdOutput.cc -------------------------------------------------------------------------------- /src/celeritas/ext/GeantSdOutput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/GeantSdOutput.hh -------------------------------------------------------------------------------- /src/celeritas/ext/GeantSetup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/GeantSetup.cc -------------------------------------------------------------------------------- /src/celeritas/ext/GeantSetup.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/GeantSetup.hh -------------------------------------------------------------------------------- /src/celeritas/ext/GeantUnits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/GeantUnits.hh -------------------------------------------------------------------------------- /src/celeritas/ext/RootExporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/RootExporter.cc -------------------------------------------------------------------------------- /src/celeritas/ext/RootExporter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/RootExporter.hh -------------------------------------------------------------------------------- /src/celeritas/ext/RootImporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/RootImporter.cc -------------------------------------------------------------------------------- /src/celeritas/ext/RootImporter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/RootImporter.hh -------------------------------------------------------------------------------- /src/celeritas/ext/RootJsonDumper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/RootJsonDumper.cc -------------------------------------------------------------------------------- /src/celeritas/ext/RootJsonDumper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/RootJsonDumper.hh -------------------------------------------------------------------------------- /src/celeritas/ext/RootUniquePtr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/ext/RootUniquePtr.hh -------------------------------------------------------------------------------- /src/celeritas/field/CartMapField.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/field/CartMapField.hh -------------------------------------------------------------------------------- /src/celeritas/field/CylMapField.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/field/CylMapField.hh -------------------------------------------------------------------------------- /src/celeritas/field/RZMapField.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/field/RZMapField.hh -------------------------------------------------------------------------------- /src/celeritas/field/Types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/field/Types.hh -------------------------------------------------------------------------------- /src/celeritas/field/UniformField.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/field/UniformField.hh -------------------------------------------------------------------------------- /src/celeritas/geo/CoreGeoParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/geo/CoreGeoParams.hh -------------------------------------------------------------------------------- /src/celeritas/geo/CoreGeoTraits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/geo/CoreGeoTraits.hh -------------------------------------------------------------------------------- /src/celeritas/geo/GeoData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/geo/GeoData.hh -------------------------------------------------------------------------------- /src/celeritas/geo/GeoFwd.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/geo/GeoFwd.hh -------------------------------------------------------------------------------- /src/celeritas/geo/GeoParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/geo/GeoParams.hh -------------------------------------------------------------------------------- /src/celeritas/geo/GeoTrackView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/geo/GeoTrackView.hh -------------------------------------------------------------------------------- /src/celeritas/global/CoreParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/global/CoreParams.cc -------------------------------------------------------------------------------- /src/celeritas/global/CoreParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/global/CoreParams.hh -------------------------------------------------------------------------------- /src/celeritas/global/CoreState.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/global/CoreState.cc -------------------------------------------------------------------------------- /src/celeritas/global/CoreState.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/global/CoreState.hh -------------------------------------------------------------------------------- /src/celeritas/global/Debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/global/Debug.cc -------------------------------------------------------------------------------- /src/celeritas/global/Debug.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/global/Debug.hh -------------------------------------------------------------------------------- /src/celeritas/global/Stepper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/global/Stepper.cc -------------------------------------------------------------------------------- /src/celeritas/global/Stepper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/global/Stepper.hh -------------------------------------------------------------------------------- /src/celeritas/grid/GridIdFinder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/grid/GridIdFinder.hh -------------------------------------------------------------------------------- /src/celeritas/grid/XsCalculator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/grid/XsCalculator.hh -------------------------------------------------------------------------------- /src/celeritas/grid/XsGridData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/grid/XsGridData.hh -------------------------------------------------------------------------------- /src/celeritas/inp/Control.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/Control.hh -------------------------------------------------------------------------------- /src/celeritas/inp/Diagnostics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/Diagnostics.hh -------------------------------------------------------------------------------- /src/celeritas/inp/Events.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/Events.hh -------------------------------------------------------------------------------- /src/celeritas/inp/Field.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/Field.hh -------------------------------------------------------------------------------- /src/celeritas/inp/FrameworkInput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/FrameworkInput.hh -------------------------------------------------------------------------------- /src/celeritas/inp/Import.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/Import.hh -------------------------------------------------------------------------------- /src/celeritas/inp/MucfPhysics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/MucfPhysics.cc -------------------------------------------------------------------------------- /src/celeritas/inp/MucfPhysics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/MucfPhysics.hh -------------------------------------------------------------------------------- /src/celeritas/inp/Particle.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/Particle.hh -------------------------------------------------------------------------------- /src/celeritas/inp/Physics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/Physics.hh -------------------------------------------------------------------------------- /src/celeritas/inp/PhysicsModel.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/PhysicsModel.hh -------------------------------------------------------------------------------- /src/celeritas/inp/PhysicsProcess.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/PhysicsProcess.hh -------------------------------------------------------------------------------- /src/celeritas/inp/Problem.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/Problem.hh -------------------------------------------------------------------------------- /src/celeritas/inp/ProcessBuilder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/ProcessBuilder.hh -------------------------------------------------------------------------------- /src/celeritas/inp/Scoring.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/Scoring.hh -------------------------------------------------------------------------------- /src/celeritas/inp/SurfacePhysics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/SurfacePhysics.hh -------------------------------------------------------------------------------- /src/celeritas/inp/System.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/System.hh -------------------------------------------------------------------------------- /src/celeritas/inp/Tracking.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/inp/Tracking.hh -------------------------------------------------------------------------------- /src/celeritas/io/EventData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/EventData.hh -------------------------------------------------------------------------------- /src/celeritas/io/EventReader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/EventReader.cc -------------------------------------------------------------------------------- /src/celeritas/io/EventReader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/EventReader.hh -------------------------------------------------------------------------------- /src/celeritas/io/EventWriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/EventWriter.cc -------------------------------------------------------------------------------- /src/celeritas/io/EventWriter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/EventWriter.hh -------------------------------------------------------------------------------- /src/celeritas/io/ImportData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportData.cc -------------------------------------------------------------------------------- /src/celeritas/io/ImportData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportData.hh -------------------------------------------------------------------------------- /src/celeritas/io/ImportElement.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportElement.hh -------------------------------------------------------------------------------- /src/celeritas/io/ImportMaterial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportMaterial.cc -------------------------------------------------------------------------------- /src/celeritas/io/ImportMaterial.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportMaterial.hh -------------------------------------------------------------------------------- /src/celeritas/io/ImportModel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportModel.cc -------------------------------------------------------------------------------- /src/celeritas/io/ImportModel.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportModel.hh -------------------------------------------------------------------------------- /src/celeritas/io/ImportProcess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportProcess.cc -------------------------------------------------------------------------------- /src/celeritas/io/ImportProcess.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportProcess.hh -------------------------------------------------------------------------------- /src/celeritas/io/ImportUnits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportUnits.cc -------------------------------------------------------------------------------- /src/celeritas/io/ImportUnits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportUnits.hh -------------------------------------------------------------------------------- /src/celeritas/io/ImportVolume.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/ImportVolume.hh -------------------------------------------------------------------------------- /src/celeritas/io/JsonEventReader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/JsonEventReader.cc -------------------------------------------------------------------------------- /src/celeritas/io/JsonEventReader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/JsonEventReader.hh -------------------------------------------------------------------------------- /src/celeritas/io/JsonEventWriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/JsonEventWriter.cc -------------------------------------------------------------------------------- /src/celeritas/io/JsonEventWriter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/JsonEventWriter.hh -------------------------------------------------------------------------------- /src/celeritas/io/NeutronXsReader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/NeutronXsReader.cc -------------------------------------------------------------------------------- /src/celeritas/io/NeutronXsReader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/NeutronXsReader.hh -------------------------------------------------------------------------------- /src/celeritas/io/RootEventReader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/RootEventReader.cc -------------------------------------------------------------------------------- /src/celeritas/io/RootEventReader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/RootEventReader.hh -------------------------------------------------------------------------------- /src/celeritas/io/RootEventWriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/RootEventWriter.cc -------------------------------------------------------------------------------- /src/celeritas/io/RootEventWriter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/io/RootEventWriter.hh -------------------------------------------------------------------------------- /src/celeritas/mat/ElementView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/mat/ElementView.hh -------------------------------------------------------------------------------- /src/celeritas/mat/IsotopeView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/mat/IsotopeView.hh -------------------------------------------------------------------------------- /src/celeritas/mat/MaterialData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/mat/MaterialData.hh -------------------------------------------------------------------------------- /src/celeritas/mat/MaterialParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/mat/MaterialParams.cc -------------------------------------------------------------------------------- /src/celeritas/mat/MaterialParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/mat/MaterialParams.hh -------------------------------------------------------------------------------- /src/celeritas/mat/MaterialView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/mat/MaterialView.hh -------------------------------------------------------------------------------- /src/celeritas/mat/detail/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/mat/detail/Utils.cc -------------------------------------------------------------------------------- /src/celeritas/mat/detail/Utils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/mat/detail/Utils.hh -------------------------------------------------------------------------------- /src/celeritas/optical/CoreParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/optical/CoreParams.cc -------------------------------------------------------------------------------- /src/celeritas/optical/CoreParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/optical/CoreParams.hh -------------------------------------------------------------------------------- /src/celeritas/optical/CoreState.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/optical/CoreState.cc -------------------------------------------------------------------------------- /src/celeritas/optical/CoreState.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/optical/CoreState.hh -------------------------------------------------------------------------------- /src/celeritas/optical/MfpBuilder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/optical/MfpBuilder.hh -------------------------------------------------------------------------------- /src/celeritas/optical/MieData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/optical/MieData.hh -------------------------------------------------------------------------------- /src/celeritas/optical/Model.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/optical/Model.hh -------------------------------------------------------------------------------- /src/celeritas/optical/SimData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/optical/SimData.hh -------------------------------------------------------------------------------- /src/celeritas/optical/Types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/optical/Types.cc -------------------------------------------------------------------------------- /src/celeritas/optical/Types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/optical/Types.hh -------------------------------------------------------------------------------- /src/celeritas/phys/Applicability.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/Applicability.hh -------------------------------------------------------------------------------- /src/celeritas/phys/AtomicNumber.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/AtomicNumber.hh -------------------------------------------------------------------------------- /src/celeritas/phys/CutoffData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/CutoffData.hh -------------------------------------------------------------------------------- /src/celeritas/phys/CutoffParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/CutoffParams.cc -------------------------------------------------------------------------------- /src/celeritas/phys/CutoffParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/CutoffParams.hh -------------------------------------------------------------------------------- /src/celeritas/phys/CutoffView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/CutoffView.hh -------------------------------------------------------------------------------- /src/celeritas/phys/FourVector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/FourVector.hh -------------------------------------------------------------------------------- /src/celeritas/phys/Interaction.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/Interaction.hh -------------------------------------------------------------------------------- /src/celeritas/phys/Model.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/Model.hh -------------------------------------------------------------------------------- /src/celeritas/phys/PDGNumber.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/PDGNumber.hh -------------------------------------------------------------------------------- /src/celeritas/phys/ParticleData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/ParticleData.hh -------------------------------------------------------------------------------- /src/celeritas/phys/ParticleView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/ParticleView.hh -------------------------------------------------------------------------------- /src/celeritas/phys/PhysicsData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/PhysicsData.hh -------------------------------------------------------------------------------- /src/celeritas/phys/PhysicsParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/PhysicsParams.cc -------------------------------------------------------------------------------- /src/celeritas/phys/PhysicsParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/PhysicsParams.hh -------------------------------------------------------------------------------- /src/celeritas/phys/Primary.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/Primary.hh -------------------------------------------------------------------------------- /src/celeritas/phys/Process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/Process.cc -------------------------------------------------------------------------------- /src/celeritas/phys/Process.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/Process.hh -------------------------------------------------------------------------------- /src/celeritas/phys/Secondary.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/Secondary.hh -------------------------------------------------------------------------------- /src/celeritas/phys/SurfaceModel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/SurfaceModel.cc -------------------------------------------------------------------------------- /src/celeritas/phys/SurfaceModel.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/phys/SurfaceModel.hh -------------------------------------------------------------------------------- /src/celeritas/random/RngReseed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/random/RngReseed.cc -------------------------------------------------------------------------------- /src/celeritas/random/RngReseed.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/random/RngReseed.cu -------------------------------------------------------------------------------- /src/celeritas/random/RngReseed.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/random/RngReseed.hh -------------------------------------------------------------------------------- /src/celeritas/setup/Events.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/setup/Events.cc -------------------------------------------------------------------------------- /src/celeritas/setup/Events.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/setup/Events.hh -------------------------------------------------------------------------------- /src/celeritas/setup/Import.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/setup/Import.cc -------------------------------------------------------------------------------- /src/celeritas/setup/Import.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/setup/Import.hh -------------------------------------------------------------------------------- /src/celeritas/setup/Model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/setup/Model.cc -------------------------------------------------------------------------------- /src/celeritas/setup/Model.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/setup/Model.hh -------------------------------------------------------------------------------- /src/celeritas/setup/Problem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/setup/Problem.cc -------------------------------------------------------------------------------- /src/celeritas/setup/Problem.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/setup/Problem.hh -------------------------------------------------------------------------------- /src/celeritas/setup/System.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/setup/System.cc -------------------------------------------------------------------------------- /src/celeritas/setup/System.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/setup/System.hh -------------------------------------------------------------------------------- /src/celeritas/track/SimData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/track/SimData.hh -------------------------------------------------------------------------------- /src/celeritas/track/SimParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/track/SimParams.cc -------------------------------------------------------------------------------- /src/celeritas/track/SimParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/track/SimParams.hh -------------------------------------------------------------------------------- /src/celeritas/track/SimTrackView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/track/SimTrackView.hh -------------------------------------------------------------------------------- /src/celeritas/track/Utils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/track/Utils.hh -------------------------------------------------------------------------------- /src/celeritas/user/ActionTimes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/ActionTimes.cc -------------------------------------------------------------------------------- /src/celeritas/user/ActionTimes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/ActionTimes.hh -------------------------------------------------------------------------------- /src/celeritas/user/DetectorSteps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/DetectorSteps.cc -------------------------------------------------------------------------------- /src/celeritas/user/DetectorSteps.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/DetectorSteps.cu -------------------------------------------------------------------------------- /src/celeritas/user/DetectorSteps.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/DetectorSteps.hh -------------------------------------------------------------------------------- /src/celeritas/user/SDData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/SDData.hh -------------------------------------------------------------------------------- /src/celeritas/user/SDParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/SDParams.cc -------------------------------------------------------------------------------- /src/celeritas/user/SDParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/SDParams.hh -------------------------------------------------------------------------------- /src/celeritas/user/SimpleCalo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/SimpleCalo.cc -------------------------------------------------------------------------------- /src/celeritas/user/SimpleCalo.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/SimpleCalo.hh -------------------------------------------------------------------------------- /src/celeritas/user/StepCollector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/StepCollector.cc -------------------------------------------------------------------------------- /src/celeritas/user/StepCollector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/StepCollector.hh -------------------------------------------------------------------------------- /src/celeritas/user/StepData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/StepData.hh -------------------------------------------------------------------------------- /src/celeritas/user/StepInterface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas/user/StepInterface.hh -------------------------------------------------------------------------------- /src/celeritas_cmake_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas_cmake_strings.h -------------------------------------------------------------------------------- /src/celeritas_sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas_sys_config.h -------------------------------------------------------------------------------- /src/celeritas_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/celeritas_version.h -------------------------------------------------------------------------------- /src/corecel/Assert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/Assert.cc -------------------------------------------------------------------------------- /src/corecel/Assert.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/Assert.hh -------------------------------------------------------------------------------- /src/corecel/AssertIO.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/AssertIO.json.cc -------------------------------------------------------------------------------- /src/corecel/AssertIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/AssertIO.json.hh -------------------------------------------------------------------------------- /src/corecel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/CMakeLists.txt -------------------------------------------------------------------------------- /src/corecel/Config.cc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/Config.cc.in -------------------------------------------------------------------------------- /src/corecel/Config.hh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/Config.hh.in -------------------------------------------------------------------------------- /src/corecel/Constants.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/Constants.hh -------------------------------------------------------------------------------- /src/corecel/DeviceRuntimeApi.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/DeviceRuntimeApi.hh -------------------------------------------------------------------------------- /src/corecel/Macros.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/Macros.hh -------------------------------------------------------------------------------- /src/corecel/OpaqueId.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/OpaqueId.hh -------------------------------------------------------------------------------- /src/corecel/OpaqueIdIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/OpaqueIdIO.hh -------------------------------------------------------------------------------- /src/corecel/Types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/Types.cc -------------------------------------------------------------------------------- /src/corecel/Types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/Types.hh -------------------------------------------------------------------------------- /src/corecel/Version.cc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/Version.cc.in -------------------------------------------------------------------------------- /src/corecel/Version.hh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/Version.hh.in -------------------------------------------------------------------------------- /src/corecel/cont/Array.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/Array.hh -------------------------------------------------------------------------------- /src/corecel/cont/ArrayIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/ArrayIO.hh -------------------------------------------------------------------------------- /src/corecel/cont/ArrayIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/ArrayIO.json.hh -------------------------------------------------------------------------------- /src/corecel/cont/Bitset.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/Bitset.hh -------------------------------------------------------------------------------- /src/corecel/cont/EnumArray.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/EnumArray.hh -------------------------------------------------------------------------------- /src/corecel/cont/EnumClassUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/EnumClassUtils.hh -------------------------------------------------------------------------------- /src/corecel/cont/LabelIdMultiMap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/LabelIdMultiMap.hh -------------------------------------------------------------------------------- /src/corecel/cont/MiniStack.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/MiniStack.hh -------------------------------------------------------------------------------- /src/corecel/cont/Range.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/Range.hh -------------------------------------------------------------------------------- /src/corecel/cont/Span.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/Span.hh -------------------------------------------------------------------------------- /src/corecel/cont/SpanIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/SpanIO.hh -------------------------------------------------------------------------------- /src/corecel/cont/SpanIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/SpanIO.json.hh -------------------------------------------------------------------------------- /src/corecel/cont/VariantUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/VariantUtils.hh -------------------------------------------------------------------------------- /src/corecel/cont/detail/SpanImpl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/cont/detail/SpanImpl.hh -------------------------------------------------------------------------------- /src/corecel/data/AuxInterface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/AuxInterface.cc -------------------------------------------------------------------------------- /src/corecel/data/AuxInterface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/AuxInterface.hh -------------------------------------------------------------------------------- /src/corecel/data/AuxParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/AuxParams.hh -------------------------------------------------------------------------------- /src/corecel/data/AuxState.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/AuxState.hh -------------------------------------------------------------------------------- /src/corecel/data/AuxStateVec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/AuxStateVec.cc -------------------------------------------------------------------------------- /src/corecel/data/AuxStateVec.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/AuxStateVec.hh -------------------------------------------------------------------------------- /src/corecel/data/Collection.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/Collection.hh -------------------------------------------------------------------------------- /src/corecel/data/Copier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/Copier.cc -------------------------------------------------------------------------------- /src/corecel/data/Copier.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/Copier.hh -------------------------------------------------------------------------------- /src/corecel/data/DeviceVector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/DeviceVector.hh -------------------------------------------------------------------------------- /src/corecel/data/Filler.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/Filler.cu -------------------------------------------------------------------------------- /src/corecel/data/Filler.device.t.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/Filler.device.t.hh -------------------------------------------------------------------------------- /src/corecel/data/Filler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/Filler.hh -------------------------------------------------------------------------------- /src/corecel/data/LdgIterator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/LdgIterator.hh -------------------------------------------------------------------------------- /src/corecel/data/LdgTraits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/LdgTraits.hh -------------------------------------------------------------------------------- /src/corecel/data/ObserverPtr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/ObserverPtr.hh -------------------------------------------------------------------------------- /src/corecel/data/PinnedAllocator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/PinnedAllocator.hh -------------------------------------------------------------------------------- /src/corecel/data/Ref.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/Ref.hh -------------------------------------------------------------------------------- /src/corecel/data/StackAllocator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/StackAllocator.hh -------------------------------------------------------------------------------- /src/corecel/data/StreamStore.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/StreamStore.hh -------------------------------------------------------------------------------- /src/corecel/data/detail/RefImpl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/data/detail/RefImpl.hh -------------------------------------------------------------------------------- /src/corecel/device_runtime_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/device_runtime_api.h -------------------------------------------------------------------------------- /src/corecel/grid/FindInterp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/grid/FindInterp.hh -------------------------------------------------------------------------------- /src/corecel/grid/GridTypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/grid/GridTypes.cc -------------------------------------------------------------------------------- /src/corecel/grid/GridTypes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/grid/GridTypes.hh -------------------------------------------------------------------------------- /src/corecel/grid/Interpolator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/grid/Interpolator.hh -------------------------------------------------------------------------------- /src/corecel/grid/NonuniformGrid.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/grid/NonuniformGrid.hh -------------------------------------------------------------------------------- /src/corecel/grid/TwodGridData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/grid/TwodGridData.hh -------------------------------------------------------------------------------- /src/corecel/grid/UniformGrid.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/grid/UniformGrid.hh -------------------------------------------------------------------------------- /src/corecel/grid/UniformGridData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/grid/UniformGridData.hh -------------------------------------------------------------------------------- /src/corecel/grid/VectorUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/grid/VectorUtils.cc -------------------------------------------------------------------------------- /src/corecel/grid/VectorUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/grid/VectorUtils.hh -------------------------------------------------------------------------------- /src/corecel/inp/Distributions.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/inp/Distributions.hh -------------------------------------------------------------------------------- /src/corecel/inp/Grid.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/inp/Grid.hh -------------------------------------------------------------------------------- /src/corecel/io/BuildOutput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/BuildOutput.cc -------------------------------------------------------------------------------- /src/corecel/io/BuildOutput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/BuildOutput.hh -------------------------------------------------------------------------------- /src/corecel/io/ColorUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/ColorUtils.cc -------------------------------------------------------------------------------- /src/corecel/io/ColorUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/ColorUtils.hh -------------------------------------------------------------------------------- /src/corecel/io/EnumStringMapper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/EnumStringMapper.hh -------------------------------------------------------------------------------- /src/corecel/io/ExceptionOutput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/ExceptionOutput.cc -------------------------------------------------------------------------------- /src/corecel/io/ExceptionOutput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/ExceptionOutput.hh -------------------------------------------------------------------------------- /src/corecel/io/FileOrConsole.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/FileOrConsole.hh -------------------------------------------------------------------------------- /src/corecel/io/Join.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/Join.hh -------------------------------------------------------------------------------- /src/corecel/io/JsonPimpl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/JsonPimpl.hh -------------------------------------------------------------------------------- /src/corecel/io/JsonUtils.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/JsonUtils.json.cc -------------------------------------------------------------------------------- /src/corecel/io/JsonUtils.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/JsonUtils.json.hh -------------------------------------------------------------------------------- /src/corecel/io/Label.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/Label.cc -------------------------------------------------------------------------------- /src/corecel/io/Label.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/Label.hh -------------------------------------------------------------------------------- /src/corecel/io/LabelIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/LabelIO.json.hh -------------------------------------------------------------------------------- /src/corecel/io/LogHandlers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/LogHandlers.cc -------------------------------------------------------------------------------- /src/corecel/io/LogHandlers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/LogHandlers.hh -------------------------------------------------------------------------------- /src/corecel/io/Logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/Logger.cc -------------------------------------------------------------------------------- /src/corecel/io/Logger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/Logger.hh -------------------------------------------------------------------------------- /src/corecel/io/LoggerTypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/LoggerTypes.cc -------------------------------------------------------------------------------- /src/corecel/io/LoggerTypes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/LoggerTypes.hh -------------------------------------------------------------------------------- /src/corecel/io/OutputInterface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/OutputInterface.cc -------------------------------------------------------------------------------- /src/corecel/io/OutputInterface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/OutputInterface.hh -------------------------------------------------------------------------------- /src/corecel/io/OutputRegistry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/OutputRegistry.cc -------------------------------------------------------------------------------- /src/corecel/io/OutputRegistry.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/OutputRegistry.hh -------------------------------------------------------------------------------- /src/corecel/io/Repr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/Repr.hh -------------------------------------------------------------------------------- /src/corecel/io/ScopedTimeLog.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/ScopedTimeLog.hh -------------------------------------------------------------------------------- /src/corecel/io/StreamableVariant.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/StreamableVariant.hh -------------------------------------------------------------------------------- /src/corecel/io/StringEnumMapper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/StringEnumMapper.hh -------------------------------------------------------------------------------- /src/corecel/io/StringUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/StringUtils.cc -------------------------------------------------------------------------------- /src/corecel/io/StringUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/StringUtils.hh -------------------------------------------------------------------------------- /src/corecel/io/detail/Joined.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/detail/Joined.hh -------------------------------------------------------------------------------- /src/corecel/io/detail/ReprImpl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/detail/ReprImpl.cc -------------------------------------------------------------------------------- /src/corecel/io/detail/ReprImpl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/io/detail/ReprImpl.hh -------------------------------------------------------------------------------- /src/corecel/math/Algorithms.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/Algorithms.hh -------------------------------------------------------------------------------- /src/corecel/math/ArrayOperators.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/ArrayOperators.hh -------------------------------------------------------------------------------- /src/corecel/math/ArraySoftUnit.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/ArraySoftUnit.hh -------------------------------------------------------------------------------- /src/corecel/math/ArrayUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/ArrayUtils.hh -------------------------------------------------------------------------------- /src/corecel/math/Atomics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/Atomics.hh -------------------------------------------------------------------------------- /src/corecel/math/Constant.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/Constant.hh -------------------------------------------------------------------------------- /src/corecel/math/FerrariSolver.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/FerrariSolver.hh -------------------------------------------------------------------------------- /src/corecel/math/HashUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/HashUtils.hh -------------------------------------------------------------------------------- /src/corecel/math/Integrator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/Integrator.hh -------------------------------------------------------------------------------- /src/corecel/math/NumericLimits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/NumericLimits.hh -------------------------------------------------------------------------------- /src/corecel/math/PdfUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/PdfUtils.hh -------------------------------------------------------------------------------- /src/corecel/math/PolyEvaluator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/PolyEvaluator.hh -------------------------------------------------------------------------------- /src/corecel/math/Quantity.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/Quantity.hh -------------------------------------------------------------------------------- /src/corecel/math/QuantityIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/QuantityIO.hh -------------------------------------------------------------------------------- /src/corecel/math/QuantityIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/QuantityIO.json.hh -------------------------------------------------------------------------------- /src/corecel/math/SoftEqual.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/SoftEqual.hh -------------------------------------------------------------------------------- /src/corecel/math/Turn.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/Turn.hh -------------------------------------------------------------------------------- /src/corecel/math/UnitUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/UnitUtils.hh -------------------------------------------------------------------------------- /src/corecel/math/detail/Sincospi.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/math/detail/Sincospi.hh -------------------------------------------------------------------------------- /src/corecel/random/Types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/random/Types.cc -------------------------------------------------------------------------------- /src/corecel/random/Types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/random/Types.hh -------------------------------------------------------------------------------- /src/corecel/random/data/RngData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/random/data/RngData.hh -------------------------------------------------------------------------------- /src/corecel/sys/ActionGroups.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ActionGroups.hh -------------------------------------------------------------------------------- /src/corecel/sys/ActionGroups.t.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ActionGroups.t.hh -------------------------------------------------------------------------------- /src/corecel/sys/ActionInterface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ActionInterface.cc -------------------------------------------------------------------------------- /src/corecel/sys/ActionInterface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ActionInterface.hh -------------------------------------------------------------------------------- /src/corecel/sys/ActionRegistry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ActionRegistry.cc -------------------------------------------------------------------------------- /src/corecel/sys/ActionRegistry.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ActionRegistry.hh -------------------------------------------------------------------------------- /src/corecel/sys/Device.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/Device.cc -------------------------------------------------------------------------------- /src/corecel/sys/Device.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/Device.hh -------------------------------------------------------------------------------- /src/corecel/sys/DeviceIO.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/DeviceIO.json.cc -------------------------------------------------------------------------------- /src/corecel/sys/DeviceIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/DeviceIO.json.hh -------------------------------------------------------------------------------- /src/corecel/sys/Environment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/Environment.cc -------------------------------------------------------------------------------- /src/corecel/sys/Environment.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/Environment.hh -------------------------------------------------------------------------------- /src/corecel/sys/KernelAttributes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/KernelAttributes.hh -------------------------------------------------------------------------------- /src/corecel/sys/KernelLauncher.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/KernelLauncher.hh -------------------------------------------------------------------------------- /src/corecel/sys/KernelRegistry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/KernelRegistry.cc -------------------------------------------------------------------------------- /src/corecel/sys/KernelTraits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/KernelTraits.hh -------------------------------------------------------------------------------- /src/corecel/sys/MemRegistry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/MemRegistry.cc -------------------------------------------------------------------------------- /src/corecel/sys/MemRegistry.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/MemRegistry.hh -------------------------------------------------------------------------------- /src/corecel/sys/MpiOperations.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/MpiOperations.hh -------------------------------------------------------------------------------- /src/corecel/sys/ScopedMem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ScopedMem.cc -------------------------------------------------------------------------------- /src/corecel/sys/ScopedMem.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ScopedMem.hh -------------------------------------------------------------------------------- /src/corecel/sys/ScopedMpiInit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ScopedMpiInit.cc -------------------------------------------------------------------------------- /src/corecel/sys/ScopedMpiInit.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ScopedMpiInit.hh -------------------------------------------------------------------------------- /src/corecel/sys/Stopwatch.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/Stopwatch.hh -------------------------------------------------------------------------------- /src/corecel/sys/Stream.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/Stream.cu -------------------------------------------------------------------------------- /src/corecel/sys/Stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/Stream.hh -------------------------------------------------------------------------------- /src/corecel/sys/ThreadId.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/ThreadId.hh -------------------------------------------------------------------------------- /src/corecel/sys/Thrust.device.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/Thrust.device.hh -------------------------------------------------------------------------------- /src/corecel/sys/TraceCounter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/TraceCounter.hh -------------------------------------------------------------------------------- /src/corecel/sys/TypeDemangler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/TypeDemangler.cc -------------------------------------------------------------------------------- /src/corecel/sys/TypeDemangler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/TypeDemangler.hh -------------------------------------------------------------------------------- /src/corecel/sys/Version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/Version.cc -------------------------------------------------------------------------------- /src/corecel/sys/Version.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/corecel/sys/Version.hh -------------------------------------------------------------------------------- /src/geocel/BoundingBox.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/BoundingBox.hh -------------------------------------------------------------------------------- /src/geocel/BoundingBoxIO.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/BoundingBoxIO.json.cc -------------------------------------------------------------------------------- /src/geocel/BoundingBoxIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/BoundingBoxIO.json.hh -------------------------------------------------------------------------------- /src/geocel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/CMakeLists.txt -------------------------------------------------------------------------------- /src/geocel/GeantGdmlLoader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeantGdmlLoader.cc -------------------------------------------------------------------------------- /src/geocel/GeantGdmlLoader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeantGdmlLoader.hh -------------------------------------------------------------------------------- /src/geocel/GeantGeoParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeantGeoParams.cc -------------------------------------------------------------------------------- /src/geocel/GeantGeoParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeantGeoParams.hh -------------------------------------------------------------------------------- /src/geocel/GeantGeoUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeantGeoUtils.cc -------------------------------------------------------------------------------- /src/geocel/GeantGeoUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeantGeoUtils.hh -------------------------------------------------------------------------------- /src/geocel/GeantUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeantUtils.cc -------------------------------------------------------------------------------- /src/geocel/GeantUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeantUtils.hh -------------------------------------------------------------------------------- /src/geocel/GeoInterface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeoInterface.cc -------------------------------------------------------------------------------- /src/geocel/GeoParamsInterface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeoParamsInterface.hh -------------------------------------------------------------------------------- /src/geocel/GeoParamsOutput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeoParamsOutput.cc -------------------------------------------------------------------------------- /src/geocel/GeoParamsOutput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeoParamsOutput.hh -------------------------------------------------------------------------------- /src/geocel/GeoTrackInterface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeoTrackInterface.hh -------------------------------------------------------------------------------- /src/geocel/GeoTraits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/GeoTraits.hh -------------------------------------------------------------------------------- /src/geocel/ScopedGeantLogger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/ScopedGeantLogger.cc -------------------------------------------------------------------------------- /src/geocel/ScopedGeantLogger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/ScopedGeantLogger.hh -------------------------------------------------------------------------------- /src/geocel/SurfaceData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/SurfaceData.hh -------------------------------------------------------------------------------- /src/geocel/SurfaceParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/SurfaceParams.cc -------------------------------------------------------------------------------- /src/geocel/SurfaceParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/SurfaceParams.hh -------------------------------------------------------------------------------- /src/geocel/Types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/Types.hh -------------------------------------------------------------------------------- /src/geocel/VolumeIdBuilder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/VolumeIdBuilder.cc -------------------------------------------------------------------------------- /src/geocel/VolumeIdBuilder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/VolumeIdBuilder.hh -------------------------------------------------------------------------------- /src/geocel/VolumeParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/VolumeParams.cc -------------------------------------------------------------------------------- /src/geocel/VolumeParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/VolumeParams.hh -------------------------------------------------------------------------------- /src/geocel/VolumeSurfaceView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/VolumeSurfaceView.hh -------------------------------------------------------------------------------- /src/geocel/VolumeToString.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/VolumeToString.cc -------------------------------------------------------------------------------- /src/geocel/VolumeToString.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/VolumeToString.hh -------------------------------------------------------------------------------- /src/geocel/VolumeVisitor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/VolumeVisitor.hh -------------------------------------------------------------------------------- /src/geocel/detail/LengthUnits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/detail/LengthUnits.hh -------------------------------------------------------------------------------- /src/geocel/g4/Convert.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/g4/Convert.hh -------------------------------------------------------------------------------- /src/geocel/g4/GeantGeoData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/g4/GeantGeoData.hh -------------------------------------------------------------------------------- /src/geocel/g4/GeantGeoTraits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/g4/GeantGeoTraits.hh -------------------------------------------------------------------------------- /src/geocel/g4/RaytraceImager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/g4/RaytraceImager.cc -------------------------------------------------------------------------------- /src/geocel/g4/RaytraceImager.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/g4/RaytraceImager.hh -------------------------------------------------------------------------------- /src/geocel/g4/Repr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/g4/Repr.hh -------------------------------------------------------------------------------- /src/geocel/g4/SafetyImager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/g4/SafetyImager.cc -------------------------------------------------------------------------------- /src/geocel/inp/Model.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/inp/Model.hh -------------------------------------------------------------------------------- /src/geocel/rasterize/Color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/rasterize/Color.cc -------------------------------------------------------------------------------- /src/geocel/rasterize/Color.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/rasterize/Color.hh -------------------------------------------------------------------------------- /src/geocel/rasterize/Image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/rasterize/Image.cc -------------------------------------------------------------------------------- /src/geocel/rasterize/Image.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/rasterize/Image.hh -------------------------------------------------------------------------------- /src/geocel/vg/RaytraceImager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/vg/RaytraceImager.cc -------------------------------------------------------------------------------- /src/geocel/vg/RaytraceImager.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/vg/RaytraceImager.cu -------------------------------------------------------------------------------- /src/geocel/vg/RaytraceImager.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/vg/RaytraceImager.hh -------------------------------------------------------------------------------- /src/geocel/vg/SafetyImager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/vg/SafetyImager.cc -------------------------------------------------------------------------------- /src/geocel/vg/VecgeomData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/vg/VecgeomData.cc -------------------------------------------------------------------------------- /src/geocel/vg/VecgeomData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/vg/VecgeomData.hh -------------------------------------------------------------------------------- /src/geocel/vg/VecgeomParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/vg/VecgeomParams.cc -------------------------------------------------------------------------------- /src/geocel/vg/VecgeomParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/vg/VecgeomParams.hh -------------------------------------------------------------------------------- /src/geocel/vg/VecgeomTypes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/geocel/vg/VecgeomTypes.hh -------------------------------------------------------------------------------- /src/orange/BoundingBoxUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/BoundingBoxUtils.cc -------------------------------------------------------------------------------- /src/orange/BoundingBoxUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/BoundingBoxUtils.hh -------------------------------------------------------------------------------- /src/orange/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/CMakeLists.txt -------------------------------------------------------------------------------- /src/orange/Debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/Debug.cc -------------------------------------------------------------------------------- /src/orange/Debug.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/Debug.hh -------------------------------------------------------------------------------- /src/orange/DebugIO.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/DebugIO.json.cc -------------------------------------------------------------------------------- /src/orange/DebugIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/DebugIO.json.hh -------------------------------------------------------------------------------- /src/orange/LevelStateAccessor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/LevelStateAccessor.hh -------------------------------------------------------------------------------- /src/orange/MatrixUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/MatrixUtils.cc -------------------------------------------------------------------------------- /src/orange/MatrixUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/MatrixUtils.hh -------------------------------------------------------------------------------- /src/orange/OrangeData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeData.hh -------------------------------------------------------------------------------- /src/orange/OrangeGeoTraits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeGeoTraits.hh -------------------------------------------------------------------------------- /src/orange/OrangeInput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeInput.hh -------------------------------------------------------------------------------- /src/orange/OrangeInputIO.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeInputIO.json.cc -------------------------------------------------------------------------------- /src/orange/OrangeInputIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeInputIO.json.hh -------------------------------------------------------------------------------- /src/orange/OrangeParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeParams.cc -------------------------------------------------------------------------------- /src/orange/OrangeParams.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeParams.hh -------------------------------------------------------------------------------- /src/orange/OrangeParamsOutput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeParamsOutput.cc -------------------------------------------------------------------------------- /src/orange/OrangeParamsOutput.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeParamsOutput.hh -------------------------------------------------------------------------------- /src/orange/OrangeTrackView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeTrackView.hh -------------------------------------------------------------------------------- /src/orange/OrangeTypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeTypes.cc -------------------------------------------------------------------------------- /src/orange/OrangeTypes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeTypes.hh -------------------------------------------------------------------------------- /src/orange/OrangeTypesIO.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeTypesIO.json.cc -------------------------------------------------------------------------------- /src/orange/OrangeTypesIO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/OrangeTypesIO.json.hh -------------------------------------------------------------------------------- /src/orange/RaytraceImager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/RaytraceImager.cc -------------------------------------------------------------------------------- /src/orange/RaytraceImager.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/RaytraceImager.cu -------------------------------------------------------------------------------- /src/orange/RaytraceImager.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/RaytraceImager.hh -------------------------------------------------------------------------------- /src/orange/SafetyImager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/SafetyImager.cc -------------------------------------------------------------------------------- /src/orange/SenseUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/SenseUtils.hh -------------------------------------------------------------------------------- /src/orange/detail/BIHBuilder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/detail/BIHBuilder.cc -------------------------------------------------------------------------------- /src/orange/detail/BIHBuilder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/detail/BIHBuilder.hh -------------------------------------------------------------------------------- /src/orange/detail/BIHData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/detail/BIHData.hh -------------------------------------------------------------------------------- /src/orange/detail/BIHUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/detail/BIHUtils.hh -------------------------------------------------------------------------------- /src/orange/detail/BIHView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/detail/BIHView.hh -------------------------------------------------------------------------------- /src/orange/detail/LogicUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/detail/LogicUtils.cc -------------------------------------------------------------------------------- /src/orange/detail/LogicUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/detail/LogicUtils.hh -------------------------------------------------------------------------------- /src/orange/g4org/Converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/g4org/Converter.cc -------------------------------------------------------------------------------- /src/orange/g4org/Converter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/g4org/Converter.hh -------------------------------------------------------------------------------- /src/orange/g4org/Scaler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/g4org/Scaler.hh -------------------------------------------------------------------------------- /src/orange/g4org/Transformer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/g4org/Transformer.hh -------------------------------------------------------------------------------- /src/orange/g4org/Volume.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/g4org/Volume.hh -------------------------------------------------------------------------------- /src/orange/inp/IO.json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/inp/IO.json.cc -------------------------------------------------------------------------------- /src/orange/inp/IO.json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/inp/IO.json.hh -------------------------------------------------------------------------------- /src/orange/inp/Import.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/inp/Import.hh -------------------------------------------------------------------------------- /src/orange/orangeinp/CsgTree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/orangeinp/CsgTree.cc -------------------------------------------------------------------------------- /src/orange/orangeinp/CsgTree.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/orangeinp/CsgTree.hh -------------------------------------------------------------------------------- /src/orange/orangeinp/CsgTypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/orangeinp/CsgTypes.cc -------------------------------------------------------------------------------- /src/orange/orangeinp/CsgTypes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/orangeinp/CsgTypes.hh -------------------------------------------------------------------------------- /src/orange/orangeinp/Shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/orangeinp/Shape.cc -------------------------------------------------------------------------------- /src/orange/orangeinp/Shape.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/orangeinp/Shape.hh -------------------------------------------------------------------------------- /src/orange/orangeinp/Solid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/orangeinp/Solid.cc -------------------------------------------------------------------------------- /src/orange/orangeinp/Solid.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/orangeinp/Solid.hh -------------------------------------------------------------------------------- /src/orange/surf/ConeAligned.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/ConeAligned.cc -------------------------------------------------------------------------------- /src/orange/surf/ConeAligned.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/ConeAligned.hh -------------------------------------------------------------------------------- /src/orange/surf/CylAligned.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/CylAligned.cc -------------------------------------------------------------------------------- /src/orange/surf/CylAligned.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/CylAligned.hh -------------------------------------------------------------------------------- /src/orange/surf/CylCentered.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/CylCentered.hh -------------------------------------------------------------------------------- /src/orange/surf/FaceNamer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/FaceNamer.cc -------------------------------------------------------------------------------- /src/orange/surf/FaceNamer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/FaceNamer.hh -------------------------------------------------------------------------------- /src/orange/surf/Involute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/Involute.cc -------------------------------------------------------------------------------- /src/orange/surf/Involute.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/Involute.hh -------------------------------------------------------------------------------- /src/orange/surf/Plane.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/Plane.cc -------------------------------------------------------------------------------- /src/orange/surf/Plane.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/Plane.hh -------------------------------------------------------------------------------- /src/orange/surf/PlaneAligned.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/PlaneAligned.cc -------------------------------------------------------------------------------- /src/orange/surf/PlaneAligned.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/PlaneAligned.hh -------------------------------------------------------------------------------- /src/orange/surf/SimpleQuadric.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/SimpleQuadric.cc -------------------------------------------------------------------------------- /src/orange/surf/SimpleQuadric.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/SimpleQuadric.hh -------------------------------------------------------------------------------- /src/orange/surf/Sphere.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/Sphere.cc -------------------------------------------------------------------------------- /src/orange/surf/Sphere.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/Sphere.hh -------------------------------------------------------------------------------- /src/orange/surf/SurfaceFwd.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/SurfaceFwd.hh -------------------------------------------------------------------------------- /src/orange/surf/SurfaceIO.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/SurfaceIO.cc -------------------------------------------------------------------------------- /src/orange/surf/SurfaceIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/surf/SurfaceIO.hh -------------------------------------------------------------------------------- /src/orange/univ/VolumeView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/univ/VolumeView.hh -------------------------------------------------------------------------------- /src/orange/univ/detail/Types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/univ/detail/Types.hh -------------------------------------------------------------------------------- /src/orange/univ/detail/Utils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/src/orange/univ/detail/Utils.hh -------------------------------------------------------------------------------- /test/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/.clang-tidy -------------------------------------------------------------------------------- /test/AssertionHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/AssertionHelper.cc -------------------------------------------------------------------------------- /test/AssertionHelper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/AssertionHelper.hh -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/JsonComparer.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/JsonComparer.test.cc -------------------------------------------------------------------------------- /test/PersistentSP.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/PersistentSP.hh -------------------------------------------------------------------------------- /test/Test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/Test.cc -------------------------------------------------------------------------------- /test/Test.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/Test.hh -------------------------------------------------------------------------------- /test/TestMacros.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/TestMacros.hh -------------------------------------------------------------------------------- /test/TestMacros.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/TestMacros.test.cc -------------------------------------------------------------------------------- /test/TestMain.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/TestMain.hh -------------------------------------------------------------------------------- /test/accel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/accel/CMakeLists.txt -------------------------------------------------------------------------------- /test/celeritas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/CMakeLists.txt -------------------------------------------------------------------------------- /test/celeritas/Constants.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/Constants.test.cc -------------------------------------------------------------------------------- /test/celeritas/GeantTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/GeantTestBase.cc -------------------------------------------------------------------------------- /test/celeritas/GeantTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/GeantTestBase.hh -------------------------------------------------------------------------------- /test/celeritas/GlobalTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/GlobalTestBase.cc -------------------------------------------------------------------------------- /test/celeritas/GlobalTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/GlobalTestBase.hh -------------------------------------------------------------------------------- /test/celeritas/LArSphereBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/LArSphereBase.hh -------------------------------------------------------------------------------- /test/celeritas/MockTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/MockTestBase.cc -------------------------------------------------------------------------------- /test/celeritas/MockTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/MockTestBase.hh -------------------------------------------------------------------------------- /test/celeritas/RootTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/RootTestBase.cc -------------------------------------------------------------------------------- /test/celeritas/RootTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/RootTestBase.hh -------------------------------------------------------------------------------- /test/celeritas/SimpleTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/SimpleTestBase.cc -------------------------------------------------------------------------------- /test/celeritas/SimpleTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/SimpleTestBase.hh -------------------------------------------------------------------------------- /test/celeritas/TestEm15Base.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/TestEm15Base.hh -------------------------------------------------------------------------------- /test/celeritas/TestEm3Base.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/TestEm3Base.hh -------------------------------------------------------------------------------- /test/celeritas/Units.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/Units.test.cc -------------------------------------------------------------------------------- /test/celeritas/data/br29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/data/br29 -------------------------------------------------------------------------------- /test/celeritas/data/el2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/data/el2 -------------------------------------------------------------------------------- /test/celeritas/data/el29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/data/el29 -------------------------------------------------------------------------------- /test/celeritas/data/inel2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/data/inel2 -------------------------------------------------------------------------------- /test/celeritas/data/inel29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/data/inel29 -------------------------------------------------------------------------------- /test/celeritas/data/pe-cs-19.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/data/pe-cs-19.dat -------------------------------------------------------------------------------- /test/celeritas/em/MscTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/em/MscTestBase.cc -------------------------------------------------------------------------------- /test/celeritas/em/MscTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/em/MscTestBase.hh -------------------------------------------------------------------------------- /test/celeritas/ext/SDTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/ext/SDTestBase.cc -------------------------------------------------------------------------------- /test/celeritas/ext/SDTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/ext/SDTestBase.hh -------------------------------------------------------------------------------- /test/celeritas/phys/MockModel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/phys/MockModel.cc -------------------------------------------------------------------------------- /test/celeritas/phys/MockModel.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/phys/MockModel.hh -------------------------------------------------------------------------------- /test/celeritas/track/Sim.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas/track/Sim.test.cc -------------------------------------------------------------------------------- /test/celeritas_test.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas_test.hh -------------------------------------------------------------------------------- /test/celeritas_test_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/celeritas_test_config.h.in -------------------------------------------------------------------------------- /test/corecel/Assert.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/Assert.test.cc -------------------------------------------------------------------------------- /test/corecel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/CMakeLists.txt -------------------------------------------------------------------------------- /test/corecel/OpaqueId.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/OpaqueId.test.cc -------------------------------------------------------------------------------- /test/corecel/OpaqueIdUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/OpaqueIdUtils.hh -------------------------------------------------------------------------------- /test/corecel/ScopedLogStorer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/ScopedLogStorer.cc -------------------------------------------------------------------------------- /test/corecel/ScopedLogStorer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/ScopedLogStorer.hh -------------------------------------------------------------------------------- /test/corecel/StringSimplifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/StringSimplifier.cc -------------------------------------------------------------------------------- /test/corecel/StringSimplifier.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/StringSimplifier.hh -------------------------------------------------------------------------------- /test/corecel/cont/Array.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/cont/Array.test.cc -------------------------------------------------------------------------------- /test/corecel/cont/Bitset.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/cont/Bitset.test.cc -------------------------------------------------------------------------------- /test/corecel/cont/Range.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/cont/Range.test.cc -------------------------------------------------------------------------------- /test/corecel/cont/Range.test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/cont/Range.test.cu -------------------------------------------------------------------------------- /test/corecel/cont/Range.test.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/cont/Range.test.hh -------------------------------------------------------------------------------- /test/corecel/cont/Span.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/cont/Span.test.cc -------------------------------------------------------------------------------- /test/corecel/data/AuxMockData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/data/AuxMockData.hh -------------------------------------------------------------------------------- /test/corecel/data/Copier.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/data/Copier.test.cc -------------------------------------------------------------------------------- /test/corecel/data/Filler.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/data/Filler.test.cc -------------------------------------------------------------------------------- /test/corecel/io/HexRepr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/io/HexRepr.hh -------------------------------------------------------------------------------- /test/corecel/io/Join.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/io/Join.test.cc -------------------------------------------------------------------------------- /test/corecel/io/Label.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/io/Label.test.cc -------------------------------------------------------------------------------- /test/corecel/io/Logger.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/io/Logger.test.cc -------------------------------------------------------------------------------- /test/corecel/io/Repr.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/io/Repr.test.cc -------------------------------------------------------------------------------- /test/corecel/random/Histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/random/Histogram.cc -------------------------------------------------------------------------------- /test/corecel/random/Histogram.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/random/Histogram.hh -------------------------------------------------------------------------------- /test/corecel/random/RngTally.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/random/RngTally.hh -------------------------------------------------------------------------------- /test/corecel/sys/Device.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/sys/Device.test.cc -------------------------------------------------------------------------------- /test/corecel/sys/Version.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/corecel/sys/Version.test.cc -------------------------------------------------------------------------------- /test/geocel/BoundingBox.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/BoundingBox.test.cc -------------------------------------------------------------------------------- /test/geocel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/CMakeLists.txt -------------------------------------------------------------------------------- /test/geocel/GenericGeoResults.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/GenericGeoResults.cc -------------------------------------------------------------------------------- /test/geocel/GenericGeoResults.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/GenericGeoResults.hh -------------------------------------------------------------------------------- /test/geocel/GeoTests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/GeoTests.cc -------------------------------------------------------------------------------- /test/geocel/GeoTests.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/GeoTests.hh -------------------------------------------------------------------------------- /test/geocel/MockGeoTrackView.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/MockGeoTrackView.hh -------------------------------------------------------------------------------- /test/geocel/Surface.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/Surface.test.cc -------------------------------------------------------------------------------- /test/geocel/SurfaceTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/SurfaceTestBase.cc -------------------------------------------------------------------------------- /test/geocel/SurfaceTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/SurfaceTestBase.hh -------------------------------------------------------------------------------- /test/geocel/SurfaceUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/SurfaceUtils.hh -------------------------------------------------------------------------------- /test/geocel/UnitUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/UnitUtils.hh -------------------------------------------------------------------------------- /test/geocel/Volume.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/Volume.test.cc -------------------------------------------------------------------------------- /test/geocel/VolumeTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/VolumeTestBase.cc -------------------------------------------------------------------------------- /test/geocel/VolumeTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/VolumeTestBase.hh -------------------------------------------------------------------------------- /test/geocel/data/cmse.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/cmse.gdml -------------------------------------------------------------------------------- /test/geocel/data/lar-sphere.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/lar-sphere.gdml -------------------------------------------------------------------------------- /test/geocel/data/lead-box.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/lead-box.gdml -------------------------------------------------------------------------------- /test/geocel/data/mucf-box.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/mucf-box.gdml -------------------------------------------------------------------------------- /test/geocel/data/one-box.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/one-box.gdml -------------------------------------------------------------------------------- /test/geocel/data/op-novice.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/op-novice.gdml -------------------------------------------------------------------------------- /test/geocel/data/pincell.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/pincell.gdml -------------------------------------------------------------------------------- /test/geocel/data/polyhedra.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/polyhedra.gdml -------------------------------------------------------------------------------- /test/geocel/data/replica.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/replica.gdml -------------------------------------------------------------------------------- /test/geocel/data/simple-cms.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/simple-cms.gdml -------------------------------------------------------------------------------- /test/geocel/data/solids.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/solids.gdml -------------------------------------------------------------------------------- /test/geocel/data/testem15.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/testem15.gdml -------------------------------------------------------------------------------- /test/geocel/data/testem3.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/testem3.gdml -------------------------------------------------------------------------------- /test/geocel/data/two-boxes.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/two-boxes.gdml -------------------------------------------------------------------------------- /test/geocel/data/znenv.gdml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/data/znenv.gdml -------------------------------------------------------------------------------- /test/geocel/g4/GeantGeo.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/g4/GeantGeo.test.cc -------------------------------------------------------------------------------- /test/geocel/vg/Vecgeom.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/vg/Vecgeom.test.cc -------------------------------------------------------------------------------- /test/geocel/vg/Vecgeom.test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/vg/Vecgeom.test.cu -------------------------------------------------------------------------------- /test/geocel/vg/Vecgeom.test.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/geocel/vg/Vecgeom.test.hh -------------------------------------------------------------------------------- /test/orange/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/CMakeLists.txt -------------------------------------------------------------------------------- /test/orange/MatrixUtils.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/MatrixUtils.test.cc -------------------------------------------------------------------------------- /test/orange/Orange.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/Orange.test.cc -------------------------------------------------------------------------------- /test/orange/OrangeGeant.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/OrangeGeant.test.cc -------------------------------------------------------------------------------- /test/orange/OrangeGeoTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/OrangeGeoTestBase.cc -------------------------------------------------------------------------------- /test/orange/OrangeGeoTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/OrangeGeoTestBase.hh -------------------------------------------------------------------------------- /test/orange/OrangeJson.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/OrangeJson.test.cc -------------------------------------------------------------------------------- /test/orange/OrangeShift.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/OrangeShift.test.cc -------------------------------------------------------------------------------- /test/orange/OrangeShift.test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/OrangeShift.test.cu -------------------------------------------------------------------------------- /test/orange/OrangeTestBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/OrangeTestBase.cc -------------------------------------------------------------------------------- /test/orange/OrangeTestBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/OrangeTestBase.hh -------------------------------------------------------------------------------- /test/orange/OrangeTypes.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/OrangeTypes.test.cc -------------------------------------------------------------------------------- /test/orange/data/.gitignore: -------------------------------------------------------------------------------- 1 | *.org.xml 2 | -------------------------------------------------------------------------------- /test/orange/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/data/README.txt -------------------------------------------------------------------------------- /test/orange/data/testem3.org.omn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/data/testem3.org.omn -------------------------------------------------------------------------------- /test/orange/surf/Plane.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/surf/Plane.test.cc -------------------------------------------------------------------------------- /test/orange/surf/Sphere.test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/orange/surf/Sphere.test.cc -------------------------------------------------------------------------------- /test/testdetail/JsonComparer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/testdetail/JsonComparer.cc -------------------------------------------------------------------------------- /test/testdetail/JsonComparer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/testdetail/JsonComparer.hh -------------------------------------------------------------------------------- /test/testdetail/TestMainImpl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/testdetail/TestMainImpl.cc -------------------------------------------------------------------------------- /test/testdetail/TestMainImpl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celeritas-project/celeritas/HEAD/test/testdetail/TestMainImpl.hh --------------------------------------------------------------------------------