CMS 3D CMS Logo

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

#include <TwoTrackMinimumDistanceHelixHelix.h>

Public Member Functions

bool calculate (const GlobalTrajectoryParameters &, const GlobalTrajectoryParameters &, const float qual=.001)
 
double firstAngle () const
 
std::pair< double, double > pathLength () const
 
std::pair< GlobalPoint, GlobalPointpoints () const
 
double secondAngle () const
 
 TwoTrackMinimumDistanceHelixHelix ()
 
 ~TwoTrackMinimumDistanceHelixHelix ()
 

Private Member Functions

void finalPoints ()
 
bool oneIteration (double &, double &)
 
bool updateCoeffs (const GlobalPoint &, const GlobalPoint &)
 

Private Attributes

double pathG
 
double pathH
 
GlobalPoint pointG
 
GlobalPoint pointH
 
bool pointsUpdated
 
double thea
 
double theb
 
double thec1
 
double thec2
 
double thecospG
 
double thecospG0
 
double thecospH
 
double thecospH0
 
double thed1
 
double thed2
 
double thee1
 
double thee2
 
GlobalTrajectoryParameters const * theG
 
double theg
 
GlobalTrajectoryParameters const * theH
 
double theh
 
int themaxiter
 
double themaxjump
 
double thepG
 
double thepG0
 
double thepH
 
double thepH0
 
double thesingjacI
 
double thesinpG
 
double thesinpG0
 
double thesinpH
 
double thesinpH0
 
double thetanlambdaG
 
double thetanlambdaH
 

Detailed Description

This is a helper class for TwoTrackMinimumDistance. No user should need direct access to this class. It actually implements a Newton-Kantorowitsch method for finding the minimum distance between two tracks.

Definition at line 18 of file TwoTrackMinimumDistanceHelixHelix.h.

Constructor & Destructor Documentation

TwoTrackMinimumDistanceHelixHelix::TwoTrackMinimumDistanceHelixHelix ( )
TwoTrackMinimumDistanceHelixHelix::~TwoTrackMinimumDistanceHelixHelix ( )

Definition at line 14 of file TwoTrackMinimumDistanceHelixHelix.cc.

14 {}

Member Function Documentation

bool TwoTrackMinimumDistanceHelixHelix::calculate ( const GlobalTrajectoryParameters G,
const GlobalTrajectoryParameters H,
const float  qual = .001 
)

Definition at line 119 of file TwoTrackMinimumDistanceHelixHelix.cc.

References finalPoints(), callgraph::G, class-composition::H, edm::isNotFinite(), oneIteration(), pointsUpdated, GlobalTrajectoryParameters::position(), theG, theg, theH, theh, themaxiter, themaxjump, thepG, thepG0, thepH, thepH0, and updateCoeffs().

121  {
122  pointsUpdated = false;
123  theG= &G;
124  theH= &H;
125  bool retval=false;
126 
127  if ( updateCoeffs ( theG->position(), theH->position() ) ){
128  finalPoints();
129  return true;
130  }
131 
132  thepG = thepG0;
133  thepH = thepH0;
134 
135  int counter=0;
136  double pH=0; double pG=0;
137  do {
138  retval=oneIteration ( pG, pH );
139  if ( edm::isNotFinite(pG) || edm::isNotFinite(pH) ) retval=true;
140  if ( counter++>themaxiter ) retval=true;
141  } while ( (!retval) && ( fabs(pG) > qual || fabs(pH) > qual ));
142  if ( fabs ( theg * ( thepG - thepG0 ) ) > themaxjump ) retval=true;
143  if ( fabs ( theh * ( thepH - thepH0 ) ) > themaxjump ) retval=true;
144 
145  finalPoints();
146 
147  return retval;
148 }
constexpr bool isNotFinite(T x)
Definition: isFinite.h:9
bool updateCoeffs(const GlobalPoint &, const GlobalPoint &)
void TwoTrackMinimumDistanceHelixHelix::finalPoints ( )
private

Definition at line 151 of file TwoTrackMinimumDistanceHelixHelix.cc.

References funct::cos(), pathG, pathH, pointG, pointH, pointsUpdated, GlobalTrajectoryParameters::position(), funct::sin(), mathSSE::sqrt(), thecospG0, thecospH0, theG, theg, theH, theh, thepG, thepG0, thepH, thepH0, thesinpG0, thesinpH0, thetanlambdaG, and thetanlambdaH.

Referenced by calculate(), and secondAngle().

151  {
152  if (pointsUpdated) return;
153  GlobalVector tmpG( sin(thepG) - thesinpG0,
154  - cos(thepG) + thecospG0,
155  thetanlambdaG * ( thepG- thepG0 )
156  );
157  pointG = theG->position() + theg * tmpG;
159 
160  GlobalVector tmpH( sin(thepH) - thesinpH0,
161  - cos(thepH) + thecospH0,
162  thetanlambdaH * ( thepH- thepH0 )
163  );
164  pointH = theH->position() + theh * tmpH;
166 
167  pointsUpdated = true;
168 }
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
T sqrt(T t)
Definition: SSEVec.h:18
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
double TwoTrackMinimumDistanceHelixHelix::firstAngle ( ) const
inline
bool TwoTrackMinimumDistanceHelixHelix::oneIteration ( double &  dH,
double &  dG 
)
private

