Skip to content
Snippets Groups Projects
Commit 69553233 authored by Frank Gaede's avatar Frank Gaede
Browse files

- fixed charge (don't deveide by three)

parent 2fa06f0d
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ namespace DD4hep { ...@@ -95,7 +95,7 @@ namespace DD4hep {
q->setMass(p->mass/GeV); q->setMass(p->mass/GeV);
q->setCharge(def ? def->GetPDGCharge()/3.0 : 0); // Charge(e+) = 1 ! q->setCharge(def ? def->GetPDGCharge() : 0); // Charge(e+) = 1 !
// Set generator status // Set generator status
//if ( mask.isSet(G4PARTICLE_GEN_EMPTY) ) //if ( mask.isSet(G4PARTICLE_GEN_EMPTY) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment