CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Attributes | Protected Member Functions | Protected Attributes | Private Member Functions
MuonSegFit Class Reference

#include <MuonSegFit.h>

Public Types

typedef std::vector< MuonRecHitPtrMuonRecHitContainer
 
typedef std::shared_ptr< TrackingRecHitMuonRecHitPtr
 
typedef ROOT::Math::SMatrix< double, MaxHits2, 4 > SMatrix12by4
 
typedef ROOT::Math::SMatrix< double, 4 > SMatrix4
 
typedef ROOT::Math::SMatrix< double, MaxHits2, MaxHits2, ROOT::Math::MatRepSym< double, MaxHits2 > > SMatrixSym12
 
typedef ROOT::Math::SMatrix< double, 2, 2, ROOT::Math::MatRepSym< double, 2 > > SMatrixSym2
 
typedef ROOT::Math::SMatrix< double, 4, 4, ROOT::Math::MatRepSym< double, 4 > > SMatrixSym4
 
typedef ROOT::Math::SVector< double, 4 > SVector4
 

Public Member Functions

double chi2 (void) const
 
AlgebraicSymMatrix covarianceMatrix (void)
 
bool fit (void)
 
bool fitdone () const
 
MuonRecHitContainer hits (void) const
 
LocalPoint intercept () const
 
LocalVector localdir () const
 
 MuonSegFit (MuonRecHitContainer hits)
 
int ndof (void) const
 
size_t nhits (void) const
 
float Rdev (float x, float y, float z) const
 
double scaleXError (void) const
 
void setScaleXError (double factor)
 
float xdev (float x, float z) const
 
float xfit (float z) const
 
float ydev (float y, float z) const
 
float yfit (float z) const
 
virtual ~MuonSegFit ()
 

Static Public Attributes

static const int MaxHits2 = 22
 

Protected Member Functions

SMatrix12by4 derivativeMatrix (void)
 
AlgebraicSymMatrix flipErrors (const SMatrixSym4 &)
 
void setOutFromIP (void)
 
SMatrixSym12 weightMatrix (void)
 

Protected Attributes

double chi2_
 
bool fitdone_
 
MuonRecHitContainer hits_
 
LocalPoint intercept_
 
LocalVector localdir_
 
int ndof_
 
double scaleXError_
 
float uslope_
 
float vslope_
 

Private Member Functions

void fit2 (void)
 
void fitlsq (void)
 
void setChi2 (void)
 

Detailed Description

Definition at line 35 of file MuonSegFit.h.

Member Typedef Documentation

Definition at line 42 of file MuonSegFit.h.

typedef std::shared_ptr<TrackingRecHit> MuonSegFit::MuonRecHitPtr

Definition at line 41 of file MuonSegFit.h.

typedef ROOT::Math::SMatrix<double,MaxHits2,4 > MuonSegFit::SMatrix12by4

Definition at line 49 of file MuonSegFit.h.

typedef ROOT::Math::SMatrix<double, 4 > MuonSegFit::SMatrix4

Definition at line 52 of file MuonSegFit.h.

typedef ROOT::Math::SMatrix<double,MaxHits2,MaxHits2,ROOT::Math::MatRepSym<double,MaxHits2> > MuonSegFit::SMatrixSym12

Definition at line 46 of file MuonSegFit.h.

typedef ROOT::Math::SMatrix<double,2,2,ROOT::Math::MatRepSym<double,2> > MuonSegFit::SMatrixSym2

Definition at line 56 of file MuonSegFit.h.

typedef ROOT::Math::SMatrix<double,4,4,ROOT::Math::MatRepSym<double,4> > MuonSegFit::SMatrixSym4

Definition at line 53 of file MuonSegFit.h.

typedef ROOT::Math::SVector<double,4> MuonSegFit::SVector4

Definition at line 59 of file MuonSegFit.h.

Constructor & Destructor Documentation

MuonSegFit::MuonSegFit ( MuonRecHitContainer  hits)
inline

Definition at line 66 of file MuonSegFit.h.

66  : hits_( hits ), uslope_(.0), vslope_(.0),
67  chi2_(.0), ndof_(0), scaleXError_( 1.0 ), fitdone_( false ) {}
double chi2_
Definition: MuonSegFit.h:126
float uslope_
Definition: MuonSegFit.h:122
float vslope_
Definition: MuonSegFit.h:123
MuonRecHitContainer hits(void) const
Definition: MuonSegFit.h:90
double scaleXError_
Definition: MuonSegFit.h:128
bool fitdone_
Definition: MuonSegFit.h:129
MuonRecHitContainer hits_
Definition: MuonSegFit.h:121
virtual MuonSegFit::~MuonSegFit ( )
inlinevirtual

Definition at line 69 of file MuonSegFit.h.

References covarianceMatrix(), and fit().

69 {}

Member Function Documentation

double MuonSegFit::chi2 ( void  ) const
inline

