CMS 3D CMS Logo

List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
SeedFromNuclearInteraction Class Reference

#include <SeedFromNuclearInteraction.h>

Public Member Functions

PropagationDirection direction () const
 
recHitContainer hits () const
 
const TSOSinitialTSOS () const
 
bool isValid () const
 
ConstRecHitPointer outerHit () const
 
DetId outerHitDetId () const
 
GlobalPoint outerHitPosition () const
 
AlgebraicMatrix33 rotationMatrix (const GlobalVector &perp) const
 
 SeedFromNuclearInteraction (const Propagator *prop, const TrackerGeometry *geom, const edm::ParameterSet &iConfig)
 
void setMeasurements (const TSOS &tsosAtInteractionPoint, ConstRecHitPointer ihit, ConstRecHitPointer ohit)
 Fill all data members from 2 TM's where the first one is supposed to be at the interaction point. More...
 
void setMeasurements (TangentHelix &primHelix, const TSOS &inner_TSOS, ConstRecHitPointer ihit, ConstRecHitPointer ohit)
 Fill all data members from 1 TSOS and 2 rec Hits and using the circle associated to the primary track as constraint. More...
 
FreeTrajectoryStatestateWithError () const
 
FreeTrajectoryStatestateWithError (TangentHelix &helix) const
 
PTrajectoryStateOnDet const & trajectoryState () const
 
TrajectorySeed TrajSeed () const
 
const TSOSupdatedTSOS () const
 
virtual ~SeedFromNuclearInteraction ()
 

Private Types

typedef std::vector< ConstRecHitPointerConstRecHitContainer
 
typedef TransientTrackingRecHit::ConstRecHitPointer ConstRecHitPointer
 
typedef edm::OwnVector< TrackingRecHitrecHitContainer
 
typedef TrajectoryMeasurement TM
 
typedef TrajectoryStateOnSurface TSOS
 

Private Member Functions

bool construct ()
 

Private Attributes

std::shared_ptr< FreeTrajectoryStatefreeTS_
 
std::shared_ptr< TSOSinitialTSOS_
 
ConstRecHitPointer innerHit_
 
bool isValid_
 
ConstRecHitPointer outerHit_
 
double ptMin
 
PTrajectoryStateOnDet pTraj
 
ConstRecHitContainer theHits
 
const PropagatorthePropagator
 
const TrackerGeometrytheTrackerGeom
 
std::shared_ptr< TSOSupdatedTSOS_
 

Detailed Description

Definition at line 19 of file SeedFromNuclearInteraction.h.

Member Typedef Documentation

◆ ConstRecHitContainer

Definition at line 25 of file SeedFromNuclearInteraction.h.

◆ ConstRecHitPointer

Definition at line 24 of file SeedFromNuclearInteraction.h.

◆ recHitContainer

Definition at line 23 of file SeedFromNuclearInteraction.h.

◆ TM

Definition at line 21 of file SeedFromNuclearInteraction.h.

◆ TSOS

Definition at line 22 of file SeedFromNuclearInteraction.h.

Constructor & Destructor Documentation

◆ SeedFromNuclearInteraction()

SeedFromNuclearInteraction::SeedFromNuclearInteraction ( const Propagator prop,
const TrackerGeometry geom,
const edm::ParameterSet iConfig 
)

Definition at line 14 of file SeedFromNuclearInteraction.cc.

17  : ptMin(iConfig.getParameter<double>("ptMin")), thePropagator(prop), theTrackerGeom(geom) {
18  isValid_ = true;
19  initialTSOS_ = std::make_shared<TrajectoryStateOnSurface>();
20  updatedTSOS_ = std::make_shared<TrajectoryStateOnSurface>();
21  freeTS_ = std::make_shared<FreeTrajectoryState>();
22 }

References freeTS_, initialTSOS_, isValid_, and updatedTSOS_.

◆ ~SeedFromNuclearInteraction()

virtual SeedFromNuclearInteraction::~SeedFromNuclearInteraction ( )
inlinevirtual

Definition at line 30 of file SeedFromNuclearInteraction.h.

30 {}

Member Function Documentation

◆ construct()

bool SeedFromNuclearInteraction::construct ( )
private

Definition at line 133 of file SeedFromNuclearInteraction.cc.

