98{
102
103
105 const G4double eminBert = 1.0*CLHEP::GeV;
106 const G4double emaxBic = 1.5*CLHEP::GeV;
108 const G4double emaxBertPions = 12.*CLHEP::GeV;
110
112 G4cout <<
"### HadronInelasticQBBC Construct Process:\n"
113 << " Emin(FTFP)= " << eminFtf/CLHEP::GeV
114 << " GeV; Emax(FTFP)= " << emax/CLHEP::GeV << " GeV\n"
115 << " Emin(BERT)= " << eminBert/CLHEP::GeV
116 << " GeV; Emax(BERT)= " << emaxBert/CLHEP::GeV
117 << " GeV; Emax(BERTpions)= " << emaxBertPions/CLHEP::GeV
118 << " GeV;\n" << " Emin(BIC) = 0 GeV; Emax(BIC)= "
119 << emaxBic/CLHEP::GeV <<
" GeV." <<
G4endl;
120 }
121
122
123 G4PreCompoundModel* thePreCompound = nullptr;
124 G4HadronicInteraction* p =
126 thePreCompound = static_cast<G4PreCompoundModel*>(p);
127 if(!thePreCompound) { thePreCompound = new G4PreCompoundModel(); }
128
129 auto theFTFP = new G4TheoFSGenerator("FTFP");
130 auto theStringModel = new G4FTFModel();
131 theStringModel->SetFragmentationModel(new G4ExcitedStringDecay());
132 theFTFP->SetHighEnergyGenerator( theStringModel );
133 theFTFP->SetTransport( new G4GeneratorPrecompoundInterface() );
134 theFTFP->SetMinEnergy( eminFtf );
135 theFTFP->SetMaxEnergy( emax );
136
137 auto theBERT = new G4CascadeInterface();
138 theBERT->SetMinEnergy( eminBert );
139 theBERT->SetMaxEnergy( emaxBert );
140 theBERT->usePreCompoundDeexcitation();
141
142 auto theBERT1 = new G4CascadeInterface();
143 theBERT1->SetMinEnergy( eminBert );
144 theBERT1->SetMaxEnergy( emaxBertPions );
145 theBERT1->usePreCompoundDeexcitation();
146
147 auto theBIC = new G4BinaryCascade(thePreCompound);
148 theBIC->SetMaxEnergy( emaxBic );
149
150
152 G4HadronicProcess* hp =
153 new G4HadronInelasticProcess( particle->
GetParticleName()+
"Inelastic", particle );
154 hp->
AddDataSet(
new G4ParticleInelasticXS(particle));
160
161
163 G4HadronicProcess* ni =
164 new G4HadronInelasticProcess( "neutronInelastic", particle );
169
170
172 hp =
new G4HadronInelasticProcess( particle->
GetParticleName()+
"Inelastic", particle );
173 hp->
AddDataSet(
new G4BGGPionInelasticXS(particle));
179
180
182 hp =
new G4HadronInelasticProcess( particle->
GetParticleName()+
"Inelastic", particle );
183 hp->
AddDataSet(
new G4BGGPionInelasticXS(particle));
189
190
192
193
195
196
198
199
201
202
205 }
206 }
207}
G4GLOB_DLL std::ostream G4cout
static void BuildNeutronInelasticAndCapture(G4HadronicProcess *)
static void BuildBCHadronsFTFP_BERT()
static void BuildHyperonsFTFP_BERT()
static void BuildKaonsFTFP_BERT()
static void BuildAntiLightIonsFTFP()
G4HadronicInteraction * FindModel(const G4String &name)
static G4HadronicInteractionRegistry * Instance()
G4bool ApplyFactorXS() const
G4int GetVerboseLevel() const
G4double GetMinEnergyTransitionFTF_Cascade() const
G4double GetMaxEnergyTransitionFTF_Cascade() const
G4bool EnableBCParticles() const
G4double EnergyThresholdForHeavyHadrons() const
G4double XSFactorPionInelastic() const
G4double GetMaxEnergy() const
G4double XSFactorNucleonInelastic() const
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
void MultiplyCrossSectionBy(G4double factor)
void RegisterMe(G4HadronicInteraction *a)
static G4Neutron * Neutron()
const G4String & GetParticleName() const
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
static G4PhysicsListHelper * GetPhysicsListHelper()
static G4PionMinus * PionMinus()
static G4PionPlus * PionPlus()
static G4Proton * Proton()