Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4PrimaryTransformer Class Reference

#include <G4PrimaryTransformer.hh>

Public Member Functions

 G4PrimaryTransformer ()
 
virtual ~G4PrimaryTransformer ()=default
 
G4TrackVectorGimmePrimaries (G4Event *anEvent, G4int trackIDCounter=0)
 
void CheckUnknown ()
 
void SetVerboseLevel (G4int vl)
 
void SetUnknownParticleDefined (G4bool vl)
 
void SetChargedUnknownParticleDefined (G4bool vl)
 
G4bool GetUnknownParticleDefined () const
 
G4bool GetChargedUnknownParticleDefined () const
 

Static Public Member Functions

static void SetKETolerance (G4double val, G4ExceptionSeverity sev=JustWarning)
 

Protected Member Functions

void GenerateTracks (G4PrimaryVertex *primaryVertex)
 
void GenerateSingleTrack (G4PrimaryParticle *primaryParticle, G4double x0, G4double y0, G4double z0, G4double t0, G4double wv)
 
void SetDecayProducts (G4PrimaryParticle *mother, G4DynamicParticle *motherDP)
 
G4bool CheckDynamicParticle (G4DynamicParticle *DP)
 
virtual G4ParticleDefinitionGetDefinition (G4PrimaryParticle *pp)
 
virtual G4bool IsGoodForTrack (G4ParticleDefinition *pd)
 

Protected Attributes

G4TrackVector TV
 
G4ParticleTableparticleTable = nullptr
 
G4ParticleDefinitionunknown = nullptr
 
G4ParticleDefinitionchargedunknown = nullptr
 
G4ParticleDefinitionopticalphoton = nullptr
 
G4int verboseLevel = 0
 
G4int trackID = 0
 
G4int nWarn = 0
 
G4bool unknownParticleDefined = false
 
G4bool chargedUnknownParticleDefined = false
 
G4bool opticalphotonDefined = false
 

Static Protected Attributes

static G4double kETolerance = 1.0 * CLHEP::MeV
 
static G4ExceptionSeverity kETSeverity = JustWarning
 

Detailed Description

Definition at line 48 of file G4PrimaryTransformer.hh.

Constructor & Destructor Documentation

◆ G4PrimaryTransformer()

G4PrimaryTransformer::G4PrimaryTransformer ( )

Definition at line 47 of file G4PrimaryTransformer.cc.

◆ ~G4PrimaryTransformer()

virtual G4PrimaryTransformer::~G4PrimaryTransformer ( )
virtualdefault

Member Function Documentation

◆ CheckDynamicParticle()

G4bool G4PrimaryTransformer::CheckDynamicParticle ( G4DynamicParticle * DP)
protected

Definition at line 377 of file G4PrimaryTransformer.cc.

378{
379 if(IsGoodForTrack(DP->GetDefinition())) return true;
380 auto* decayProducts
381 = (G4DecayProducts*)(DP->GetPreAssignedDecayProducts());
382 if(decayProducts != nullptr && decayProducts->entries()>0) return true;
383 G4cerr << G4endl
384 << "G4PrimaryTransformer: a shortlived primary particle is found"
385 << G4endl
386 << " without any valid decay table nor pre-assigned decay mode."
387 << G4endl;
388 G4Exception("G4PrimaryTransformer", "InvalidPrimary", JustWarning,
389 "This primary particle will be ignored.");
390 return false;
391}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition G4ios.hh:67
const G4DecayProducts * GetPreAssignedDecayProducts() const
G4ParticleDefinition * GetDefinition() const
virtual G4bool IsGoodForTrack(G4ParticleDefinition *pd)

Referenced by GenerateSingleTrack(), and SetDecayProducts().

◆ CheckUnknown()

void G4PrimaryTransformer::CheckUnknown ( )

Definition at line 53 of file G4PrimaryTransformer.cc.

