CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
CurvilinearTrajectoryParameters Class Reference

#include <CurvilinearTrajectoryParameters.h>

Public Member Functions

TrackCharge charge () const
 access to the charge More...
 
 CurvilinearTrajectoryParameters ()
 default constructor More...
 
 CurvilinearTrajectoryParameters (const AlgebraicVector5 &v, bool charged=true)
 
 CurvilinearTrajectoryParameters (double aQbp, double alambda, double aphi, double axT, double ayT, bool charged=true)
 
 CurvilinearTrajectoryParameters (const GlobalPoint &aX, const GlobalVector &aP, TrackCharge aCharge)
 
double lambda () const
 
double phi () const
 
double Qbp () const
 
double signedInverseMomentum () const
 access to the Signed Inverse momentum q/p (zero for neutrals) More...
 
bool updateP (double dP)
 
AlgebraicVector5 vector () const
 
double xT () const
 
double yT () const
 

Private Attributes

double thelambda
 
double thephi
 
double theQbp
 
double thexT
 
double theyT
 

Detailed Description

Class providing access to a set of relevant parameters of a trajectory in a Curvilinear frame. The set consists of the following paramters: \ q/p: charged particles: charge(plus or minus one) divided by magnitude of momentum neutral particles: inverse magnitude of momentum lambda: the helix dip angle (pi/2 minus theta(polar angle)), defined in the global frame phi: the angle of inclination with the global x-axis in the transverse (global xy) plane xT: transverse position in the global xy plane and it points left when looking into the direction of the track yT: transverse position that forms a right-handed frame with xT and zT

Note that the frame is tangent to the track at the point of definition, with Z_T parallel to the track

Definition at line 28 of file CurvilinearTrajectoryParameters.h.

Constructor & Destructor Documentation

CurvilinearTrajectoryParameters::CurvilinearTrajectoryParameters ( )
inline

default constructor

Definition at line 33 of file CurvilinearTrajectoryParameters.h.

33 {}
CurvilinearTrajectoryParameters::CurvilinearTrajectoryParameters ( const AlgebraicVector5 v,
bool  charged = true 
)
inline

Constructor from vector of parameters Expects a vector of parameters as defined above. For charged particles he charge will be determined by\ the sign of the first element. For neutral particles the last argument should be false, in which case the charge of the first element will be neglected.

Definition at line 42 of file CurvilinearTrajectoryParameters.h.

CurvilinearTrajectoryParameters::CurvilinearTrajectoryParameters ( double  aQbp,
double  alambda,
double  aphi,
double  axT,
double  ayT,
bool  charged = true 
)
inline

Constructor from vector of parameters Expects a vector of parameters as defined above. For charged particles the charge will be determined by the sign of the first element. For neutral particles the last argument should be false, in which case the charge of the first element will be neglected. Constructor from individual curvilinear parameters Expects parameters as defined above.

Definition at line 56 of file CurvilinearTrajectoryParameters.h.

CurvilinearTrajectoryParameters::CurvilinearTrajectoryParameters ( const GlobalPoint aX,
const GlobalVector aP,
TrackCharge  aCharge 
)

Constructor from a global vector, global point and track charge

Definition at line 5 of file CurvilinearTrajectoryParameters.cc.

References PV3DBase< T, PVType, FrameType >::mag(), mathSSE::sqrt(), thelambda, thephi, theQbp, thexT, theyT, PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

6 {
7 
8  theQbp=aCharge/aP.mag();
9 
10  double pT2= aP.x()*aP.x()+aP.y()*aP.y();
11  double pT =sqrt(pT2);
12  thelambda= atan(aP.z()/pT);
13  thephi=atan2(aP.y(),aP.x());
14  thexT= (-aP.y()*aX.x()+ aP.x()*aX.y()) / pT;
15  theyT= (-aX.x()*aP.x()*aP.z() - aX.y()*aP.z()*aP.y() + aX.z()*(pT2)) / (aP.mag()*pT);
16 }
T y() const
Definition: PV3DBase.h:62
T mag() const
Definition: PV3DBase.h:66
T sqrt(T t)
Definition: SSEVec.h:46
T z() const
Definition: PV3DBase.h:63
T x() const
Definition: PV3DBase.h:61

Member Function Documentation

TrackCharge CurvilinearTrajectoryParameters::charge ( void  ) const
inline

access to the charge

Definition at line 66 of file CurvilinearTrajectoryParameters.h.

References Qbp().

66 { return (0==Qbp()) ? 0 : ( Qbp()>0 ? 1 : -1) ;}
double CurvilinearTrajectoryParameters::lambda ( ) const
inline

Definition at line 88 of file CurvilinearTrajectoryParameters.h.

References thelambda.

double CurvilinearTrajectoryParameters::phi ( void  ) const
inline

Definition at line 89 of file CurvilinearTrajectoryParameters.h.

References thephi.

double CurvilinearTrajectoryParameters::Qbp ( ) const
inline

Definition at line 87 of file CurvilinearTrajectoryParameters.h.

References theQbp.

Referenced by charge(), signedInverseMomentum(), and updateP().

double CurvilinearTrajectoryParameters::signedInverseMomentum ( ) const
inline

access to the Signed Inverse momentum q/p (zero for neutrals)

Definition at line 69 of file CurvilinearTrajectoryParameters.h.

References Qbp().

69  {
70  return Qbp();
71  }
bool CurvilinearTrajectoryParameters::updateP ( double  dP)

Definition at line 19 of file CurvilinearTrajectoryParameters.cc.

References abs, AlCaHLTBitMon_ParallelJobs::p, Qbp(), and theQbp.

19  {
20  //FIXME. something is very likely to be missing here
21  double p = 1./std::abs(Qbp());
22  if ((p += dP) <= 0.) return false;
23  double newQbp = Qbp() > 0 ? 1./p : -1./p;
24  theQbp = newQbp;
25  return true;
26 }
#define abs(x)
Definition: mlp_lapack.h:159
AlgebraicVector5 CurvilinearTrajectoryParameters::vector ( ) const
inline

Vector of parameters with signed inverse momentum.

Vector of parameters as defined above, with the first element q/p.

Definition at line 78 of file CurvilinearTrajectoryParameters.h.

References thelambda, thephi, theQbp, thexT, and theyT.

double CurvilinearTrajectoryParameters::xT ( ) const
inline

Definition at line 90 of file CurvilinearTrajectoryParameters.h.

References thexT.

double CurvilinearTrajectoryParameters::yT ( ) const
inline

Definition at line 91 of file CurvilinearTrajectoryParameters.h.

References theyT.

Member Data Documentation

double CurvilinearTrajectoryParameters::thelambda
private
double CurvilinearTrajectoryParameters::thephi
private

Definition at line 98 of file CurvilinearTrajectoryParameters.h.

Referenced by CurvilinearTrajectoryParameters(), phi(), and vector().

double CurvilinearTrajectoryParameters::theQbp
private
double CurvilinearTrajectoryParameters::thexT
private

Definition at line 99 of file CurvilinearTrajectoryParameters.h.

Referenced by CurvilinearTrajectoryParameters(), vector(), and xT().

double CurvilinearTrajectoryParameters::theyT
private

Definition at line 100 of file CurvilinearTrajectoryParameters.h.

Referenced by CurvilinearTrajectoryParameters(), vector(), and yT().