133  {
134  // loop on all hits in theHits
135  KFUpdator theUpdator;
136 
137  const TrackingRecHit* hit = nullptr;
138 
139  LogDebug("NuclearSeedGenerator") << "Seed ** initial state " << freeTS_->cartesianError().matrix();
140 
141  for (unsigned int iHit = 0; iHit < theHits.size(); iHit++) {
142  hit = theHits[iHit]->hit();
144  (iHit == 0)
145  ? thePropagator->propagate(*freeTS_, theTrackerGeom->idToDet(hit->geographicalId())->surface())
146  : thePropagator->propagate(*updatedTSOS_, theTrackerGeom->idToDet(hit->geographicalId())->surface());
147 
148  if (!state.isValid())
149  return false;
150 
152  updatedTSOS_.reset(new TrajectoryStateOnSurface(theUpdator.update(state, *tth)));
153  }
154 
155  LogDebug("NuclearSeedGenerator") << "Seed ** updated state " << updatedTSOS_->cartesianError().matrix();
156 
158  return true;
159 }

References freeTS_, TrackerGeometry::idToDet(), LogDebug, outerHitDetId(), trajectoryStateTransform::persistentState(), Propagator::propagate(), pTraj, theHits, thePropagator, theTrackerGeom, KFUpdator::update(), and updatedTSOS_.

Referenced by setMeasurements().

◆ direction()

PropagationDirection SeedFromNuclearInteraction::direction ( ) const
inline

Definition at line 47 of file SeedFromNuclearInteraction.h.

47 { return alongMomentum; }

References alongMomentum.

Referenced by stateWithError(), and TrajSeed().

◆ hits()

edm::OwnVector< TrackingRecHit > SeedFromNuclearInteraction::hits ( void  ) const

Definition at line 162 of file SeedFromNuclearInteraction.cc.

162  {
163  recHitContainer _hits;
164  for (ConstRecHitContainer::const_iterator it = theHits.begin(); it != theHits.end(); it++) {
165  _hits.push_back(it->get()->hit()->clone());
166  }
167  return _hits;
168 }

References edm::OwnVector< T, P >::push_back(), and theHits.

Referenced by TrajSeed().

◆ initialTSOS()

const TSOS& SeedFromNuclearInteraction::initialTSOS ( ) const
inline

Definition at line 57 of file SeedFromNuclearInteraction.h.

57 { return *initialTSOS_; }

References initialTSOS_.

◆ isValid()

bool SeedFromNuclearInteraction::isValid ( void  ) const
inline

◆ outerHit()

ConstRecHitPointer SeedFromNuclearInteraction::outerHit ( ) const
inline

Definition at line 65 of file SeedFromNuclearInteraction.h.

65 { return outerHit_; }

References outerHit_.

◆ outerHitDetId()

DetId SeedFromNuclearInteraction::outerHitDetId ( ) const
inline

Definition at line 63 of file SeedFromNuclearInteraction.h.

63 { return outerHit_->geographicalId(); }

References outerHit_.

Referenced by construct(), and outerHitPosition().

◆ outerHitPosition()

GlobalPoint SeedFromNuclearInteraction::outerHitPosition ( ) const
inline

◆ rotationMatrix()

AlgebraicMatrix33 SeedFromNuclearInteraction::rotationMatrix ( const GlobalVector perp) const

Return the rotation matrix to be applied to get parameters in a framework where the z direction is along perp

Definition at line 170 of file SeedFromNuclearInteraction.cc.

170  {
172 
173  // z axis coincides with perp
174  GlobalVector zAxis = perp.unit();
175 
176  // x axis has no global Z component
178  if (zAxis.x() != 0 || zAxis.y() != 0) {
179  // precision is not an issue here, just protect against divizion by zero
180  xAxis = GlobalVector(-zAxis.y(), zAxis.x(), 0).unit();
181  } else { // perp coincides with global Z
182  xAxis = GlobalVector(1, 0, 0);
183  }
184 
185  // y axis obtained by cross product
186  GlobalVector yAxis(zAxis.cross(xAxis));
187 
188  result(0, 0) = xAxis.x();
189  result(0, 1) = xAxis.y();
190  result(0, 2) = xAxis.z();
191  result(1, 0) = yAxis.x();
192  result(1, 1) = yAxis.y();
193  result(1, 2) = yAxis.z();
194  result(2, 0) = zAxis.x();
195  result(2, 1) = zAxis.y();
196  result(2, 2) = zAxis.z();
197  return result;
198 }

References perp(), mps_fire::result, unit(), HLT_FULL_cff::xAxis, HLT_FULL_cff::yAxis, and HLT_FULL_cff::zAxis.

Referenced by stateWithError().

