1 / 7

NeutronHP, Hadronic Framework

NeutronHP, Hadronic Framework. KOI, Tatsumi SLAC National Accelerator Laboratory. Background. HadrnicProcess defines the top level of Hadronic framework (See next slide) It is not an abstract class at all.

renata
Download Presentation

NeutronHP, Hadronic Framework

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. NeutronHP, Hadronic Framework KOI, Tatsumi SLAC National Accelerator Laboratory The 18th Geant4 Collaboration Meeting at Seville, Spain

  2. Background • HadrnicProcess defines the top level of Hadronic framework (See next slide) • It is not an abstract class at all. • NeutronHP package provides cross sections and models for hadronic framework of Geant4 with the same manner to the other hadronic models and cross sections • Energy coverage of the package is quite extended in lower side in a comparison toother hadronic models and cross sections • Down to 10-5eV he 18th Geant4 Collaboration Meeting at Seville, Spain

  3. Hadronic Framework G4NeutronInelasticProcess G4NeutronCaptureProcess G4NeutronFissionProcess,,,, HadronicProcess provides (proposes) nucleus for model HadronicProcess asks isotope wise cross section G4NeutronHPElasticData G4NeutronInelasticData G4NeutronHPThermalScatteringData,,, G4NeutronHPElastic G4NeutronInelastic G4NeutronHPThermalScattering,,, he 18th Geant4 Collaboration Meeting at Seville, Spain

  4. Problems • HadronicProcess is implicitly designed for interaction between projectile particle and target nucleus (at rest). • In other words Particle-Particle • At ultra low energy, several physics quantities (e.g. thermal motion of target nucleus, bounding energy of atoms and so on)become important • To handle such interaction correctly, neutronHP requests providing those information to HadronicProcess • They are unused (unecessary) in most of others. • Sometime neutronHP compensate information tricky way • Requesting special names for “element” • Cross sections and models of NeutronHP package is not fully independently swappable • We had a trouble on this • As the result, both HadronicProcess and NeutronHP package enhanced its complexity to keep the framework he 18th Geant4 Collaboration Meeting at Seville, Spain

  5. Proposal • Introduce a new NeutronHPProcess (tentative name) and separate (some part of) NeutronHP package from hadronic framework (HadronicProcess) • Following slides show possible implementation in physics list he 18th Geant4 Collaboration Meeting at Seville, Spain

  6. Possible implementation 1 • Create a new HPProcessby wrapping a HadronicProcessand register only the new process in process manager of neutron • PhysicsList will be like neutronInelasticProcess = new G4NeutronInelasticProcess; ,,,,, neutronHPInelasticProcess= new G4NeutronHPInelasticProcess(neutronInelasticProcess); ,,,,, neutronProcessManager->AddProcess(neutronHPInelasticProcess); he 18th Geant4 Collaboration Meeting at Seville, Spain

  7. Possible implementation 2 • Create a newHPProcessand set energy limitation to HadronicProcess(new functionality) and register both of them in process manager of neutron • PhysicsList will be neutronInelastic = new G4NeutronInelasticProcess ,,,,,, neutronInelasticProcess->SetEmin(1*keV); neutronProcessManager->AddProcess(neutronInelasticProcess); neutronHPInelastic = newG4NeutronHPInelasticProcess; ,,,,,, neutronProcessManager>AddProcess(neutronHPInelasticProcess); he 18th Geant4 Collaboration Meeting at Seville, Spain

More Related