20 #include "G4ErrorCylSurfaceTarget.hh" 21 #include "G4ErrorFreeTrajState.hh" 22 #include "G4ErrorPlaneSurfaceTarget.hh" 23 #include "G4ErrorPropagatorData.hh" 24 #include "G4ErrorRunManagerHelper.hh" 25 #include "G4EventManager.hh" 27 #include "G4FieldManager.hh" 28 #include "G4GeometryTolerance.hh" 29 #include "G4SteppingControl.hh" 30 #include "G4TransportationManager.hh" 32 #include "G4UImanager.hh" 33 #include "G4ErrorPropagationNavigator.hh" 34 #include "G4RunManagerKernel.hh" 37 #include "CLHEP/Units/GlobalSystemOfUnits.h" 48 theG4eManager(G4ErrorPropagatorManager::GetErrorPropagatorManager()),
49 theG4eData(G4ErrorPropagatorData::GetErrorPropagatorData()),
51 LogDebug(
"Geant4e") <<
"Geant4e Propagator initialized";
61 LogDebug(
"Geant4e") <<
"Geant4ePropagator::~Geant4ePropagator()" << std::endl;
77 LogDebug(
"Geant4e") <<
"ensureGeant4eIsInitilized called" << std::endl;
79 LogDebug(
"Geant4e") <<
"Initializing G4 propagator" << std::endl;
83 auto man = G4RunManagerKernel::GetRunManagerKernel();
84 man->SetVerboseLevel(0);
87 const G4Field *field = G4TransportationManager::GetTransportationManager()->GetFieldManager()->GetDetectorField();
88 if (field ==
nullptr) {
91 LogDebug(
"Geant4e") <<
"G4 propagator initialized" << std::endl;
94 G4UImanager::GetUIpointer()->ApplyCommand(
"/geant4e/limits/stepLength 10.0 mm");
99 bool moveTargetToEndOfSurface)
const {
103 normalPlane = normalPlane.
unit();
113 return ErrorTargetPair(
false, std::make_shared<G4ErrorPlaneSurfaceTarget>(surfNorm, surfPos));
118 bool moveTargetToEndOfSurface)
const {
122 G4float radCyl = pDest.
radius() * cm;
131 LogDebug(
"Geant4e") <<
"G4e - G4Rotation" << rotCyl <<
"mm";
133 return ErrorTargetPair(!moveTargetToEndOfSurface, std::make_shared<G4ErrorCylSurfaceTarget>(radCyl, posCyl, rotCyl));
168 if (pDest.
localZ(cmsInitPos) * pDest.
localZ(cmsInitMom) < 0) {
169 mode = G4ErrorMode_PropForwards;
170 LogDebug(
"Geant4e") <<
"G4e - Propagator mode is \'forwards\' indirect " 171 "via the Any direction" 174 mode = G4ErrorMode_PropBackwards;
175 LogDebug(
"Geant4e") <<
"G4e - Propagator mode is \'backwards\' indirect " 176 "via the Any direction" 196 mode = G4ErrorMode_PropBackwards;
197 LogDebug(
"Geant4e") <<
"G4e - Propagator mode is \'backwards\' indirect " 198 "via the Any direction";
200 mode = G4ErrorMode_PropForwards;
201 LogDebug(
"Geant4e") <<
"G4e - Propagator mode is \'forwards\' indirect " 202 "via the Any direction";
208 template <
class SurfaceType>
210 SurfaceType
const &pDest,
216 mode = G4ErrorMode_PropBackwards;
217 LogDebug(
"Geant4e") <<
"G4e - Propagator mode is \'backwards\' " << std::endl;
219 mode = G4ErrorMode_PropForwards;
220 LogDebug(
"Geant4e") <<
"G4e - Propagator mode is \'forwards\'" << std::endl;
225 edm::LogError(
"Geant4e") <<
"G4e - Unsupported propagation mode";
231 template <
class SurfaceType>
233 const SurfaceType &pDest)
const {
246 bool flipped =
false;
250 cmsInitMom = -cmsInitMom;
255 G4ErrorMode
mode = G4ErrorMode_PropForwards;
260 if (
mode == G4ErrorMode_PropBackwards && !flipped)
261 cmsInitMom = -cmsInitMom;
277 G4ErrorTrajErr g4error(5, 1);
282 LogDebug(
"Geant4e") <<
"CMS - Error matrix: " << std::endl << initErr.
matrix();
284 LogDebug(
"Geant4e") <<
"No error matrix available" << std::endl;
288 LogDebug(
"Geant4e") <<
"G4e - Error matrix: " << std::endl << g4error;
292 if (
mode == G4ErrorMode_PropForwards) {
293 G4ErrorPropagatorData::GetErrorPropagatorData()->SetStage(G4ErrorStage_Inflation);
294 }
else if (
mode == G4ErrorMode_PropBackwards) {
295 G4ErrorPropagatorData::GetErrorPropagatorData()->SetStage(G4ErrorStage_Deflation);
299 LogDebug(
"Geant4e") <<
"G4e - Traj. State: " << (g4eTrajState);
304 double finalPathLength = 0;
306 HepGeom::Point3D<double> finalRecoPos;
308 G4ErrorPropagatorData::GetErrorPropagatorData()->SetMode(
mode);
310 theG4eData->SetTarget(g4eTarget_center.second.get());
311 LogDebug(
"Geant4e") <<
"Running Propagation to the RECO surface" << std::endl;
316 theG4eManager->GetErrorPropagationNavigator()->LocateGlobalPointAndSetup(
317 g4InitPos, &g4InitMom,
false,
false);
319 bool continuePropagation =
true;
320 while (continuePropagation) {
322 LogDebug(
"Geant4e") << std::endl <<
"step count " << iterations <<
" step length " << finalPathLength;
325 theG4eManager->GetErrorPropagationNavigator()->LocateGlobalPointWithinVolume(g4eTrajState.GetPosition());
336 LogDebug(
"Geant4e") <<
"step Length was " << thisPathLength <<
" cm, current global position: " 339 finalPathLength += thisPathLength;
342 if (std::fabs(finalPathLength) > 200.0f) {
343 LogDebug(
"Geant4e") <<
"ERROR: Quitting propagation: path length mega large" << std::endl;
344 theG4eManager->GetPropagator()->InvokePostUserTrackingAction(g4eTrajState.GetG4Track());
345 continuePropagation =
false;
346 LogDebug(
"Geant4e") <<
"WARNING: Quitting propagation: max path length " 347 "exceeded, returning invalid state" 354 if (
theG4eManager->GetPropagator()->CheckIfLastStep(g4eTrajState.GetG4Track())) {
355 theG4eManager->GetPropagator()->InvokePostUserTrackingAction(g4eTrajState.GetG4Track());
356 continuePropagation =
false;
362 finalPathLength = -finalPathLength;
365 LogDebug(
"Geant4e") <<
"Position on the RECO surface" << g4eTrajState.GetPosition() << std::endl;
366 finalRecoPos = g4eTrajState.GetPosition();
370 LogDebug(
"Geant4e") <<
"Final position of the Track :" << g4eTrajState.GetPosition() << std::endl;
377 const HepGeom::Vector3D<double> momEnd = g4eTrajState.GetMomentum();
388 G4ErrorTrajErr g4errorEnd = g4eTrajState.GetError();
393 if (
mode == G4ErrorMode_PropBackwards) {
399 momEndGV = -momEndGV;
402 LogDebug(
"Geant4e") <<
"G4e - Error matrix after propagation: " << std::endl << g4errorEnd;
404 LogDebug(
"Geant4e") <<
"CMS - Error matrix after propagation: " << std::endl << curvError.
matrix();
427 const Plane &pDest)
const {
458 HepGeom::Point3D<double>
const &surfPos,
460 HepGeom::Normal3D<double>
const &surfNorm,
461 const Plane &pDest)
const {
462 LogDebug(
"Geant4e") <<
"G4e - Destination CMS plane position:" << posPlane <<
"cm\n" 463 <<
"G4e - (Ro, eta, phi): (" << posPlane.
perp() <<
" cm, " << posPlane.
eta()
464 <<
", " << posPlane.
phi().
degrees() <<
" deg)\n" 465 <<
"G4e - Destination G4 plane position: " << surfPos <<
" mm, Ro = " << surfPos.perp()
467 LogDebug(
"Geant4e") <<
"G4e - Destination CMS plane normal : " << normalPlane <<
"\n" 468 <<
"G4e - Destination G4 plane normal : " << normalPlane;
469 LogDebug(
"Geant4e") <<
"G4e - Distance from plane position to plane: " << pDest.
localZ(posPlane) <<
" cm";
472 template <
class SurfaceType>
475 CLHEP::Hep3Vector
const &g4InitPos,
477 CLHEP::Hep3Vector
const &g4InitMom,
478 const SurfaceType &pDest)
const {
479 LogDebug(
"Geant4e") <<
"G4e - Current Context: " << currentContext;
480 LogDebug(
"Geant4e") <<
"G4e - CMS point position:" << cmsInitPos <<
"cm\n" 481 <<
"G4e - (Ro, eta, phi): (" << cmsInitPos.
perp() <<
" cm, " << cmsInitPos.
eta()
482 <<
", " << cmsInitPos.
phi().
degrees() <<
" deg)\n" 483 <<
"G4e - G4 point position: " << g4InitPos <<
" mm, Ro = " << g4InitPos.perp() <<
" mm";
484 LogDebug(
"Geant4e") <<
"G4e - CMS momentum :" << cmsInitMom <<
"GeV\n" 485 <<
" pt: " << cmsInitMom.
perp() <<
"G4e - G4 momentum : " << g4InitMom <<
" MeV";
std::pair< TrajectoryStateOnSurface, double > TsosPP
Local3DVector LocalVector
Point3DBase< Scalar, LocalTag > LocalPoint
const CurvilinearTrajectoryError & curvilinearError() const
void debugReportTrackState(std::string const ¤tContext, GlobalPoint const &cmsInitPos, CLHEP::Hep3Vector const &g4InitPos, GlobalVector const &cmsInitMom, CLHEP::Hep3Vector const &g4InitMom, const SurfaceType &pDest) const
HepGeom::Normal3D< double > globalVectorToHepNormal3D(const GlobalVector &p)
Geom::Phi< T > phi() const
double g4doubleToCmsDouble(const G4double &d)
std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const FreeTrajectoryState &, const Plane &) const override
std::string theParticleName
virtual PropagationDirection propagationDirection() const final
CLHEP::Hep3Vector globalVectorToHep3Vector(const GlobalVector &p)
TrackCharge charge() const
Log< level::Error, false > LogError
const MagneticField * theField
LocalPoint toLocal(const GlobalPoint &gp) const
const GlobalTrajectoryParameters & parameters() const
G4ErrorPropagatorManager * theG4eManager
void ensureGeant4eIsInitilized(bool forceInit) const
GlobalPoint position() const
CLHEP::HepRotation tkRotationFToHepRotation(const TkRotation< float > &tkr)
AlgebraicSymMatrix55 g4ErrorTrajErrToAlgebraicSymMatrix55(const G4ErrorTrajErr &e, const int q)
G4ErrorPropagatorData * theG4eData
TrackCharge charge() const
GlobalPoint hepPoint3DToGlobalPoint(const HepGeom::Point3D< double > &r)
std::pair< bool, std::shared_ptr< G4ErrorTarget > > ErrorTargetPair
GlobalVector momentum() const
void debugReportPlaneSetup(GlobalPoint const &posPlane, HepGeom::Point3D< double > const &surfPos, GlobalVector const &normalPlane, HepGeom::Normal3D< double > const &surfNorm, const Plane &pDest) const
bool configureAnyPropagation(G4ErrorMode &mode, SurfaceType const &pDest, GlobalPoint const &cmsInitPos, GlobalVector const &cmsInitMom) const
GlobalPoint toGlobal(const Point2DBase< Scalar, LocalTag > lp) const
float localZ(const GlobalPoint &gp) const
HepGeom::Point3D< double > globalPointToHepPoint3D(const GlobalPoint &r)
const PositionType & position() const
~Geant4ePropagator() override
const AlgebraicSymMatrix55 & matrix() const
const MagneticField & magneticField() const
Side side(const LocalPoint &p, Scalar toler) const override
GlobalVector hep3VectorToGlobalVector(const CLHEP::Hep3Vector &p)
std::string getSurfaceType(SurfaceType const &surface) const
std::string generateParticleName(int charge) const
Scalar radius() const
Radius of the cylinder.
FreeTrajectoryState const * freeState(bool withErrors=true) const
bool configurePropagation(G4ErrorMode &mode, SurfaceType const &pDest, GlobalPoint const &cmsInitPos, GlobalVector const &cmsInitMom) const
G4ErrorTrajErr algebraicSymMatrix55ToG4ErrorTrajErr(const AlgebraicSymMatrix55 &e, const int q)
const RotationType & rotation() const
Vector3DBase unit() const
ErrorTargetPair transformToG4SurfaceTarget(const SurfaceType &pDest, bool moveTargetToEndOfSurface) const
Geant4ePropagator(const MagneticField *field=nullptr, std::string particleName="mu", PropagationDirection dir=alongMomentum, double plimit=1.0)
CLHEP::Hep3Vector globalPointToHep3Vector(const GlobalPoint &r)
std::pair< TrajectoryStateOnSurface, double > propagateGeneric(const FreeTrajectoryState &ftsStart, const SurfaceType &pDest) const