580{
581
582 G4HadronElastic* elastic_lhep0 = new G4HadronElastic();
583 G4ChipsElasticModel* elastic_chip = new G4ChipsElasticModel();
584 G4ElasticHadrNucleusHE* elastic_he = new G4ElasticHadrNucleusHE();
585
586 const G4double elastic_elimitAntiNuc = 100.0*CLHEP::MeV;
587 G4AntiNuclElastic* elastic_anuc = new G4AntiNuclElastic();
590 G4HadronElastic* elastic_lhep2 = new G4HadronElastic();
592
593
594 const G4double theFTFMin0 = 0.0*CLHEP::GeV;
595 const G4double theFTFMin1 = 4.0*CLHEP::GeV;
597 const G4double theBERTMin0 = 0.0*CLHEP::GeV;
598 const G4double theBERTMin1 = 19.0*CLHEP::MeV;
599 const G4double theBERTMax = 5.0*CLHEP::GeV;
600 const G4double theHPMin = 0.0*CLHEP::GeV;
601 const G4double theHPMax = 20.0*CLHEP::MeV;
602 const G4double theIonBCMin = 0.0*CLHEP::GeV;
603 const G4double theIonBCMax = 5.0*CLHEP::GeV;
604
605
606 G4FTFModel * theStringModel = new G4FTFModel;
607 G4ExcitedStringDecay * theStringDecay = new G4ExcitedStringDecay( new G4LundStringFragmentation );
609 G4PreCompoundModel * thePreEquilib = new G4PreCompoundModel( new G4ExcitationHandler );
610 G4GeneratorPrecompoundInterface * theCascade = new G4GeneratorPrecompoundInterface( thePreEquilib );
611
612 G4TheoFSGenerator * theFTFModel0 = new G4TheoFSGenerator( "FTFP" );
617
618 G4TheoFSGenerator * theFTFModel1 = new G4TheoFSGenerator( "FTFP" );
623
624 G4CascadeInterface * theBERTModel0 = new G4CascadeInterface;
627
628 G4CascadeInterface * theBERTModel1 = new G4CascadeInterface;
631
632
633 G4BinaryLightIonReaction * theIonBC = new G4BinaryLightIonReaction( thePreEquilib );
636
637 G4VCrossSectionDataSet * theAntiNucleonData = new G4CrossSectionInelastic( new G4ComponentAntiNuclNuclearXS );
638 G4ComponentGGNuclNuclXsc * ggNuclNuclXsec = new G4ComponentGGNuclNuclXsc();
639 G4VCrossSectionDataSet * theGGNuclNuclData = new G4CrossSectionInelastic(ggNuclNuclXsec);
640
642 myParticleIterator->
reset();
643 while ((*(myParticleIterator))())
644 {
645 G4ParticleDefinition* particle = myParticleIterator->value();
648
649 if (particleName == "pi+")
650 {
651
652 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
653 theElasticProcess->
AddDataSet(
new G4BGGPionElasticXS( particle ) );
656
657 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4PionPlus::Definition() );
659 theInelasticProcess->
RegisterMe( theFTFModel1 );
660 theInelasticProcess->
RegisterMe( theBERTModel0 );
662 }
663
664 else if (particleName == "pi-")
665 {
666
667 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
668 theElasticProcess->
AddDataSet(
new G4BGGPionElasticXS( particle ) );
671
672 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4PionMinus::Definition() );
674 theInelasticProcess->
RegisterMe( theFTFModel1 );
675 theInelasticProcess->
RegisterMe( theBERTModel0 );
677 }
678
679 else if (particleName == "kaon+")
680 {
681
682 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
683 theElasticProcess->
RegisterMe( elastic_lhep0 );
686
687 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4KaonPlus::Definition() );
688
690 theInelasticProcess->
RegisterMe( theFTFModel1 );
691 theInelasticProcess->
RegisterMe( theBERTModel0 );
693 }
694
695 else if (particleName == "kaon0S")
696 {
697
698 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
699 theElasticProcess->
RegisterMe( elastic_lhep0 );
702
705 theInelasticProcess->
RegisterMe( theFTFModel1 );
706 theInelasticProcess->
RegisterMe( theBERTModel0 );
708 }
709
710 else if (particleName == "kaon0L")
711 {
712
713 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
714 theElasticProcess->
RegisterMe( elastic_lhep0 );
717
718
721 theInelasticProcess->
RegisterMe( theFTFModel1 );
722 theInelasticProcess->
RegisterMe( theBERTModel0 );
724 }
725
726 else if (particleName == "kaon-")
727 {
728
729 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
730 theElasticProcess->
RegisterMe( elastic_lhep0 );
733
734 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4KaonMinus::Definition() );
736 theInelasticProcess->
RegisterMe( theFTFModel1 );
737 theInelasticProcess->
RegisterMe( theBERTModel0 );
739 }
740
741 else if (particleName == "proton")
742 {
743
744 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
747 theElasticProcess->
RegisterMe( elastic_chip );
749
750 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4Proton::Definition() );
752 theInelasticProcess->
RegisterMe( theFTFModel1 );
753 theInelasticProcess->
RegisterMe( theBERTModel0 );
755 }
756
757 else if (particleName == "anti_proton")
758 {
759
760 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
761 theElasticProcess->
AddDataSet( elastic_anucxs );
762 theElasticProcess->
RegisterMe( elastic_lhep2 );
763 theElasticProcess->
RegisterMe( elastic_anuc );
765
766 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4AntiProton::Definition() );
767 theInelasticProcess->
AddDataSet( theAntiNucleonData );
768 theInelasticProcess->
RegisterMe( theFTFModel0 );
770 }
771
772 else if (particleName == "neutron") {
773
774 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
776 G4HadronElastic* elastic_neutronChipsModel = new G4ChipsElasticModel();
777 elastic_neutronChipsModel->
SetMinEnergy( 19.0*CLHEP::MeV );
778 theElasticProcess->
RegisterMe( elastic_neutronChipsModel );
779 G4ParticleHPElastic * theElasticNeutronHP = new G4ParticleHPElastic;
782 theElasticProcess->
RegisterMe( theElasticNeutronHP );
783 theElasticProcess->
AddDataSet(
new G4ParticleHPElasticData );
785
786 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4Neutron::Definition() );
788 theInelasticProcess->
RegisterMe( theFTFModel1 );
789 theInelasticProcess->
RegisterMe( theBERTModel1 );
790 G4ParticleHPInelastic * theNeutronInelasticHPModel = new G4ParticleHPInelastic;
793 theInelasticProcess->
RegisterMe( theNeutronInelasticHPModel );
794 theInelasticProcess->
AddDataSet(
new G4ParticleHPInelasticData );
796
797 G4NeutronCaptureProcess* theCaptureProcess = new G4NeutronCaptureProcess;
801 G4NeutronRadCapture* theNeutronRadCapture = new G4NeutronRadCapture();
803 theCaptureProcess->
RegisterMe( theNeutronCaptureHPModel );
804 theCaptureProcess->
RegisterMe( theNeutronRadCapture);
808 }
809 else if (particleName == "anti_neutron")
810 {
811
812 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
813 theElasticProcess->
AddDataSet( elastic_anucxs );
814 theElasticProcess->
RegisterMe( elastic_lhep2 );
815 theElasticProcess->
RegisterMe( elastic_anuc );
817
818 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4AntiNeutron::Definition() );
819 theInelasticProcess->
AddDataSet( theAntiNucleonData );
820 theInelasticProcess->
RegisterMe( theFTFModel0 );
822 }
823
824 else if (particleName == "deuteron")
825 {
826
827 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
828 theElasticProcess->
RegisterMe( elastic_lhep0 );
829 theElasticProcess->
AddDataSet( theGGNuclNuclData );
831
832 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4Deuteron::Definition() );
833 theInelasticProcess->
AddDataSet( theGGNuclNuclData );
834 theInelasticProcess->
RegisterMe( theFTFModel1 );
837 }
838
839 else if (particleName == "triton")
840 {
841
842 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
843 theElasticProcess->
RegisterMe( elastic_lhep0 );
844 theElasticProcess->
AddDataSet( theGGNuclNuclData );
846
847 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4Triton::Definition() );
848 theInelasticProcess->
AddDataSet( theGGNuclNuclData );
849 theInelasticProcess->
RegisterMe( theFTFModel1 );
852 }
853
854 else if (particleName == "alpha")
855 {
856
857 G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
858 theElasticProcess->
RegisterMe( elastic_lhep0 );
859 theElasticProcess->
AddDataSet( theGGNuclNuclData );
861
862 G4HadronInelasticProcess* theInelasticProcess =
new G4HadronInelasticProcess(
"inelastic",
G4Alpha::Definition() );
863 theInelasticProcess->
AddDataSet( theGGNuclNuclData );
864 theInelasticProcess->
RegisterMe( theFTFModel1 );
867 }
868 }
869
870
871 stoppingPhysics->ConstructProcess();
872}
G4NeutronHPCaptureData G4ParticleHPCaptureData
G4NeutronHPCapture G4ParticleHPCapture
static G4Alpha * Definition()
static G4AntiNeutron * Definition()
G4ComponentAntiNuclNuclearXS * GetComponentCrossSection()
static G4AntiProton * Definition()
static const char * Default_Name()
static const char * Default_Name()
static const char * Default_Name()
static const char * Default_Name()
static const char * Default_Name()
static const char * Default_Name()
static const char * Default_Name()
static const char * Default_Name()
static G4CrossSectionDataSetRegistry * Instance()
static G4Deuteron * Definition()
void SetMinEnergy(G4double anEnergy)
void SetMaxEnergy(const G4double anEnergy)
static G4HadronicParameters * Instance()
G4double GetMaxEnergy() const
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
void RegisterMe(G4HadronicInteraction *a)
static G4KaonMinus * Definition()
static G4KaonPlus * Definition()
static G4KaonZeroLong * Definition()
static G4KaonZeroShort * Definition()
static const char * Default_Name()
static G4Neutron * Neutron()
static G4Neutron * Definition()
static G4PionMinus * Definition()
static G4PionPlus * Definition()
static G4Proton * Definition()
static G4Proton * Proton()
void SetTransport(G4VIntraNuclearTransportModel *const value)
void SetHighEnergyGenerator(G4VHighEnergyGenerator *const value)
static G4Triton * Definition()
void SetFragmentationModel(G4VStringFragmentation *aModel)