Import Geant4 11.1.0 source tree
This commit is contained in:
+7
-8
@@ -50,9 +50,10 @@ class G4HadronBuilder
|
||||
G4ParticleDefinition * BuildHighSpin(G4ParticleDefinition * black, G4ParticleDefinition * white);
|
||||
|
||||
// ctor
|
||||
G4HadronBuilder(G4double mesonMix, G4double barionMix,
|
||||
std::vector<double> scalarMesonMix, std::vector<double> vectorMesonMix,
|
||||
G4double Eta_cProb, G4double Eta_bProb, G4double mesonMixSSbar);
|
||||
G4HadronBuilder(const std::vector<G4double> & mesonMix, const G4double barionMix,
|
||||
const std::vector<G4double> & scalarMesonMix,
|
||||
const std::vector<G4double> & vectorMesonMix,
|
||||
const G4double Eta_cProb, const G4double Eta_bProb);
|
||||
|
||||
private:
|
||||
G4HadronBuilder(); // no default ctor
|
||||
@@ -63,14 +64,12 @@ class G4HadronBuilder
|
||||
|
||||
G4ParticleDefinition * Barion(G4ParticleDefinition * black, G4ParticleDefinition * white, Spin spin);
|
||||
|
||||
G4double mesonSpinMix;
|
||||
G4double mesonSpinMixSSbar;
|
||||
std::vector<G4double> mesonSpinMix;
|
||||
G4double barionSpinMix;
|
||||
std::vector<double> scalarMesonMixings;
|
||||
std::vector<double> vectorMesonMixings;
|
||||
std::vector<G4double> scalarMesonMixings;
|
||||
std::vector<G4double> vectorMesonMixings;
|
||||
|
||||
G4double ProbEta_c, ProbEta_b;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
+1
-3
@@ -156,7 +156,6 @@ class G4VLongitudinalStringDecay : public G4HadronicInteraction
|
||||
void SetDiquarkSuppression(G4double aValue);
|
||||
void SetDiquarkBreakProbability(G4double aValue);
|
||||
|
||||
void SetVectorMesonProbability(G4double aValue);
|
||||
void SetSpinThreeHalfBarionProbability(G4double aValue);
|
||||
|
||||
void SetScalarMesonMixings( std::vector<G4double> aVector);
|
||||
@@ -193,8 +192,7 @@ class G4VLongitudinalStringDecay : public G4HadronicInteraction
|
||||
|
||||
G4HadronBuilder *hadronizer;
|
||||
|
||||
G4double pspin_meson;
|
||||
G4double pspin_mesonSSbar;
|
||||
std::vector<G4double> pspin_meson;
|
||||
G4double pspin_barion;
|
||||
std::vector<G4double> vectorMesonMix;
|
||||
std::vector<G4double> scalarMesonMix;
|
||||
|
||||
Reference in New Issue
Block a user