◆ setMeasurements() [1/2]

void SeedFromNuclearInteraction::setMeasurements ( const TSOS tsosAtInteractionPoint,
ConstRecHitPointer  ihit,
ConstRecHitPointer  ohit 
)

Fill all data members from 2 TM's where the first one is supposed to be at the interaction point.

Definition at line 25 of file SeedFromNuclearInteraction.cc.

27  {
28  // delete pointer to TrackingRecHits
29  theHits.clear();
30 
31  // get the inner and outer transient TrackingRecHits
32  innerHit_ = ihit;
33  outerHit_ = ohit;
34 
35  //theHits.push_back( inner_TM.recHit() ); // put temporarily - TODO: remove this line
36  theHits.push_back(outerHit_);
37 
38  initialTSOS_.reset(new TrajectoryStateOnSurface(inner_TSOS));
39 
40  // calculate the initial FreeTrajectoryState.
41  freeTS_.reset(stateWithError());
42 
43  // check transverse momentum
44  if (freeTS_->momentum().perp() < ptMin) {
45  isValid_ = false;
46  } else {
47  // convert freeTS_ into a persistent TSOS on the outer surface
48  isValid_ = construct();
49  }
50 }

References construct(), freeTS_, initialTSOS_, innerHit_, isValid_, outerHit_, ptMin, stateWithError(), and theHits.

Referenced by NuclearInteractionFinder::fillSeeds(), and NuclearInteractionFinder::improveSeeds().

◆ setMeasurements() [2/2]

void SeedFromNuclearInteraction::setMeasurements ( TangentHelix primHelix,
const TSOS inner_TSOS,
ConstRecHitPointer  ihit,
ConstRecHitPointer  ohit 
)

Fill all data members from 1 TSOS and 2 rec Hits and using the circle associated to the primary track as constraint.

Definition at line 52 of file SeedFromNuclearInteraction.cc.

55  {
56  // delete pointer to TrackingRecHits
57  theHits.clear();
58 
59  // get the inner and outer transient TrackingRecHits
60  innerHit_ = ihit;
61  outerHit_ = ohit;
62 
63  GlobalPoint innerPos =
64  theTrackerGeom->idToDet(innerHit_->geographicalId())->surface().toGlobal(innerHit_->localPosition());
65  GlobalPoint outerPos =
66  theTrackerGeom->idToDet(outerHit_->geographicalId())->surface().toGlobal(outerHit_->localPosition());
67 
68  TangentHelix helix(thePrimaryHelix, outerPos, innerPos);
69 
70  theHits.push_back(innerHit_);
71  theHits.push_back(outerHit_);
72 
73  initialTSOS_.reset(new TrajectoryStateOnSurface(inner_TSOS));
74 
75  // calculate the initial FreeTrajectoryState from the inner and outer TM assuming that the helix equation is already known.
76  freeTS_.reset(stateWithError(helix));
77 
78  if (freeTS_->momentum().perp() < ptMin) {
79  isValid_ = false;
80  } else {
81  // convert freeTS_ into a persistent TSOS on the outer surface
82  isValid_ = construct();
83  }
84 }

References construct(), freeTS_, TrackerGeometry::idToDet(), initialTSOS_, innerHit_, isValid_, outerHit_, ptMin, stateWithError(), theHits, theTrackerGeom, and GeomDet::toGlobal().

◆ stateWithError() [1/2]

FreeTrajectoryState * SeedFromNuclearInteraction::stateWithError ( ) const

Definition at line 86 of file SeedFromNuclearInteraction.cc.

86  {
87  // Calculation of the helix assuming that the secondary track has the same direction
88  // than the primary track and pass through the inner and outer hits.
89  GlobalVector direction = initialTSOS_->globalDirection();
90  GlobalPoint inner = initialTSOS_->globalPosition();
92 
93  return stateWithError(helix);
94 }

References direction(), initialTSOS_, SurfaceOrientation::inner, and outerHitPosition().

Referenced by setMeasurements().

◆ stateWithError() [2/2]

FreeTrajectoryState * SeedFromNuclearInteraction::stateWithError ( TangentHelix helix) const

Definition at line 96 of file SeedFromNuclearInteraction.cc.

