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 15 of file GEMCSCSegment.cc.

Constructor & Destructor Documentation

ProjectionMatrixDiag::ProjectionMatrixDiag ( )
inline

Definition at line 21 of file GEMCSCSegment.cc.

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

Definition at line 20 of file GEMSegment.cc.

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

Definition at line 21 of file ME0Segment.cc.

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

Member Function Documentation

const AlgebraicMatrix& ProjectionMatrixDiag::getMatrix ( ) const
inline

Definition at line 26 of file GEMSegment.cc.

26 { return (theProjectionMatrix); }
AlgebraicMatrix theProjectionMatrix
const AlgebraicMatrix& ProjectionMatrixDiag::getMatrix ( ) const
inline

Definition at line 27 of file ME0Segment.cc.

27 { return (theProjectionMatrix); }
AlgebraicMatrix theProjectionMatrix
const AlgebraicMatrix& ProjectionMatrixDiag::getMatrix ( ) const
inline

Member Data Documentation

AlgebraicMatrix ProjectionMatrixDiag::theProjectionMatrix
protected

Definition at line 18 of file GEMCSCSegment.cc.