98 {
99
100
101
102
103
104
105
108
109 ParticleList list;
110 list.push_back(particle1);
111 list.push_back(particle2);
112
113
115 const G4int isospin = is1+is2;
116
118 G4double xmdel = sampleDeltaMass(ecm);
119
121 if (isospin == 0) {
123 if (rndm < 0.5) index2=1;
124 }
125
126 if (isospin == 0) {
127 if(index2 == 1) {
129 is1=is2;
130 is2=isi;
131 }
132
133 } else {
135 if (rndm >= 0.25) {
136 is1=3*is1;
137 is2=-is2;
138 }
139
140 }
141
150 }
151
153 particle2->setType(
Proton);
156 }
157
158 if(particle1->isDelta()) particle1->setMass(xmdel);
159 if(particle2->isDelta()) particle2->setMass(xmdel);
160
161 const ThreeVector &rcolnucleon1 = particle1->getPosition();
162 const ThreeVector &rcolnucleon2 = particle2->getPosition();
163 const ThreeVector rcol = (rcolnucleon1+rcolnucleon2)*0.5;
164 const ThreeVector zero;
165 Particle *eta =
new Particle(
Eta,zero,rcol);
166 list.push_back(eta);
167 fs->addCreatedParticle(eta);
168
172
173 const ThreeVector vz(0.0,0.0,1.0);
174 G4double ctet=(particle1->getMomentum().dot(vz))/particle1->getMomentum().mag();
175 if (isospin == 0)
176 particle1->setHelicity(0.0);
177 else
178 particle1->setHelicity(ctet*ctet);
179
180 fs->addModifiedParticle(particle1);
181 fs->addModifiedParticle(particle2);
182
183 }
G4double totalEnergyInCM(Particle const *const p1, Particle const *const p2)
G4int getIsospin(const ParticleType t)
Get the isospin of a particle.
void generateBiased(const G4double sqrtS, ParticleList &particles, const size_t index, const G4double slope)
Generate a biased event in the CM system.