110{
111 if (definition == nullptr)
112 {
113
114 return;
115 }
116
117 if (verbosityLevel > 1)
118 {
119 G4cout <<
" NumberOfParticlesToBeGenerated: "
120 << NumberOfParticlesToBeGenerated <<
G4endl;
121 }
122
123 part_prop_t&
pp = ParticleProperties.Get();
124
125
126 pp.position = posGenerator->GenerateOne();
127
128
129 auto* vertex =
new G4PrimaryVertex(
pp.position,time);
130
131 for (
G4int i=0; i<NumberOfParticlesToBeGenerated; ++i)
132 {
133
134 pp.momentum_direction = angGenerator->GenerateOne();
135
136
137 pp.energy = eneGenerator->GenerateOne(definition);
138
139 if (verbosityLevel >= 2)
140 {
141 G4cout <<
"Creating primaries and assigning to vertex" <<
G4endl;
142 }
143
144
145
146 G4double mass = definition->GetPDGMass();
147 auto* particle = new G4PrimaryParticle(definition);
148 particle->SetKineticEnergy(
pp.energy );
149 particle->SetMass( mass );
150 particle->SetMomentumDirection(
pp.momentum_direction );
151 particle->SetCharge( charge );
152 particle->SetPolarization(polarization.x(),
153 polarization.y(),
154 polarization.z());
155 if (verbosityLevel > 1)
156 {
157 G4cout <<
"Particle name: " << definition->GetParticleName() <<
G4endl;
161 }
162
163
164
165 G4double weight = eneGenerator->GetWeight()*biasRndm->GetBiasWeight();
166
167 if(eneGenerator->IfApplyEnergyWeight())
168 {
169 weight *= eneGenerator->GetArbEneWeight(
pp.energy);
170 }
171
172
173
174 particle->SetWeight(weight);
175 vertex->SetPrimary(particle);
176 }
177
178
179
181
182 if (verbosityLevel > 1)
183 {
185 }
186}
G4GLOB_DLL std::ostream G4cout
void AddPrimaryVertex(G4PrimaryVertex *aPrimaryVertex)