96  {
97  // typedef TkRotation<float> Rotation;
98 
99  GlobalVector dirAtVtx = helix.directionAtVertex();
100  const MagneticField& mag = initialTSOS_->globalParameters().magneticField();
101 
102  // Get the global parameters of the trajectory
103  // we assume that the magnetic field at the vertex is equal to the magnetic field at the inner TM.
105  helix.vertexPoint(), dirAtVtx, helix.charge(mag.inTesla(helix.vertexPoint()).z()) / helix.rho(), 0, &mag);
106 
107  // Error matrix in a frame where z is in the direction of the track at the vertex
108  AlgebraicSymMatrix66 primaryError(initialTSOS_->cartesianError().matrix());
109  double p_max = initialTSOS_->globalParameters().momentum().mag();
110  AlgebraicMatrix33 rot = this->rotationMatrix(dirAtVtx);
111 
112  AlgebraicMatrix66 globalRotation;
113  globalRotation.Place_at(rot, 0, 0);
114  globalRotation.Place_at(rot, 3, 3);
115  AlgebraicSymMatrix66 primaryErrorInNewFrame = ROOT::Math::Similarity(globalRotation, primaryError);
116 
117  AlgebraicSymMatrix66 secondaryErrorInNewFrame = AlgebraicMatrixID();
118  double p_perp_max = 2; // energy max of a secondary track emited perpendicularly to the
119  // primary track is +/- 2 GeV
120  secondaryErrorInNewFrame(0, 0) = primaryErrorInNewFrame(0, 0) + helix.vertexError() * p_perp_max / p_max;
121  secondaryErrorInNewFrame(1, 1) = primaryErrorInNewFrame(1, 1) + helix.vertexError() * p_perp_max / p_max;
122  secondaryErrorInNewFrame(2, 2) = helix.vertexError() * helix.vertexError();
123  secondaryErrorInNewFrame(3, 3) = p_perp_max * p_perp_max;
124  secondaryErrorInNewFrame(4, 4) = p_perp_max * p_perp_max;
125  secondaryErrorInNewFrame(5, 5) = p_max * p_max;
126 
127  AlgebraicSymMatrix66 secondaryError = ROOT::Math::SimilarityT(globalRotation, secondaryErrorInNewFrame);
128 
129  return new FreeTrajectoryState(gtp, CartesianTrajectoryError(secondaryError));
130 }

References TangentHelix::charge(), TangentHelix::directionAtVertex(), initialTSOS_, mag(), TangentHelix::rho(), makeMuonMisalignmentScenario::rot, rotationMatrix(), TangentHelix::vertexError(), TangentHelix::vertexPoint(), and z.

◆ trajectoryState()

PTrajectoryStateOnDet const& SeedFromNuclearInteraction::trajectoryState ( ) const
inline

Definition at line 41 of file SeedFromNuclearInteraction.h.

41 { return pTraj; }

References pTraj.

Referenced by TrajSeed().

◆ TrajSeed()

TrajectorySeed SeedFromNuclearInteraction::TrajSeed ( ) const
inline

Definition at line 51 of file SeedFromNuclearInteraction.h.

51 { return TrajectorySeed(trajectoryState(), hits(), direction()); }

References direction(), hits(), and trajectoryState().

◆ updatedTSOS()

const TSOS& SeedFromNuclearInteraction::updatedTSOS ( ) const
inline

Definition at line 55 of file SeedFromNuclearInteraction.h.

55 { return *updatedTSOS_; }

References updatedTSOS_.

Member Data Documentation

◆ freeTS_

std::shared_ptr<FreeTrajectoryState> SeedFromNuclearInteraction::freeTS_
private

◆ initialTSOS_

std::shared_ptr<TSOS> SeedFromNuclearInteraction::initialTSOS_
private

Initial TSOS used as input

Definition at line 82 of file SeedFromNuclearInteraction.h.

Referenced by initialTSOS(), SeedFromNuclearInteraction(), setMeasurements(), and stateWithError().

◆ innerHit_

ConstRecHitPointer SeedFromNuclearInteraction::innerHit_
private

Pointer to the hit of the inner TM

Definition at line 77 of file SeedFromNuclearInteraction.h.

Referenced by setMeasurements().

◆ isValid_

bool SeedFromNuclearInteraction::isValid_
private

check if the seed is valid

Definition at line 72 of file SeedFromNuclearInteraction.h.

Referenced by isValid(), SeedFromNuclearInteraction(), and setMeasurements().

◆ outerHit_

ConstRecHitPointer SeedFromNuclearInteraction::outerHit_
private

Pointer to the outer hit

Definition at line 78 of file SeedFromNuclearInteraction.h.

Referenced by outerHit(), outerHitDetId(), outerHitPosition(), and setMeasurements().