Definition at line 93 of file MuonSegFit.h.

References chi2_.

93 { return chi2_; }
double chi2_
Definition: MuonSegFit.h:126
AlgebraicSymMatrix MuonSegFit::covarianceMatrix ( void  )

Definition at line 364 of file MuonSegFit.cc.

References patCaloMETCorrections_cff::A, derivativeMatrix(), flipErrors(), convertSQLiteXML::ok, mps_fire::result, weightMatrix(), and create_public_lumi_plots::weights.

Referenced by ~MuonSegFit().

364  {
365 
368 #ifdef EDM_ML_DEBUG
369  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::covarianceMatrix] weights matrix W: \n" << weights;
370  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::covarianceMatrix] derivatives matrix A: \n" << A;
371 #endif
372 
373  // (AT W A)^-1
374  // e.g. See http://www.phys.ufl.edu/~avery/fitting.html, part I
375 
376  bool ok;
377  SMatrixSym4 result = ROOT::Math::SimilarityT(A, weights);
378 #ifdef EDM_ML_DEBUG
379  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::covarianceMatrix] (AT W A): \n" << result;
380 #endif
381 
382  ok = result.Invert(); // inverts in place
383  if ( !ok ) {
384  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::calculateError] Failed to invert matrix: \n" << result;
385  // return ok; //@@ SHOULD PASS THIS BACK TO CALLER?
386  }
387 #ifdef EDM_ML_DEBUG
388  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::covarianceMatrix] (AT W A)^-1: \n" << result;
389 #endif
390 
391  // reorder components to match TrackingRecHit interface (GEMSegment isa TrackingRecHit)
392  // i.e. slopes first, then positions
393  AlgebraicSymMatrix flipped = flipErrors( result );
394 
395  return flipped;
396 }
ROOT::Math::SMatrix< double, 4, 4, ROOT::Math::MatRepSym< double, 4 > > SMatrixSym4
Definition: MuonSegFit.h:53
SMatrixSym12 weightMatrix(void)
Definition: MuonSegFit.cc:296
SMatrix12by4 derivativeMatrix(void)
Definition: MuonSegFit.cc:323
ROOT::Math::SMatrix< double, MaxHits2, MaxHits2, ROOT::Math::MatRepSym< double, MaxHits2 > > SMatrixSym12
Definition: MuonSegFit.h:46
AlgebraicSymMatrix flipErrors(const SMatrixSym4 &)
Definition: MuonSegFit.cc:399
CLHEP::HepSymMatrix AlgebraicSymMatrix
ROOT::Math::SMatrix< double, MaxHits2, 4 > SMatrix12by4
Definition: MuonSegFit.h:49
MuonSegFit::SMatrix12by4 MuonSegFit::derivativeMatrix ( void  )
protected

Definition at line 323 of file MuonSegFit.cc.

References hits_, makeMuonMisalignmentScenario::matrix, z, and PV3DBase< T, PVType, FrameType >::z().

Referenced by covarianceMatrix(), and fitdone().

323  {
324 
325  SMatrix12by4 matrix; // 12x4, init to 0
326  int row = 0;
327 
328  for( MuonRecHitContainer::const_iterator it = hits_.begin(); it != hits_.end(); ++it) {
329  LocalPoint lp = (*it)->localPosition();
330 
331  float z = lp.z();
332 
333  matrix(row, 0) = 1.;
334  matrix(row, 2) = z;
335  ++row;
336  matrix(row, 1) = 1.;
337  matrix(row, 3) = z;
338  ++row;
339  }
340  return matrix;
341 }
T z() const
Definition: PV3DBase.h:64
MuonRecHitContainer hits_
Definition: MuonSegFit.h:121
ROOT::Math::SMatrix< double, MaxHits2, 4 > SMatrix12by4
Definition: MuonSegFit.h:49
bool MuonSegFit::fit ( void  )

Definition at line 14 of file MuonSegFit.cc.

References fit2(), fitdone(), fitdone_, fitlsq(), MaxHits2, gen::n, and nhits().

Referenced by trackingPlots.Iteration::modules(), and ~MuonSegFit().

14  {
15  if ( fitdone() ) return fitdone_; // don't redo fit unnecessarily
16  short n = nhits();
17  if (n < 2){
18  edm::LogVerbatim("MuonSegFit") << "[MuonSegFit::fit] - cannot fit just 1 hit!!";
19  }
20  else if (n == 2){
21  fit2();
22  }
23  else if (2*n <= MaxHits2){
24  fitlsq();
25  }
26  else {
27  edm::LogVerbatim("MuonSegFit") << "[MuonSegFit::fit] - cannot fit more than "<< MaxHits2/2 <<" hits!!";
28  }
29  return fitdone_;
30 }
static const int MaxHits2
Definition: MuonSegFit.h:44
void fitlsq(void)
Definition: MuonSegFit.cc:80
bool fitdone() const
Definition: MuonSegFit.h:97
void fit2(void)
Definition: MuonSegFit.cc:32
bool fitdone_
Definition: MuonSegFit.h:129
size_t nhits(void) const
Definition: MuonSegFit.h:92
void MuonSegFit::fit2 ( void  )
private

