78 {
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105 const G4double deltaMass = theParticle->getMass();
106
108 sampleAngles(&ctet, &stet, &fi);
109
112 G4double beta = incidentDirection.mag();
113
116 if (beta >= 1.0e-10)
117 sal = incidentDirection.perp()/beta;
118 if (sal >= 1.0e-6) {
119 G4double b1 = incidentDirection.getX();
120 G4double b2 = incidentDirection.getY();
121 G4double b3 = incidentDirection.getZ();
123 G4double t1 = ctet+cal*stet*sfi/sal;
125 q1=(b1*t1+b2*t2*cfi)/beta;
126 q2=(b2*t1-b1*t2*cfi)/beta;
127 q3=(b3*t1/beta-t2*sfi);
128 } else {
129 q1 = stet*cfi;
130 q2 = stet*sfi;
131 q3 = ctet;
132 }
133 theParticle->setHelicity(0.0);
134
136#ifdef INCLXX_IN_GEANT4_MODE
137 G4int deltaPDGCode = 0;
138#endif
139 switch(theParticle->getType()) {
141 theParticle->setType(
Proton);
143#ifdef INCLXX_IN_GEANT4_MODE
144 deltaPDGCode = 2224;
145#endif
146 break;
151 } else {
152 theParticle->setType(
Proton);
154 }
155#ifdef INCLXX_IN_GEANT4_MODE
156 deltaPDGCode = 2214;
157#endif
158 break;
161 theParticle->setType(
Proton);
163 } else {
166 }
167#ifdef INCLXX_IN_GEANT4_MODE
168 deltaPDGCode = 2114;
169#endif
170 break;
174#ifdef INCLXX_IN_GEANT4_MODE
175 deltaPDGCode = 1114;
176#endif
177 break;
178 default:
179 INCL_FATAL(
"Unrecognized delta type; type=" << theParticle->getType() <<
'\n');
181 break;
182 }
183
185 theParticle->getMass(),
187
188 q1 *= xq;
189 q2 *= xq;
190 q3 *= xq;
191
192 ThreeVector pionMomentum(q1, q2, q3);
193 ThreeVector pionPosition(theParticle->getPosition());
194 Particle *
pion =
new Particle(pionType, pionMomentum, pionPosition);
195 theParticle->setMomentum(-pionMomentum);
196 theParticle->adjustEnergyFromMomentum();
197
198#ifdef INCLXX_IN_GEANT4_MODE
199
200
201 G4int parentResonanceID =
static_cast<G4int>(round(deltaMass/CLHEP::keV));
202 pion->setParentResonancePDGCode(deltaPDGCode);
203 pion->setParentResonanceID(parentResonanceID);
204 theParticle->setParentResonancePDGCode(deltaPDGCode);
205 theParticle->setParentResonanceID(parentResonanceID);
206#endif
207
208 fs->addModifiedParticle(theParticle);
209 fs->addCreatedParticle(pion);
210
211
212
213
214
215
216
217
218
219 }
G4double getINCLMass(const G4int A, const G4int Z, const G4int S)
Get INCL nuclear mass (in MeV/c^2)