54{
55 unknown = particleTable->FindParticle("unknown");
57 chargedunknown = particleTable->FindParticle("chargedunknown");
59 opticalphoton = particleTable->FindParticle("opticalphoton");
61}
G4ParticleDefinition * chargedunknown
G4ParticleDefinition * unknown
G4ParticleDefinition * opticalphoton

Referenced by G4PrimaryTransformer(), and G4RunManagerKernel::RunInitialization().

◆ GenerateSingleTrack()

void G4PrimaryTransformer::GenerateSingleTrack ( G4PrimaryParticle * primaryParticle,
G4double x0,
G4double y0,
G4double z0,
G4double t0,
G4double wv )
protected

Definition at line 113 of file G4PrimaryTransformer.cc.

117{
118 G4ParticleDefinition* partDef = GetDefinition(primaryParticle);
119 if(!IsGoodForTrack(partDef))
120 { // The particle cannot be converted to G4Track, check daughters
121#ifdef G4VERBOSE
122 if(verboseLevel>1)
123 {
124 G4cout << "Primary particle (PDGcode " << primaryParticle->GetPDGcode()
125 << ") --- Ignored" << G4endl;
126 }
127#endif
128 G4PrimaryParticle* daughter = primaryParticle->GetDaughter();
129 while(daughter != nullptr) // Loop checking 12.28.2015 M.Asai
130 {
131 GenerateSingleTrack(daughter,x0,y0,z0,t0,wv);
132 daughter = daughter->GetNext();
133 }
134 }
135 else // The particle is defined in GEANT4
136 {
137 // Create G4DynamicParticle object
138#ifdef G4VERBOSE
139 if(verboseLevel>1)
140 {
141 G4cout << "Primary particle (" << partDef->GetParticleName()
142 << ") --- Transferred with momentum "
143 << primaryParticle->GetMomentum()
144 << G4endl;
145 }
146#endif
147 // Check the mass of the "real" particle
148 // N.B. PDG code 0 is used for artificial particle such as geantino
149 if(primaryParticle->GetPDGcode() != 0 && kETSeverity != IgnoreTheIssue)
150 {
151 G4double pmas = partDef->GetPDGMass();
152 if(std::abs(pmas - primaryParticle->GetMass()) > kETolerance) {
154 ed << "Primary particle PDG=" << primaryParticle->GetPDGcode()
155 << " deltaMass(MeV)=" << (std::abs(pmas - primaryParticle->GetMass()))/CLHEP::MeV
156 << " is larger than the tolerance(MeV)=" << kETolerance/CLHEP::MeV
157 << "\n Specified mass(MeV)=" << (primaryParticle->GetMass())/CLHEP::MeV
158 << " while PDG mass(MEV)=" << pmas/CLHEP::MeV
159 << "\n To change the tolerance or the exception severity,"
160 << " use G4PrimaryTransformer::SetKETolerance() method.";
161 G4Exception("G4PrimaryParticle::Set4Momentum", "part0005", kETSeverity, ed);
162 }
163 }
164 auto* DP =
165 new G4DynamicParticle(partDef,
166 primaryParticle->GetMomentumDirection(),
167 primaryParticle->GetKineticEnergy());
169 && primaryParticle->GetPolarization().mag2()==0.)
170 {
171 if(nWarn<10)
172 {
173 G4Exception("G4PrimaryTransformer::GenerateSingleTrack",
174 "ZeroPolarization", JustWarning,
175 "Polarization of the optical photon is null.\
176 Random polarization is assumed.");
177 G4cerr << "This warning message is issued up to 10 times." << G4endl;
178 ++nWarn;
179 }
180
181 G4double angle = G4UniformRand() * 360.0*deg;
182 G4ThreeVector normal (1., 0., 0.);
183 G4ThreeVector kphoton = DP->GetMomentumDirection();
184 G4ThreeVector product = normal.cross(kphoton);
185 G4double modul2 = product*product;
186
187 G4ThreeVector e_perpend (0., 0., 1.);
188 if (modul2 > 0.) e_perpend = (1./std::sqrt(modul2))*product;
189 G4ThreeVector e_paralle = e_perpend.cross(kphoton);
190
191 G4ThreeVector polar = std::cos(angle)*e_paralle
192 + std::sin(angle)*e_perpend;
193 DP->SetPolarization(polar.x(),polar.y(),polar.z());
194 }
195 else
196 {
197 DP->SetPolarization(primaryParticle->GetPolX(),
198 primaryParticle->GetPolY(),
199 primaryParticle->GetPolZ());
200 }
201 if(primaryParticle->GetProperTime()>=0.0)
202 {
203 DP->SetPreAssignedDecayProperTime(primaryParticle->GetProperTime());
204 }
205
206 // Set Mass if it is specified
207 //
208 G4double pmas = primaryParticle->GetMass();
209 if(pmas>=0.) { DP->SetMass(pmas); }
210
211 // Set Charge if it is specified
212 //
213 if (primaryParticle->GetCharge()<DBL_MAX)
214 {
215 if (partDef->GetAtomicNumber() <0)
216 {
217 DP->SetCharge(primaryParticle->GetCharge());
218 }
219 else // ions
220 {
221 G4int iz = partDef->GetAtomicNumber();
222 auto iq = static_cast<G4int>(primaryParticle->GetCharge()/eplus);
223 G4int n_e = iz - iq;
224 if (n_e>0) DP->AddElectron(0,n_e);
225 }
226 }
227 // Set decay products to the DynamicParticle
228 //
229 SetDecayProducts( primaryParticle, DP );
230
231 // Set primary particle
232 //
233 DP->SetPrimaryParticle(primaryParticle);
234
235 // Set PDG code if it is different from G4ParticleDefinition
236 //
237 if(partDef->GetPDGEncoding()==0 && primaryParticle->GetPDGcode()!=0)
238 {
239 DP->SetPDGcode(primaryParticle->GetPDGcode());
240 }
241
242 // Check the particle is properly constructed
243 //
244 if(!CheckDynamicParticle(DP))
245 {
246 delete DP;
247 return;
248 }
249
250 // Create G4Track object
251 //
252 auto track = new G4Track(DP,t0,G4ThreeVector(x0,y0,z0));
253
254 // Set trackID and let primary particle know it
255 //
256 ++trackID;
257 track->SetTrackID(trackID);
258 primaryParticle->SetTrackID(trackID);
259
260 // Set parentID to 0 as a primary particle
261 //
262 track->SetParentID(0);
263
264 // Set weight ( vertex weight * particle weight )
265 //
266 track->SetWeight(wv*(primaryParticle->GetWeight()));
267
268 // Store it to G4TrackVector
269 //
270 TV.push_back( track );
271 }
272}
@ IgnoreTheIssue
std::ostringstream G4ExceptionDescription
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
G4GLOB_DLL std::ostream G4cout
#define G4UniformRand()
Definition Randomize.hh:52
double z() const
double x() const
double mag2() const
double y() const
Hep3Vector cross(const Hep3Vector &) const
G4int GetAtomicNumber() const
const G4String & GetParticleName() const
G4double GetWeight() const
G4double GetCharge() const
G4double GetKineticEnergy() const
G4double GetProperTime() const
const G4ThreeVector & GetMomentumDirection() const
G4double GetPolY() const
void SetTrackID(G4int id)
G4ThreeVector GetPolarization() const
G4PrimaryParticle * GetNext() const
G4double GetMass() const
G4ThreeVector GetMomentum() const
G4double GetPolZ() const
G4double GetPolX() const
G4PrimaryParticle * GetDaughter() const
G4bool CheckDynamicParticle(G4DynamicParticle *DP)
virtual G4ParticleDefinition * GetDefinition(G4PrimaryParticle *pp)
static G4ExceptionSeverity kETSeverity
void SetDecayProducts(G4PrimaryParticle *mother, G4DynamicParticle *motherDP)
void GenerateSingleTrack(G4PrimaryParticle *primaryParticle, G4double x0, G4double y0, G4double z0, G4double t0, G4double wv)
#define DBL_MAX
Definition templates.hh:62