Definition at line 32 of file MuonSegFit.cc.

References chi2_, PVValHelper::dz, fitdone_, hits_, intercept_, ndof_, setOutFromIP(), uslope_, vslope_, PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

Referenced by fit(), and fitdone().

32  {
33  // Just join the two points
34  // Equation of straight line between (x1, y1) and (x2, y2) in xy-plane is
35  // y = mx + c
36  // with m = (y2-y1)/(x2-x1)
37  // and c = (y1*x2-x2*y1)/(x2-x1)
38  //
39  // Now we will make two straight lines
40  // one in xz-plane, another in yz-plane
41  // x = uz + c1
42  // y = vz + c2
43  // 1) Check whether hits are on the same layer
44  // should be done before, so removed
45  // -------------------------------------------
46 
47  MuonRecHitContainer::const_iterator ih = hits_.begin();
48  // 2) Global Positions of hit 1 and 2 and
49  // Local Positions of hit 1 and 2 w.r.t. reference GEM Eta Partition
50  // ---------------------------------------------------------------------
51  LocalPoint h1pos = (*ih)->localPosition();
52  ++ih;
53  LocalPoint h2pos = (*ih)->localPosition();
54 
55  // 3) Now make straight line between the two points in local coords
56  // ----------------------------------------------------------------
57  float dz = h2pos.z()-h1pos.z();
58  if(dz != 0.0) {
59  uslope_ = ( h2pos.x() - h1pos.x() ) / dz ;
60  vslope_ = ( h2pos.y() - h1pos.y() ) / dz ;
61  }
62 
63  float uintercept = ( h1pos.x()*h2pos.z() - h2pos.x()*h1pos.z() ) / dz;
64  float vintercept = ( h1pos.y()*h2pos.z() - h2pos.y()*h1pos.z() ) / dz;
65 
66  // calculate local position (variable: intercept_)
67  intercept_ = LocalPoint( uintercept, vintercept, 0.);
68 
69  // calculate the local direction (variable: localdir_)
70  setOutFromIP();
71 
72  //@@ NOT SURE WHAT IS SENSIBLE FOR THESE...
73  chi2_ = 0.;
74  ndof_ = 0;
75 
76  fitdone_ = true;
77 }
Point3DBase< Scalar, LocalTag > LocalPoint
Definition: Definitions.h:32
double chi2_
Definition: MuonSegFit.h:126
LocalPoint intercept_
Definition: MuonSegFit.h:124
float uslope_
Definition: MuonSegFit.h:122
T y() const
Definition: PV3DBase.h:63
float vslope_
Definition: MuonSegFit.h:123
T z() const
Definition: PV3DBase.h:64
void setOutFromIP(void)
Definition: MuonSegFit.cc:344
bool fitdone_
Definition: MuonSegFit.h:129
MuonRecHitContainer hits_
Definition: MuonSegFit.h:121
T x() const
Definition: PV3DBase.h:62
bool MuonSegFit::fitdone ( ) const
inline

Definition at line 97 of file MuonSegFit.h.

References derivativeMatrix(), fit2(), fitdone_, fitlsq(), flipErrors(), setChi2(), setOutFromIP(), and weightMatrix().

Referenced by fit().

97 { return fitdone_; }
bool fitdone_
Definition: MuonSegFit.h:129
void MuonSegFit::fitlsq ( void  )
private

Definition at line 80 of file MuonSegFit.cc.

References TtFullHadDaughter::B, fitdone_, hits_, intercept_, LogTrace, convertSQLiteXML::ok, AlCaHLTBitMon_ParallelJobs::p, setChi2(), setOutFromIP(), uslope_, findQualityFiles::v, vslope_, PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), z, and PV3DBase< T, PVType, FrameType >::z().

Referenced by fit(), and fitdone().