Definition at line 78 of file TwoTrackMinimumDistanceHelixHelix.cc.

References funct::cos(), funct::sin(), thea, theb, thec1, thec2, thecospG, thecospH, thed1, thed2, thee1, thee2, theg, theh, thepG, thepH, thesingjacI, thesinpG, and thesinpH.

Referenced by calculate(), and secondAngle().

78  {
83 
84  const double A11= theh * ( - thesinpH * ( thea - theg * thesinpG ) +
85  thecospH * ( theb + theg * thecospG ) + thec1);
86  if (A11 < 0) { return true; };
87  const double A22= -theg * (- thesinpG * ( thea + theh * thesinpH ) +
88  thecospG*( theb - theh * thecospH ) + thec2);
89  if (A22 < 0) { return true; };
90  const double A12= theh * (-theg * thecospG * thecospH -
91  theg * thesinpH * thesinpG + thed1);
92  const double A21= -theg * (theh * thecospG * thecospH +
93  theh * thesinpH * thesinpG + thed2);
94  const double detaI = 1./(A11 * A22 - A12 * A21);
95  const double z1=theh * ( thecospH * ( thea - theg * thesinpG ) + thesinpH *
96  ( theb + theg*thecospG ) + thec1 * thepH + thed1 * thepG + thee1);
97  const double z2=-theg * (thecospG * ( thea + theh * thesinpH ) + thesinpG *
98  ( theb - theh*thecospH ) + thec2 * thepG + thed2 * thepH + thee2);
99 
100  dH=( z1 * A22 - z2 * A12 ) * detaI;
101  dG=( z2 * A11 - z1 * A21 ) * detaI;
102  if ( fabs(detaI) > thesingjacI ) { return true; };
103 
104  thepH -= dH;
105  thepG -= dG;
106  return false;
107 }
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
std::pair<double, double> TwoTrackMinimumDistanceHelixHelix::pathLength ( ) const
inline

Definition at line 32 of file TwoTrackMinimumDistanceHelixHelix.h.

References pathG, and pathH.

std::pair<GlobalPoint, GlobalPoint> TwoTrackMinimumDistanceHelixHelix::points ( ) const
inline

Definition at line 28 of file TwoTrackMinimumDistanceHelixHelix.h.

References pointG, and pointH.

28  {
29  return std::pair<GlobalPoint, GlobalPoint> (pointG, pointH);
30  }
double TwoTrackMinimumDistanceHelixHelix::secondAngle ( ) const
inline
bool TwoTrackMinimumDistanceHelixHelix::updateCoeffs ( const GlobalPoint gpH,
const GlobalPoint gpG 
)
private

Definition at line 16 of file TwoTrackMinimumDistanceHelixHelix.cc.

References GlobalTrajectoryParameters::charge(), MagneticField::inInverseGeV(), GlobalTrajectoryParameters::magneticField(), GlobalTrajectoryParameters::momentum(), PV3DBase< T, PVType, FrameType >::perp(), GlobalTrajectoryParameters::position(), thea, theb, thec1, thec2, thecospG0, thecospH0, thed1, thed2, thee1, thee2, theG, theg, theH, theh, thepG0, thepH0, thesinpG0, thesinpH0, thetanlambdaG, thetanlambdaH, PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

Referenced by calculate(), and secondAngle().

