CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
ProjectionMatrixDiag Class Reference

Public Member Functions

const AlgebraicMatrixgetMatrix () const
 
const AlgebraicMatrixgetMatrix () const
 
const AlgebraicMatrixgetMatrix () const
 
 ProjectionMatrixDiag ()
 
 ProjectionMatrixDiag ()
 
 ProjectionMatrixDiag ()
 

Protected Attributes

AlgebraicMatrix theProjectionMatrix
 

Detailed Description

Definition at line 20 of file GEMCSCSegment.cc.

Constructor & Destructor Documentation

ProjectionMatrixDiag::ProjectionMatrixDiag ( )
inline

Definition at line 25 of file GEMCSCSegment.cc.

25  : theProjectionMatrix(4,5,0) {
26  theProjectionMatrix[0][1] = 1;
27  theProjectionMatrix[1][2] = 1;
28  theProjectionMatrix[2][3] = 1;
29  theProjectionMatrix[3][4] = 1;
30  }
AlgebraicMatrix theProjectionMatrix
ProjectionMatrixDiag::ProjectionMatrixDiag ( )
inline

Definition at line 22 of file GEMSegment.cc.

22  : theProjectionMatrix(4,5,0) {
23  theProjectionMatrix[0][1] = 1;
24  theProjectionMatrix[1][2] = 1;
25  theProjectionMatrix[2][3] = 1;
26  theProjectionMatrix[3][4] = 1;
27  }
AlgebraicMatrix theProjectionMatrix
ProjectionMatrixDiag::ProjectionMatrixDiag ( )
inline

Definition at line 23 of file ME0Segment.cc.

23  : theProjectionMatrix(4,5,0) {
24  theProjectionMatrix[0][1] = 1;
25  theProjectionMatrix[1][2] = 1;
26  theProjectionMatrix[2][3] = 1;
27  theProjectionMatrix[3][4] = 1;
28  }
AlgebraicMatrix theProjectionMatrix

Member Function Documentation

const AlgebraicMatrix& ProjectionMatrixDiag::getMatrix ( ) const
inline

Definition at line 28 of file GEMSegment.cc.

28  {
29  return (theProjectionMatrix);
30  }
AlgebraicMatrix theProjectionMatrix
const AlgebraicMatrix& ProjectionMatrixDiag::getMatrix ( ) const
inline

Definition at line 29 of file ME0Segment.cc.

29  {
30  return (theProjectionMatrix);
31  }
AlgebraicMatrix theProjectionMatrix
const AlgebraicMatrix& ProjectionMatrixDiag::getMatrix ( ) const
inline

Definition at line 31 of file GEMCSCSegment.cc.

Referenced by ME0Segment::projectionMatrix(), GEMCSCSegment::projectionMatrix(), and GEMSegment::projectionMatrix().

31  {
32  return (theProjectionMatrix);
33  }
AlgebraicMatrix theProjectionMatrix

Member Data Documentation

AlgebraicMatrix ProjectionMatrixDiag::theProjectionMatrix
protected

Definition at line 23 of file GEMCSCSegment.cc.