80  {
81  // Linear least-squares fit to up to 6 GEM rechits, one per layer in a GEM chamber.
82  // Comments adapted from Tim Cox' comments in the original GEMSegAlgoSK algorithm.
83 
84  // Fit to the local x, y rechit coordinates in z projection
85  // The strip measurement controls the precision of x
86  // The wire measurement controls the precision of y.
87  // Typical precision: u (strip, sigma~200um), v (wire, sigma~1cm)
88 
89  // Set up the normal equations for the least-squares fit as a matrix equation
90 
91  // We have a vector of measurements m, which is a 2n x 1 dim matrix
92  // The transpose mT is (u1, v1, u2, v2, ..., un, vn) where
93  // ui is the strip-associated measurement and
94  // vi is the wire-associated measurement
95  // for a given rechit i.
96 
97  // The fit is to
98  // u = u0 + uz * z
99  // v = v0 + vz * z
100  // where u0, uz, v0, vz are the parameters to be obtained from the fit.
101 
102  // These are contained in a vector p which is a 4x1 dim matrix, and
103  // its transpose pT is (u0, v0, uz, vz). Note the ordering!
104 
105  // The covariance matrix for each pair of measurements is 2 x 2 and
106  // the inverse of this is the error matrix E.
107  // The error matrix for the whole set of n measurements is a diagonal
108  // matrix with diagonal elements the individual 2 x 2 error matrices
109  // (because the inverse of a diagonal matrix is a diagonal matrix
110  // with each element the inverse of the original.)
111 
112  // In function 'weightMatrix()', the variable 'matrix' is filled with this
113  // block-diagonal overall covariance matrix. Then 'matrix' is inverted to the
114  // block-diagonal error matrix, and returned.
115 
116  // Define the matrix A as
117  // 1 0 z1 0
118  // 0 1 0 z1
119  // 1 0 z2 0
120  // 0 1 0 z2
121  // .. .. .. ..
122  // 1 0 zn 0
123  // 0 1 0 zn
124 
125  // This matrix A is set up and returned by function 'derivativeMatrix()'.
126 
127  // Then the normal equations are described by the matrix equation
128  //
129  // (AT E A)p = (AT E)m
130  //
131  // where AT is the transpose of A.
132 
133  // Call the combined matrix on the LHS, M, and that on the RHS, B:
134  // M p = B
135 
136  // We solve this for the parameter vector, p.
137  // The elements of M and B then involve sums over the hits
138 
139  // The covariance matrix of the parameters is obtained by
140  // (AT E A)^-1 calculated in 'covarianceMatrix()'.
141 
142  SMatrix4 M; // 4x4, init to 0
143  SVector4 B; // 4x1, init to 0;
144 
145  MuonRecHitContainer::const_iterator ih = hits_.begin();
146 
147  // Loop over the GEMRecHits and make small (2x2) matrices used to fill the blockdiagonal covariance matrix E^-1
148  for (ih = hits_.begin(); ih != hits_.end(); ++ih) {
149  LocalPoint lp = (*ih)->localPosition();
150  // Local position of hit w.r.t. chamber
151  double u = lp.x();
152  double v = lp.y();
153  double z = lp.z();
154 
155  // Covariance matrix of local errors
156  SMatrixSym2 IC; // 2x2, init to 0
157 
158  IC(0,0) = (*ih)->localPositionError().xx();
159  IC(1,1) = (*ih)->localPositionError().yy();
160  //@@ NOT SURE WHICH OFF-DIAGONAL ELEMENT MUST BE DEFINED BUT (1,0) WORKS
161  //@@ (and SMatrix enforces symmetry)
162  IC(1,0) = (*ih)->localPositionError().xy();
163  // IC(0,1) = IC(1,0);
164 
165 #ifdef EDM_ML_DEBUG
166  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::fit] 2x2 covariance matrix for this GEMRecHit :: [[" << IC(0,0) <<", "<< IC(0,1) <<"]["<< IC(1,0) <<","<<IC(1,1)<<"]]";
167 #endif
168 
169  // Invert covariance matrix (and trap if it fails!)
170  bool ok = IC.Invert();
171  if ( !ok ) {
172  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::fit] Failed to invert covariance matrix: \n" << IC;
173  // return ok; //@@ SHOULD PASS THIS BACK TO CALLER?
174  }
175 
176  M(0,0) += IC(0,0);
177  M(0,1) += IC(0,1);
178  M(0,2) += IC(0,0) * z;
179  M(0,3) += IC(0,1) * z;
180  B(0) += u * IC(0,0) + v * IC(0,1);
181 
182  M(1,0) += IC(1,0);
183  M(1,1) += IC(1,1);
184  M(1,2) += IC(1,0) * z;
185  M(1,3) += IC(1,1) * z;
186  B(1) += u * IC(1,0) + v * IC(1,1);
187 
188  M(2,0) += IC(0,0) * z;
189  M(2,1) += IC(0,1) * z;
190  M(2,2) += IC(0,0) * z * z;
191  M(2,3) += IC(0,1) * z * z;
192  B(2) += ( u * IC(0,0) + v * IC(0,1) ) * z;
193 
194  M(3,0) += IC(1,0) * z;
195  M(3,1) += IC(1,1) * z;
196  M(3,2) += IC(1,0) * z * z;
197  M(3,3) += IC(1,1) * z * z;
198  B(3) += ( u * IC(1,0) + v * IC(1,1) ) * z;
199 
200  }
201 
202  SVector4 p;
203  bool ok = M.Invert();
204  if (!ok ){
205  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::fit] Failed to invert matrix: \n" << M;
206  // return ok; //@@ SHOULD PASS THIS BACK TO CALLER?
207  }
208  else {
209  p = M * B;
210  }
211 
212 #ifdef EDM_ML_DEBUG
213  LogTrace("MuonSegFitMatrixDetails") << "[MuonSegFit::fit] p = "
214  << p(0) << ", " << p(1) << ", " << p(2) << ", " << p(3);
215 #endif
216 
217  // fill member variables (note origin has local z = 0)
218  // intercept_
219  intercept_ = LocalPoint(p(0), p(1), 0.);
220 
221  // localdir_ - set so segment points outwards from IP
222  uslope_ = p(2);
223  vslope_ = p(3);
224  setOutFromIP();
225 
226  // calculate chi2 of fit
227  setChi2( );
228 
229  // flag fit has been done
230  fitdone_ = true;
231 }
Point3DBase< Scalar, LocalTag > LocalPoint
Definition: Definitions.h:32
LocalPoint intercept_
Definition: MuonSegFit.h:124
float uslope_
Definition: MuonSegFit.h:122
T y() const
Definition: PV3DBase.h:63
float vslope_
Definition: MuonSegFit.h:123
void setChi2(void)
Definition: MuonSegFit.cc:235
T z() const
Definition: PV3DBase.h:64
void setOutFromIP(void)
Definition: MuonSegFit.cc:344
static const std::string B
#define LogTrace(id)
bool fitdone_
Definition: MuonSegFit.h:129
MuonRecHitContainer hits_
Definition: MuonSegFit.h:121
ROOT::Math::SMatrix< double, 2, 2, ROOT::Math::MatRepSym< double, 2 > > SMatrixSym2
Definition: MuonSegFit.h:56
ROOT::Math::SVector< double, 4 > SVector4
Definition: MuonSegFit.h:59
T x() const
Definition: PV3DBase.h:62
ROOT::Math::SMatrix< double, 4 > SMatrix4
Definition: MuonSegFit.h:52
AlgebraicSymMatrix MuonSegFit::flipErrors ( const SMatrixSym4 a)
protected