17  {
18 
19  const double Bc2kH = theH->magneticField().inInverseGeV(gpH).z();
20  const double Bc2kG = theG->magneticField().inInverseGeV(gpG).z();
21  const double Ht= theH->momentum().perp();
22  const double Gt= theG->momentum().perp();
23  // thelambdaH=asin ( theH->momentum().z() / Hn );
24 
25  if ( Ht == 0. || Gt == 0. ) {
26  edm::LogWarning ("TwoTrackMinimumDistanceHelixHelix")
27  << "transverse momentum of input trajectory is zero.";
28  return true;
29  };
30 
31  if ( theH->charge() == 0. || theG->charge() == 0. ) {
32  edm::LogWarning ("TwoTrackMinimumDistanceHelixHelix")
33  << "charge of input track is zero.";
34  return true;
35  };
36 
37  if ( Bc2kG == 0.) {
38  edm::LogWarning ("TwoTrackMinimumDistanceHelixHelix")
39  << "magnetic field at point " << gpG << " is zero.";
40  return true;
41  };
42 
43  if ( Bc2kH == 0. ) {
44  edm::LogWarning ("TwoTrackMinimumDistanceHelixHelix")
45  << "magnetic field at point " << gpH << " is zero.";
46  return true;
47  };
48 
49  theh= Ht / (theH->charge() * Bc2kH );
50  thesinpH0= - theH->momentum().y() / ( Ht );
51  thecospH0= - theH->momentum().x() / ( Ht );
52  thetanlambdaH = - theH->momentum().z() / ( Ht);
53  thepH0 = atan2 ( thesinpH0 , thecospH0 );
54 
55  // thelambdaG=asin ( theG->momentum().z()/( Gn ) );
56 
57  theg= Gt / (theG->charge() * Bc2kG );
58  thesinpG0= - theG->momentum().y() / ( Gt);
59  thecospG0= - theG->momentum().x() / (Gt);
60  thetanlambdaG = - theG->momentum().z() / ( Gt);
61  thepG0 = atan2 ( thesinpG0 , thecospG0 );
62 
63  thea=theH->position().x() - theG->position().x() + theg * thesinpG0 -
64  theh * thesinpH0;
65  theb=theH->position().y() - theG->position().y() - theg * thecospG0 +
66  theh * thecospH0;
69  thed1= -theg * thetanlambdaG * thetanlambdaH;
70  thed2= theh * thetanlambdaG * thetanlambdaH;
71  thee1= thetanlambdaH * ( theH->position().z() - theG->position().z() -
72  theh * thepH0 * thetanlambdaH + theg * thepG0 * thetanlambdaG );
73  thee2= thetanlambdaG * ( theH->position().z() - theG->position().z() -
74  theh * thepH0 * thetanlambdaH + theg * thepG0 * thetanlambdaG );
75  return false;
76 }
T perp() const
Definition: PV3DBase.h:72
T y() const
Definition: PV3DBase.h:63
GlobalVector inInverseGeV(const GlobalPoint &gp) const
Field value ad specified global point, in 1/Gev.
Definition: MagneticField.h:41
T z() const
Definition: PV3DBase.h:64
const MagneticField & magneticField() const
T x() const
Definition: PV3DBase.h:62

Member Data Documentation

double TwoTrackMinimumDistanceHelixHelix::pathG
private

Definition at line 62 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by finalPoints(), and pathLength().

double TwoTrackMinimumDistanceHelixHelix::pathH
private

Definition at line 62 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by finalPoints(), and pathLength().

GlobalPoint TwoTrackMinimumDistanceHelixHelix::pointG
private

Definition at line 61 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by finalPoints(), and points().

GlobalPoint TwoTrackMinimumDistanceHelixHelix::pointH
private

Definition at line 61 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by finalPoints(), and points().

bool TwoTrackMinimumDistanceHelixHelix::pointsUpdated
private

Definition at line 63 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by calculate(), and finalPoints().

double TwoTrackMinimumDistanceHelixHelix::thea
private

Definition at line 49 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::theb
private

Definition at line 49 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thec1
private

Definition at line 49 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thec2
private

Definition at line 49 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thecospG
private

Definition at line 60 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration().

double TwoTrackMinimumDistanceHelixHelix::thecospG0
private

Definition at line 52 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by finalPoints(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thecospH
private

Definition at line 60 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration().

double TwoTrackMinimumDistanceHelixHelix::thecospH0
private

Definition at line 53 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by finalPoints(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thed1
private

Definition at line 49 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thed2
private

Definition at line 49 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thee1
private

Definition at line 49 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thee2
private

Definition at line 49 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration(), and updateCoeffs().

GlobalTrajectoryParameters const * TwoTrackMinimumDistanceHelixHelix::theG
private

Definition at line 47 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by calculate(), finalPoints(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::theg
private
GlobalTrajectoryParameters const* TwoTrackMinimumDistanceHelixHelix::theH
private

Definition at line 47 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by calculate(), finalPoints(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::theh
private
int TwoTrackMinimumDistanceHelixHelix::themaxiter
private

Definition at line 66 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by calculate().

double TwoTrackMinimumDistanceHelixHelix::themaxjump
private

Definition at line 65 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by calculate().

double TwoTrackMinimumDistanceHelixHelix::thepG
private
double TwoTrackMinimumDistanceHelixHelix::thepG0
private

Definition at line 54 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by calculate(), finalPoints(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thepH
private
double TwoTrackMinimumDistanceHelixHelix::thepH0
private

Definition at line 54 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by calculate(), finalPoints(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thesingjacI
private

Definition at line 65 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration().

double TwoTrackMinimumDistanceHelixHelix::thesinpG
private

Definition at line 59 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration().

double TwoTrackMinimumDistanceHelixHelix::thesinpG0
private

Definition at line 52 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by finalPoints(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thesinpH
private

Definition at line 59 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by oneIteration().

double TwoTrackMinimumDistanceHelixHelix::thesinpH0
private

Definition at line 53 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by finalPoints(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thetanlambdaG
private

Definition at line 51 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by finalPoints(), and updateCoeffs().

double TwoTrackMinimumDistanceHelixHelix::thetanlambdaH
private

Definition at line 51 of file TwoTrackMinimumDistanceHelixHelix.h.

Referenced by finalPoints(), and updateCoeffs().