CMS 3D CMS Logo

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

Public Member Functions

const AlgebraicMatrixgetMatrix () const
 
 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.

References theProjectionMatrix.

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

Member Function Documentation

const AlgebraicMatrix& ProjectionMatrixDiag::getMatrix ( ) const
inline

Definition at line 31 of file GEMCSCSegment.cc.

References theProjectionMatrix.

Referenced by GEMCSCSegment::projectionMatrix().

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

Member Data Documentation

AlgebraicMatrix ProjectionMatrixDiag::theProjectionMatrix
protected

Definition at line 23 of file GEMCSCSegment.cc.

Referenced by getMatrix(), and ProjectionMatrixDiag().