Definition at line 399 of file MuonSegFit.cc.

References a, and mps_fire::i.

Referenced by covarianceMatrix(), and fitdone().

399  {
400 
401  // The GEMSegment needs the error matrix re-arranged to match
402  // parameters in order (uz, vz, u0, v0)
403  // where uz, vz = slopes, u0, v0 = intercepts
404 
405 #ifdef EDM_ML_DEBUG
406  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::flipErrors] input: \n" << a;
407 #endif
408 
409  AlgebraicSymMatrix hold(4, 0. );
410 
411  for ( short j=0; j!=4; ++j) {
412  for (short i=0; i!=4; ++i) {
413  hold(i+1,j+1) = a(i,j); // SMatrix counts from 0, AlgebraicMatrix from 1
414  }
415  }
416 
417 #ifdef EDM_ML_DEBUG
418  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::flipErrors] after copy:";
419  edm::LogVerbatim("MuonSegFitMatrixDetails") << "(" << hold(1,1) << " " << hold(1,2) << " " << hold(1,3) << " " << hold(1,4);
420  edm::LogVerbatim("MuonSegFitMatrixDetails") << " " << hold(2,1) << " " << hold(2,2) << " " << hold(2,3) << " " << hold(2,4);
421  edm::LogVerbatim("MuonSegFitMatrixDetails") << " " << hold(3,1) << " " << hold(3,2) << " " << hold(3,3) << " " << hold(3,4);
422  edm::LogVerbatim("MuonSegFitMatrixDetails") << " " << hold(4,1) << " " << hold(4,2) << " " << hold(4,3) << " " << hold(4,4) << ")";
423 #endif
424 
425  // errors on slopes into upper left
426  hold(1,1) = a(2,2);
427  hold(1,2) = a(2,3);
428  hold(2,1) = a(3,2);
429  hold(2,2) = a(3,3);
430 
431  // errors on positions into lower right
432  hold(3,3) = a(0,0);
433  hold(3,4) = a(0,1);
434  hold(4,3) = a(1,0);
435  hold(4,4) = a(1,1);
436 
437  // must also interchange off-diagonal elements of off-diagonal 2x2 submatrices
438  hold(4,1) = a(1,2);
439  hold(3,2) = a(0,3);
440  hold(2,3) = a(3,0); // = a(0,3)
441  hold(1,4) = a(2,1); // = a(1,2)
442 
443 #ifdef EDM_ML_DEBUG
444  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::flipErrors] after flip:";
445  edm::LogVerbatim("MuonSegFitMatrixDetails") << "(" << hold(1,1) << " " << hold(1,2) << " " << hold(1,3) << " " << hold(1,4);
446  edm::LogVerbatim("MuonSegFitMatrixDetails") << " " << hold(2,1) << " " << hold(2,2) << " " << hold(2,3) << " " << hold(2,4);
447  edm::LogVerbatim("MuonSegFitMatrixDetails") << " " << hold(3,1) << " " << hold(3,2) << " " << hold(3,3) << " " << hold(3,4);
448  edm::LogVerbatim("MuonSegFitMatrixDetails") << " " << hold(4,1) << " " << hold(4,2) << " " << hold(4,3) << " " << hold(4,4) << ")";
449 #endif
450 
451  return hold;
452 }
double a
Definition: hdecay.h:121
CLHEP::HepSymMatrix AlgebraicSymMatrix
MuonRecHitContainer MuonSegFit::hits ( void  ) const
inline