◆ ptMin

double SeedFromNuclearInteraction::ptMin
private

Minimum transverse momentum of the seed

Definition at line 90 of file SeedFromNuclearInteraction.h.

Referenced by setMeasurements().

◆ pTraj

PTrajectoryStateOnDet SeedFromNuclearInteraction::pTraj
private

the final persistent TSOS

Definition at line 86 of file SeedFromNuclearInteraction.h.

Referenced by construct(), and trajectoryState().

◆ theHits

ConstRecHitContainer SeedFromNuclearInteraction::theHits
private

all the hits to be used to update the

Definition at line 74 of file SeedFromNuclearInteraction.h.

Referenced by construct(), hits(), and setMeasurements().

◆ thePropagator

const Propagator* SeedFromNuclearInteraction::thePropagator
private

Definition at line 92 of file SeedFromNuclearInteraction.h.

Referenced by construct().

◆ theTrackerGeom

const TrackerGeometry* SeedFromNuclearInteraction::theTrackerGeom
private

Definition at line 93 of file SeedFromNuclearInteraction.h.

Referenced by construct(), outerHitPosition(), and setMeasurements().

◆ updatedTSOS_

std::shared_ptr<TSOS> SeedFromNuclearInteraction::updatedTSOS_
private

Final TSOS

Definition at line 80 of file SeedFromNuclearInteraction.h.

Referenced by construct(), SeedFromNuclearInteraction(), and updatedTSOS().