Referenced by GenerateSingleTrack(), and GenerateTracks().

◆ GenerateTracks()

void G4PrimaryTransformer::GenerateTracks ( G4PrimaryVertex * primaryVertex)
protected

Definition at line 82 of file G4PrimaryTransformer.cc.

83{
84 G4double X0 = primaryVertex->GetX0();
85 G4double Y0 = primaryVertex->GetY0();
86 G4double Z0 = primaryVertex->GetZ0();
87 G4double T0 = primaryVertex->GetT0();
88 G4double WV = primaryVertex->GetWeight();
89
90#ifdef G4VERBOSE
91 if(verboseLevel>2)
92 {
93 primaryVertex->Print();
94 }
95 else if (verboseLevel==1)
96 {
97 G4cout << "G4PrimaryTransformer::PrimaryVertex ("
98 << X0 / mm << "(mm),"
99 << Y0 / mm << "(mm),"
100 << Z0 / mm << "(mm),"
101 << T0 / nanosecond << "(nsec))" << G4endl;
102 }
103#endif
104
105 G4PrimaryParticle* primaryParticle = primaryVertex->GetPrimary();
106 while( primaryParticle != nullptr ) // Loop checking 12.28.2015 M.Asai
107 {
108 GenerateSingleTrack( primaryParticle, X0, Y0, Z0, T0, WV );
109 primaryParticle = primaryParticle->GetNext();
110 }
111}
G4double GetT0() const
G4double GetWeight() const
G4double GetZ0() const
G4double GetX0() const
G4double GetY0() const
G4PrimaryParticle * GetPrimary(G4int i=0) const