Definition at line 90 of file MuonSegFit.h.

References hits_.

90 { return hits_; }
MuonRecHitContainer hits_
Definition: MuonSegFit.h:121
LocalPoint MuonSegFit::intercept ( ) const
inline

Definition at line 95 of file MuonSegFit.h.

References intercept_.

95 { return intercept_;}
LocalPoint intercept_
Definition: MuonSegFit.h:124
LocalVector MuonSegFit::localdir ( ) const
inline

Definition at line 96 of file MuonSegFit.h.

References localdir_.

96 { return localdir_;}
LocalVector localdir_
Definition: MuonSegFit.h:125
int MuonSegFit::ndof ( void  ) const
inline

Definition at line 94 of file MuonSegFit.h.

References ndof_.

94 { return ndof_; }
size_t MuonSegFit::nhits ( void  ) const
inline

Definition at line 92 of file MuonSegFit.h.

References hits_.

Referenced by fit().

92 { return hits_.size(); }
MuonRecHitContainer hits_
Definition: MuonSegFit.h:121
float MuonSegFit::Rdev ( float  x,
float  y,
float  z 
) const

Definition at line 472 of file MuonSegFit.cc.

References mathSSE::sqrt(), xdev(), and ydev().

Referenced by setScaleXError().

472  {
473  return sqrt ( xdev(x,z)*xdev(x,z) + ydev(y,z)*ydev(y,z) );
474 }
float ydev(float y, float z) const
Definition: MuonSegFit.cc:468
float xdev(float x, float z) const
Definition: MuonSegFit.cc:464
T sqrt(T t)
Definition: SSEVec.h:18
double MuonSegFit::scaleXError ( void  ) const
inline

Definition at line 91 of file MuonSegFit.h.

References scaleXError_.

Referenced by weightMatrix().

91 { return scaleXError_; }
double scaleXError_
Definition: MuonSegFit.h:128
void MuonSegFit::setChi2 ( void  )
private

Definition at line 235 of file MuonSegFit.cc.

References chi2_, hits_, intercept_, localdir_, ndof_, convertSQLiteXML::ok, uslope_, findQualityFiles::v, vslope_, PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), z, and PV3DBase< T, PVType, FrameType >::z().

Referenced by fitdone(), and fitlsq().

235  {
236 
237  double chsq = 0.;
238 
239  MuonRecHitContainer::const_iterator ih;
240 
241  for (ih = hits_.begin(); ih != hits_.end(); ++ih) {
242  LocalPoint lp = (*ih)->localPosition();
243 
244  double u = lp.x();
245  double v = lp.y();
246  double z = lp.z();
247 
248  double du = intercept_.x() + uslope_ * z - u;
249  double dv = intercept_.y() + vslope_ * z - v;
250 
251  SMatrixSym2 IC; // 2x2, init to 0
252 
253  IC(0,0) = (*ih)->localPositionError().xx();
254  // IC(0,1) = (*ih)->localPositionError().xy();
255  IC(1,0) = (*ih)->localPositionError().xy();
256  IC(1,1) = (*ih)->localPositionError().yy();
257  // IC(1,0) = IC(0,1);
258 
259 #ifdef EDM_ML_DEBUG
260  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::setChi2] IC before = \n" << IC;
261 #endif
262 
263  // Invert covariance matrix
264  bool ok = IC.Invert();
265  if (!ok ){
266  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::setChi2] Failed to invert covariance matrix: \n" << IC;
267  // return ok;
268  }
269  chsq += du*du*IC(0,0) + 2.*du*dv*IC(0,1) + dv*dv*IC(1,1);
270 
271 #ifdef EDM_ML_DEBUG
272  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::setChi2] IC after = \n" << IC;
273  edm::LogVerbatim("MuonSegFit") << "[GEM RecHit ] Contribution to Chi^2 of this hit :: du^2*Cov(0,0) + 2*du*dv*Cov(0,1) + dv^2*IC(1,1) = "<<du*du<<"*"<<IC(0,0)<<" + 2.*"<<du<<"*"<<dv<<"*"<<IC(0,1)<<" + "<<dv*dv<<"*"<<IC(1,1)<<" = "<<chsq;
274 #endif
275  }
276 
277  // fill member variables
278  chi2_ = chsq;
279  ndof_ = 2.*hits_.size() - 4;
280 
281 #ifdef EDM_ML_DEBUG
282  edm::LogVerbatim("MuonSegFit") << "[MuonSegFit::setChi2] chi2/ndof = " << chi2_ << "/" << ndof_ ;
283  edm::LogVerbatim("MuonSegFit") << "-----------------------------------------------------";
284 
285  // check fit quality ... maybe write a separate function later on
286  // that is there only for debugging issues
287 
288  edm::LogVerbatim("MuonSegFit") << "[GEM Segment with Local Direction = "<<localdir_<<" and Local Position "<<intercept_<<"] can be written as:";
289  edm::LogVerbatim("MuonSegFit") << "[ x ] = "<<localdir_.x()<<" * t + "<<intercept_.x();
290  edm::LogVerbatim("MuonSegFit") << "[ y ] = "<<localdir_.y()<<" * t + "<<intercept_.y();
291  edm::LogVerbatim("MuonSegFit") << "[ z ] = "<<localdir_.z()<<" * t + "<<intercept_.z();
292  edm::LogVerbatim("MuonSegFit") << "Now extrapolate to each of the GEMRecHits XY plane (so constant z = RH LP.z()) to obtain [x1,y1]";
293 #endif
294 }
LocalVector localdir_
Definition: MuonSegFit.h:125
double chi2_
Definition: MuonSegFit.h:126
LocalPoint intercept_
Definition: MuonSegFit.h:124
float uslope_
Definition: MuonSegFit.h:122
T y() const
Definition: PV3DBase.h:63
float vslope_
Definition: MuonSegFit.h:123
T z() const
Definition: PV3DBase.h:64
MuonRecHitContainer hits_
Definition: MuonSegFit.h:121
ROOT::Math::SMatrix< double, 2, 2, ROOT::Math::MatRepSym< double, 2 > > SMatrixSym2
Definition: MuonSegFit.h:56
T x() const
Definition: PV3DBase.h:62
void MuonSegFit::setOutFromIP ( void  )
protected

