72{
73 aDataFile >> theMassCode >> theMass >> theIsomerFlag >> theDistLaw >> theGroundStateQValue
74 >> theActualStateQValue;
75 theGroundStateQValue *= CLHEP::eV;
76 theActualStateQValue *= CLHEP::eV;
77 theYield.Init(aDataFile, CLHEP::eV);
78 theYield.Hash();
79 if (theDistLaw == 0) {
80
81
82 theDist = new G4ParticleHPIsotropic;
83 }
84 else if (theDistLaw == 1) {
85
86 theDist = new G4ParticleHPContEnergyAngular(projectile);
87 }
88 else if (theDistLaw == 2) {
89
90 theDist = new G4ParticleHPDiscreteTwoBody;
91 }
92 else if (theDistLaw == 3) {
93
94 theDist = new G4ParticleHPIsotropic;
95 }
96 else if (theDistLaw == 4) {
97
98
99
100
101 }
102
103
104
105
106 else if (theDistLaw == 6) {
107
108 theDist = new G4ParticleHPNBodyPhaseSpace;
109 }
110 else if (theDistLaw == 7) {
111
112 theDist = new G4ParticleHPLabAngularEnergy;
113 }
114 else {
115 throw G4HadronicException(__FILE__, __LINE__,
116 "distribution law unknown to G4ParticleHPProduct");
117 }
118 if (theDist != nullptr) {
119 theDist->SetQValue(theActualStateQValue);
120 theDist->Init(aDataFile);
121 }
122}