Referenced by GimmePrimaries().

◆ GetChargedUnknownParticleDefined()

G4bool G4PrimaryTransformer::GetChargedUnknownParticleDefined ( ) const
inline

Definition at line 70 of file G4PrimaryTransformer.hh.

◆ GetDefinition()

G4ParticleDefinition * G4PrimaryTransformer::GetDefinition ( G4PrimaryParticle * pp)
protectedvirtual

Definition at line 394 of file G4PrimaryTransformer.cc.

395{
396 G4ParticleDefinition* partDef = pp->GetG4code();
397 if(partDef == nullptr)
398 {
399 partDef = particleTable->FindParticle(pp->GetPDGcode());
400 }
401 if((partDef == nullptr) || partDef->IsShortLived())
402 {
403 if (chargedUnknownParticleDefined && pp->GetCharge()!=0.0)
404 {
405 partDef = chargedunknown;
406 }
407 else if (unknownParticleDefined)
408 {
409 partDef = unknown;
410 }
411 }
412 return partDef;
413}

Referenced by GenerateSingleTrack(), and SetDecayProducts().

◆ GetUnknownParticleDefined()

G4bool G4PrimaryTransformer::GetUnknownParticleDefined ( ) const
inline

Definition at line 67 of file G4PrimaryTransformer.hh.

68 { return unknownParticleDefined; }

◆ GimmePrimaries()

G4TrackVector * G4PrimaryTransformer::GimmePrimaries ( G4Event * anEvent,
G4int trackIDCounter = 0 )

Definition at line 64 of file G4PrimaryTransformer.cc.

65{
66 trackID = trackIDCounter;
67
68 for(auto tr : TV) delete tr;
69 TV.clear();
70
71 // Loop over vertices
72 //
73 G4PrimaryVertex* nextVertex = anEvent->GetPrimaryVertex();
74 while(nextVertex != nullptr) // Loop checking 12.28.2015 M.Asai
75 {
76 GenerateTracks(nextVertex);
77 nextVertex = nextVertex->GetNext();
78 }
79 return &TV;
80}
G4PrimaryVertex * GetPrimaryVertex(G4int i=0) const
Definition G4Event.hh:145
void GenerateTracks(G4PrimaryVertex *primaryVertex)
G4PrimaryVertex * GetNext() const