Definition at line 344 of file MuonSegFit.cc.

References PVValHelper::dx, BeamSpotFakeParameters_cfi::dxdz, PVValHelper::dy, BeamSpotFakeParameters_cfi::dydz, PVValHelper::dz, localdir_, PV3DBase< T, PVType, FrameType >::phi(), mathSSE::sqrt(), csvLumiCalc::unit, uslope_, and vslope_.

Referenced by fit2(), fitdone(), and fitlsq().

344  {
345  // Set direction of segment to point from IP outwards
346  // (Incorrect for particles not coming from IP, of course.)
347 
348  double dxdz = uslope_;
349  double dydz = vslope_;
350  double dz = 1./sqrt(1. + dxdz*dxdz + dydz*dydz);
351  double dx = dz*dxdz;
352  double dy = dz*dydz;
353  LocalVector localDir(dx,dy,dz);
354 
355  localdir_ = ( localDir ).unit();
356 #ifdef EDM_ML_DEBUG
357  edm::LogVerbatim("MuonSegFit") << "[MuonSegFit::setOutFromIP] :: dxdz = uslope_ = "<<std::setw(9)<<uslope_<<" dydz = vslope_ = "<<std::setw(9)<<vslope_<<" local dir = "<<localDir;
358  edm::LogVerbatim("MuonSegFit") << "[MuonSegFit::setOutFromIP] :: ==> local dir = "<<localdir_<< " localdir.phi = "<<localdir_.phi();
359 #endif
360 }
LocalVector localdir_
Definition: MuonSegFit.h:125
float uslope_
Definition: MuonSegFit.h:122
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
float vslope_
Definition: MuonSegFit.h:123
T sqrt(T t)
Definition: SSEVec.h:18
void MuonSegFit::setScaleXError ( double  factor)
inline

Definition at line 78 of file MuonSegFit.h.

References Rdev(), scaleXError_, x, xdev(), xfit(), y, ydev(), yfit(), and z.

78 { scaleXError_ = factor; }
double scaleXError_
Definition: MuonSegFit.h:128
MuonSegFit::SMatrixSym12 MuonSegFit::weightMatrix ( void  )
protected

Definition at line 296 of file MuonSegFit.cc.

References hits_, makeMuonMisalignmentScenario::matrix, convertSQLiteXML::ok, and scaleXError().

Referenced by covarianceMatrix(), and fitdone().