Vector3DBase
Definition: Vector3DBase.h:8
TrackerGeometry::idToDet
const TrackerGeomDet * idToDet(DetId) const override
Definition: TrackerGeometry.cc:193
KFUpdator::update
TrajectoryStateOnSurface update(const TrajectoryStateOnSurface &, const TrackingRecHit &) const override
Definition: KFUpdator.cc:177
SeedFromNuclearInteraction::theHits
ConstRecHitContainer theHits
Definition: SeedFromNuclearInteraction.h:74
SeedFromNuclearInteraction::outerHit_
ConstRecHitPointer outerHit_
Definition: SeedFromNuclearInteraction.h:78
SeedFromNuclearInteraction::rotationMatrix
AlgebraicMatrix33 rotationMatrix(const GlobalVector &perp) const
Definition: SeedFromNuclearInteraction.cc:170
TangentHelix::vertexError
double vertexError()
Definition: TangentHelix.h:47
trajectoryStateTransform::persistentState
PTrajectoryStateOnDet persistentState(const TrajectoryStateOnSurface &ts, unsigned int detid)
Definition: TrajectoryStateTransform.cc:14
TangentHelix::charge
int charge(float magz)
Definition: TangentHelix.h:41
SeedFromNuclearInteraction::theTrackerGeom
const TrackerGeometry * theTrackerGeom
Definition: SeedFromNuclearInteraction.h:93
AlgebraicMatrix33
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepStd< double, 3, 3 > > AlgebraicMatrix33
Definition: AlgebraicROOTObjects.h:41
GlobalVector
Global3DVector GlobalVector
Definition: GlobalVector.h:10
perp
T perp() const
Magnitude of transverse component.
Definition: Basic3DVectorLD.h:133
TangentHelix::vertexPoint
GlobalPoint vertexPoint() const
Definition: TangentHelix.h:35
TangentHelix::rho
double rho() const
Definition: TangentHelix.h:43
AlgebraicMatrixID
ROOT::Math::SMatrixIdentity AlgebraicMatrixID
Definition: AlgebraicROOTObjects.h:72
SeedFromNuclearInteraction::updatedTSOS_
std::shared_ptr< TSOS > updatedTSOS_
Definition: SeedFromNuclearInteraction.h:80
SeedFromNuclearInteraction::recHitContainer
edm::OwnVector< TrackingRecHit > recHitContainer
Definition: SeedFromNuclearInteraction.h:23
GeomDet::surface
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:37
TrajectoryStateOnSurface
Definition: TrajectoryStateOnSurface.h:16
SeedFromNuclearInteraction::thePropagator
const Propagator * thePropagator
Definition: SeedFromNuclearInteraction.h:92
SeedFromNuclearInteraction::direction
PropagationDirection direction() const
Definition: SeedFromNuclearInteraction.h:47
SurfaceOrientation::inner
Definition: Surface.h:19
Surface::toGlobal
GlobalPoint toGlobal(const Point2DBase< Scalar, LocalTag > lp) const
Definition: Surface.h:79
AlgebraicSymMatrix66
ROOT::Math::SMatrix< double, 6, 6, ROOT::Math::MatRepSym< double, 6 > > AlgebraicSymMatrix66
Definition: AlgebraicROOTObjects.h:24
DDAxes::z
HLT_FULL_cff.zAxis
zAxis
Definition: HLT_FULL_cff.py:46206
relativeConstraints.geom
geom
Definition: relativeConstraints.py:72
GlobalTrajectoryParameters
Definition: GlobalTrajectoryParameters.h:15
SeedFromNuclearInteraction::construct
bool construct()
Definition: SeedFromNuclearInteraction.cc:133
Point3DBase< float, GlobalTag >
SeedFromNuclearInteraction::innerHit_
ConstRecHitPointer innerHit_
Definition: SeedFromNuclearInteraction.h:77
SeedFromNuclearInteraction::hits
recHitContainer hits() const
Definition: SeedFromNuclearInteraction.cc:162
SeedFromNuclearInteraction::pTraj
PTrajectoryStateOnDet pTraj
Definition: SeedFromNuclearInteraction.h:86
GeomDet::toGlobal
GlobalPoint toGlobal(const Local2DPoint &lp) const
Conversion to the global R.F. from the R.F. of the GeomDet.
Definition: GeomDet.h:49
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:223
SeedFromNuclearInteraction::outerHitPosition
GlobalPoint outerHitPosition() const
Definition: SeedFromNuclearInteraction.h:59
SeedFromNuclearInteraction::outerHitDetId
DetId outerHitDetId() const
Definition: SeedFromNuclearInteraction.h:63
HLT_FULL_cff.yAxis
yAxis
Definition: HLT_FULL_cff.py:46207
TrackingRecHit::ConstRecHitPointer
std::shared_ptr< TrackingRecHit const > ConstRecHitPointer
Definition: TrackingRecHit.h:25
SeedFromNuclearInteraction::initialTSOS_
std::shared_ptr< TSOS > initialTSOS_
Definition: SeedFromNuclearInteraction.h:82
SeedFromNuclearInteraction::freeTS_
std::shared_ptr< FreeTrajectoryState > freeTS_
Definition: SeedFromNuclearInteraction.h:84
Propagator::propagate
TrajectoryStateOnSurface propagate(STA const &state, SUR const &surface) const
Definition: Propagator.h:50
unit
Basic3DVector unit() const
Definition: Basic3DVectorLD.h:162
TrackingRecHit
Definition: TrackingRecHit.h:21
CartesianTrajectoryError
Definition: CartesianTrajectoryError.h:15
mag
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
Definition: Basic3DVectorLD.h:127
AlgebraicMatrix66
ROOT::Math::SMatrix< double, 6, 6, ROOT::Math::MatRepStd< double, 6, 6 > > AlgebraicMatrix66
Definition: AlgebraicROOTObjects.h:62
RunInfoPI::state
state
Definition: RunInfoPayloadInspectoHelper.h:16
FreeTrajectoryState
Definition: FreeTrajectoryState.h:27
SeedFromNuclearInteraction::ptMin
double ptMin
Definition: SeedFromNuclearInteraction.h:90
HLT_FULL_cff.xAxis
xAxis
Definition: HLT_FULL_cff.py:46205
makeMuonMisalignmentScenario.rot
rot
Definition: makeMuonMisalignmentScenario.py:322
TrajectorySeed
Definition: TrajectorySeed.h:18
SeedFromNuclearInteraction::isValid_
bool isValid_
Definition: SeedFromNuclearInteraction.h:72
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
SeedFromNuclearInteraction::trajectoryState
PTrajectoryStateOnDet const & trajectoryState() const
Definition: SeedFromNuclearInteraction.h:41
edm::OwnVector::push_back
void push_back(D *&d)
Definition: OwnVector.h:326
TangentHelix
Definition: TangentHelix.h:6
mps_fire.result
result
Definition: mps_fire.py:311
SeedFromNuclearInteraction::stateWithError
FreeTrajectoryState * stateWithError() const
Definition: SeedFromNuclearInteraction.cc:86
MagneticField
Definition: MagneticField.h:19
alongMomentum
Definition: PropagationDirection.h:4
KFUpdator
Definition: KFUpdator.h:32
hit
Definition: SiStripHitEffFromCalibTree.cc:88
TangentHelix::directionAtVertex
GlobalVector directionAtVertex()
Definition: TangentHelix.cc:17