◆ IsGoodForTrack()

G4bool G4PrimaryTransformer::IsGoodForTrack ( G4ParticleDefinition * pd)
protectedvirtual

Definition at line 415 of file G4PrimaryTransformer.cc.

416{
417 if(pd == nullptr)
418 { return false; }
419 if(!(pd->IsShortLived()))
420 { return true; }
421 //
422 // Following two lines should be removed if the user does not want to make
423 // shortlived primary particle with proper decay table to be converted into
424 // a track.
425 //
426 if(pd->GetDecayTable() != nullptr)
427 { return true; }
428
429 return false;
430}
G4DecayTable * GetDecayTable() const

Referenced by CheckDynamicParticle(), GenerateSingleTrack(), and SetDecayProducts().

◆ SetChargedUnknownParticleDefined()

void G4PrimaryTransformer::SetChargedUnknownParticleDefined ( G4bool vl)

Definition at line 365 of file G4PrimaryTransformer.cc.

366{
369 {
370 G4cerr << "chargedUnknownParticleDefined cannot be set true because" << G4endl
371 << "G4ChargedUnknownParticle is not defined in the physics list." << G4endl
372 << "Command ignored." << G4endl;
374 }
375}

◆ SetDecayProducts()

void G4PrimaryTransformer::SetDecayProducts ( G4PrimaryParticle * mother,
G4DynamicParticle * motherDP )
protected

Definition at line 274 of file G4PrimaryTransformer.cc.

276{
277 G4PrimaryParticle* daughter = mother->GetDaughter();
278 if(daughter == nullptr) return;
279 auto* decayProducts
280 = (G4DecayProducts*)(motherDP->GetPreAssignedDecayProducts() );
281 if(decayProducts == nullptr)
282 {
283 decayProducts = new G4DecayProducts(*motherDP);
284 motherDP->SetPreAssignedDecayProducts(decayProducts);
285 }
286 while(daughter != nullptr)
287 {
288 G4ParticleDefinition* partDef = GetDefinition(daughter);
289 if(!IsGoodForTrack(partDef))
290 {
291#ifdef G4VERBOSE
292 if(verboseLevel>2)
293 {
294 G4cout << " >> Decay product (PDGcode " << daughter->GetPDGcode()
295 << ") --- Ignored" << G4endl;
296 }
297#endif
298 SetDecayProducts(daughter,motherDP);
299 }
300 else
301 {
302#ifdef G4VERBOSE
303 if(verboseLevel>1)
304 {
305 G4cout << " >> Decay product (" << partDef->GetParticleName()
306 << ") --- Attached with momentum " << daughter->GetMomentum()
307 << G4endl;
308 }
309#endif
310 auto* DP
311 = new G4DynamicParticle(partDef,daughter->GetMomentum());
312 DP->SetPrimaryParticle(daughter);
313
314 // Decay proper time for daughter
315 //
316 if(daughter->GetProperTime()>=0.0)
317 {
318 DP->SetPreAssignedDecayProperTime(daughter->GetProperTime());
319 }
320
321 // Set Charge and Mass is specified
322 //
323 if (daughter->GetCharge()<DBL_MAX)
324 {
325 DP->SetCharge(daughter->GetCharge());
326 }
327 G4double pmas = daughter->GetMass();
328 if(pmas>=0.)
329 {
330 DP->SetMass(pmas);
331 }
332
333 // Set Polarization
334 //
335 DP->SetPolarization(daughter->GetPolX(),
336 daughter->GetPolY(),
337 daughter->GetPolZ());
338 decayProducts->PushProducts(DP);
339 SetDecayProducts(daughter,DP);
340
341 // Check the particle is properly constructed
342 //
343 if(!CheckDynamicParticle(DP))
344 {
345 delete DP;
346 return;
347 }
348 }
349 daughter = daughter->GetNext();
350 }
351}
void SetPreAssignedDecayProducts(G4DecayProducts *aDecayProducts)