296  {
297 
298  bool ok = true;
299 
300  SMatrixSym12 matrix = ROOT::Math::SMatrixIdentity(); // 12x12, init to 1's on diag
301 
302  int row = 0;
303 
304  for (MuonRecHitContainer::const_iterator it = hits_.begin(); it != hits_.end(); ++it) {
305  // Note scaleXError allows rescaling the x error if necessary
306  matrix(row, row) = scaleXError()*(*it)->localPositionError().xx();
307  matrix(row, row+1) = (*it)->localPositionError().xy();
308  ++row;
309  matrix(row, row-1) = (*it)->localPositionError().xy();
310  matrix(row, row) = (*it)->localPositionError().yy();
311  ++row;
312  }
313 
314  ok = matrix.Invert(); // invert in place
315  if ( !ok ) {
316  edm::LogVerbatim("MuonSegFitMatrixDetails") << "[MuonSegFit::weightMatrix] Failed to invert matrix: \n" << matrix;
317  // return ok; //@@ SHOULD PASS THIS BACK TO CALLER?
318  }
319  return matrix;
320 }
double scaleXError(void) const
Definition: MuonSegFit.h:91
ROOT::Math::SMatrix< double, MaxHits2, MaxHits2, ROOT::Math::MatRepSym< double, MaxHits2 > > SMatrixSym12
Definition: MuonSegFit.h:46
MuonRecHitContainer hits_
Definition: MuonSegFit.h:121
float MuonSegFit::xdev ( float  x,
float  z 
) const

Definition at line 464 of file MuonSegFit.cc.

References intercept_, uslope_, x, and PV3DBase< T, PVType, FrameType >::x().

Referenced by Rdev(), and setScaleXError().

464  {
465  return intercept_.x() + uslope_ * z - x;
466 }
LocalPoint intercept_
Definition: MuonSegFit.h:124
float uslope_
Definition: MuonSegFit.h:122
T x() const
Definition: PV3DBase.h:62
float MuonSegFit::xfit ( float  z) const

Definition at line 454 of file MuonSegFit.cc.

References intercept_, uslope_, PV3DBase< T, PVType, FrameType >::x(), and z.

Referenced by setScaleXError().

454  {
455  //@@ ADD THIS TO EACH ACCESSOR OF FIT RESULTS?
456  // if ( !fitdone() ) fit();
457  return intercept_.x() + uslope_ * z;
458 }
LocalPoint intercept_
Definition: MuonSegFit.h:124
float uslope_
Definition: MuonSegFit.h:122
T x() const
Definition: PV3DBase.h:62
float MuonSegFit::ydev ( float  y,
float  z 
) const

Definition at line 468 of file MuonSegFit.cc.

References intercept_, vslope_, y, and PV3DBase< T, PVType, FrameType >::y().

Referenced by Rdev(), and setScaleXError().

468  {
469  return intercept_.y() + vslope_ * z - y;
470 }
LocalPoint intercept_
Definition: MuonSegFit.h:124
T y() const
Definition: PV3DBase.h:63
float vslope_
Definition: MuonSegFit.h:123
float MuonSegFit::yfit ( float  z) const

Definition at line 460 of file MuonSegFit.cc.

References intercept_, vslope_, PV3DBase< T, PVType, FrameType >::y(), and z.

Referenced by setScaleXError().

460  {
461  return intercept_.y() + vslope_ * z;
462 }
LocalPoint intercept_
Definition: MuonSegFit.h:124
T y() const
Definition: PV3DBase.h:63
float vslope_
Definition: MuonSegFit.h:123

Member Data Documentation

double MuonSegFit::chi2_
protected

Definition at line 126 of file MuonSegFit.h.

Referenced by chi2(), fit2(), and setChi2().

bool MuonSegFit::fitdone_
protected

Definition at line 129 of file MuonSegFit.h.

Referenced by fit(), fit2(), fitdone(), and fitlsq().

MuonRecHitContainer MuonSegFit::hits_
protected

Definition at line 121 of file MuonSegFit.h.

Referenced by derivativeMatrix(), fit2(), fitlsq(), hits(), nhits(), setChi2(), and weightMatrix().

LocalPoint MuonSegFit::intercept_
protected

Definition at line 124 of file MuonSegFit.h.

Referenced by fit2(), fitlsq(), intercept(), setChi2(), xdev(), xfit(), ydev(), and yfit().

LocalVector MuonSegFit::localdir_
protected

Definition at line 125 of file MuonSegFit.h.

Referenced by localdir(), setChi2(), and setOutFromIP().

const int MuonSegFit::MaxHits2 = 22
static

Definition at line 44 of file MuonSegFit.h.

Referenced by fit().

int MuonSegFit::ndof_
protected

Definition at line 127 of file MuonSegFit.h.

Referenced by fit2(), ndof(), and setChi2().

double MuonSegFit::scaleXError_
protected

Definition at line 128 of file MuonSegFit.h.

Referenced by scaleXError(), and setScaleXError().

float MuonSegFit::uslope_
protected

Definition at line 122 of file MuonSegFit.h.

Referenced by fit2(), fitlsq(), setChi2(), setOutFromIP(), xdev(), and xfit().

float MuonSegFit::vslope_
protected

Definition at line 123 of file MuonSegFit.h.

Referenced by fit2(), fitlsq(), setChi2(), setOutFromIP(), ydev(), and yfit().