Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Detectors/gconfig/src/O2MonopolePhysics.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ inline double tpcDriftFieldMagnitude()
return valueKVPerCm * CLHEP::kilovolt / CLHEP::cm;
} catch (...) {
LOG(warn) << "O2MonopolePhysics: the TPC is in the geometry but TPCGEMParam is not "
"registered; no drift-field coupling for the monopole";
"registered; no drift-field coupling for the monopole";
return 0.;
}
}
Expand Down Expand Up @@ -212,7 +212,7 @@ class O2MonopoleEquation : public G4EquationOfMotion
}
}

dydx[6] = 0.; // not used
dydx[6] = 0.; // not used
dydx[7] = energy * pModuleInverse / CLHEP::c_light; // inverse velocity
}

Expand All @@ -227,7 +227,7 @@ class O2MonopoleEquation : public G4EquationOfMotion
return trackingManager != nullptr ? trackingManager->GetTrack() : nullptr;
}

double mMagneticChargeEplus; ///< |g| in eplus units (1 g_D = 1/(2*alpha) ~ 68.5)
double mMagneticChargeEplus; ///< |g| in eplus units (1 g_D = 1/(2*alpha) ~ 68.5)
G4double mTPCDriftField = 0.; ///< TPC drift field, Geant4 units; 0 disables the coupling
G4double mElCharge = 0.;
G4double mMagCharge = 0.;
Expand Down
Loading