Referenced by GenerateSingleTrack(), and SetDecayProducts().

◆ SetKETolerance()

static void G4PrimaryTransformer::SetKETolerance ( G4double val,
G4ExceptionSeverity sev = JustWarning )
inlinestatic

Definition at line 115 of file G4PrimaryTransformer.hh.

116 { kETolerance = val; kETSeverity = sev; }

◆ SetUnknownParticleDefined()

void G4PrimaryTransformer::SetUnknownParticleDefined ( G4bool vl)

Definition at line 353 of file G4PrimaryTransformer.cc.

354{
356 if(unknownParticleDefined && (unknown == nullptr))
357 {
358 G4cerr << "unknownParticleDefined cannot be set true because" << G4endl
359 << "G4UnknownParticle is not defined in the physics list." << G4endl
360 << "Command ignored." << G4endl;
362 }
363}

◆ SetVerboseLevel()

void G4PrimaryTransformer::SetVerboseLevel ( G4int vl)
inline

Definition at line 58 of file G4PrimaryTransformer.hh.

59 { verboseLevel = vl; }

Member Data Documentation

◆ chargedunknown

G4ParticleDefinition* G4PrimaryTransformer::chargedunknown = nullptr
protected

◆ chargedUnknownParticleDefined

G4bool G4PrimaryTransformer::chargedUnknownParticleDefined = false
protected

◆ kETolerance

G4double G4PrimaryTransformer::kETolerance = 1.0 * CLHEP::MeV
staticprotected

Definition at line 112 of file G4PrimaryTransformer.hh.

Referenced by GenerateSingleTrack(), and SetKETolerance().

◆ kETSeverity

G4ExceptionSeverity G4PrimaryTransformer::kETSeverity = JustWarning
staticprotected

Definition at line 113 of file G4PrimaryTransformer.hh.

Referenced by GenerateSingleTrack(), and SetKETolerance().

◆ nWarn

G4int G4PrimaryTransformer::nWarn = 0
protected

Definition at line 107 of file G4PrimaryTransformer.hh.

Referenced by GenerateSingleTrack().

◆ opticalphoton

G4ParticleDefinition* G4PrimaryTransformer::opticalphoton = nullptr
protected

Definition at line 104 of file G4PrimaryTransformer.hh.

Referenced by CheckUnknown(), and GenerateSingleTrack().

◆ opticalphotonDefined

G4bool G4PrimaryTransformer::opticalphotonDefined = false
protected

Definition at line 110 of file G4PrimaryTransformer.hh.

Referenced by CheckUnknown(), and GenerateSingleTrack().

◆ particleTable

G4ParticleTable* G4PrimaryTransformer::particleTable = nullptr
protected

Definition at line 100 of file G4PrimaryTransformer.hh.

Referenced by CheckUnknown(), G4PrimaryTransformer(), and GetDefinition().

◆ trackID

G4int G4PrimaryTransformer::trackID = 0
protected

Definition at line 106 of file G4PrimaryTransformer.hh.

Referenced by GenerateSingleTrack(), and GimmePrimaries().

◆ TV

G4TrackVector G4PrimaryTransformer::TV
protected

Definition at line 99 of file G4PrimaryTransformer.hh.

Referenced by GenerateSingleTrack(), and GimmePrimaries().

◆ unknown

G4ParticleDefinition* G4PrimaryTransformer::unknown = nullptr
protected

Definition at line 102 of file G4PrimaryTransformer.hh.

Referenced by CheckUnknown(), GetDefinition(), and SetUnknownParticleDefined().

◆ unknownParticleDefined

G4bool G4PrimaryTransformer::unknownParticleDefined = false
protected

◆ verboseLevel

G4int G4PrimaryTransformer::verboseLevel = 0
protected

The documentation for this class was generated from the following files: