CMS 3D CMS Logo

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

#include <AlignmentExtendedCorrelationsEntry.h>

Public Member Functions

 AlignmentExtendedCorrelationsEntry (void)
 Default constructor. More...
 
 AlignmentExtendedCorrelationsEntry (short unsigned int nRows, short unsigned int nCols)
 Constructor. Leaves the correlations matrix uninitialized. More...
 
 AlignmentExtendedCorrelationsEntry (short unsigned int nRows, short unsigned int nCols, const float init)
 Constructor. Initializes all elements of the correlations matrix to the given value. More...
 
 AlignmentExtendedCorrelationsEntry (const AlgebraicMatrix &mat)
 Constructor from CLHEP matrix. More...
 
AlgebraicMatrix matrix (void) const
 Retrieve the correlation matrix in a CLHEP matrix representation;. More...
 
const short unsigned int numCol (void) const
 Get the number of columns of the correlation matrix. More...
 
const short unsigned int numRow (void) const
 Get the number of rows of the correlation matrix. More...
 
float & operator() (short unsigned int iRow, short unsigned int jCol)
 Read or write an element of the correlations matrix. NOTE: Indexing starts from [0,0]. More...
 
const float operator() (short unsigned int iRow, short unsigned int jCol) const
 Read or write an element of the correlations matrix. NOTE: Indexing starts from [0,0]. More...
 
void operator*= (const float multiply)
 Multiply all elements of the correlations matrix with a given number. More...
 
 ~AlignmentExtendedCorrelationsEntry (void)
 Destructor. More...
 

Private Attributes

std::vector< float > theData
 
short unsigned int theNCols
 
short unsigned int theNRows
 

Detailed Description

Data container for a correlations matrix (represented by a vector of floats), with basic access functions. NOTE: This class is designed specifically for the use within AlignmentExtendedCorrelationsStore, and is not intended to be used elsewhere.

Definition at line 13 of file AlignmentExtendedCorrelationsEntry.h.

Constructor & Destructor Documentation

AlignmentExtendedCorrelationsEntry::AlignmentExtendedCorrelationsEntry ( void  )

Default constructor.

Definition at line 5 of file AlignmentExtendedCorrelationsEntry.cc.

5  :
6 // theCounter( 0 ),
7  theNRows( 0 ),
8  theNCols( 0 )
9 {}
AlignmentExtendedCorrelationsEntry::AlignmentExtendedCorrelationsEntry ( short unsigned int  nRows,
short unsigned int  nCols 
)
explicit

Constructor. Leaves the correlations matrix uninitialized.

Definition at line 12 of file AlignmentExtendedCorrelationsEntry.cc.

13  :
14 // theCounter( 0 ),
15  theNRows( nRows ),
16  theNCols( nCols ),
17  theData( nRows*nCols )
18 {}
AlignmentExtendedCorrelationsEntry::AlignmentExtendedCorrelationsEntry ( short unsigned int  nRows,
short unsigned int  nCols,
const float  init 
)
explicit

Constructor. Initializes all elements of the correlations matrix to the given value.

Definition at line 21 of file AlignmentExtendedCorrelationsEntry.cc.

23  :
24 // theCounter( 0 ),
25  theNRows( nRows ),
26  theNCols( nCols ),
27  theData( nRows*nCols, init )
28 {}
int init
Definition: HydjetWrapper.h:67
AlignmentExtendedCorrelationsEntry::AlignmentExtendedCorrelationsEntry ( const AlgebraicMatrix mat)
explicit

Constructor from CLHEP matrix.

Definition at line 31 of file AlignmentExtendedCorrelationsEntry.cc.

References mps_fire::i, theData, and theNCols.

31  :
32 // theCounter( 0 ),
33  theNRows( mat.num_row() ),
34  theNCols( mat.num_col() ),
35  theData( mat.num_row()*mat.num_col() )
36 {
37  for ( int i = 0; i < mat.num_row(); ++i )
38  {
39  for ( int j = 0; j < mat.num_col(); ++j )
40  {
41  theData[i*theNCols+j] = mat[i][j];
42  }
43  }
44 }
AlignmentExtendedCorrelationsEntry::~AlignmentExtendedCorrelationsEntry ( void  )
inline

Destructor.

Definition at line 31 of file AlignmentExtendedCorrelationsEntry.h.

31 {}

Member Function Documentation

AlgebraicMatrix AlignmentExtendedCorrelationsEntry::matrix ( void  ) const

Retrieve the correlation matrix in a CLHEP matrix representation;.

Definition at line 53 of file AlignmentExtendedCorrelationsEntry.cc.

References mps_fire::i, mps_fire::result, theData, theNCols, and theNRows.

Referenced by numCol().

54 {
56 
57  for ( int i = 0; i < theNRows; ++i )
58  {
59  for ( int j = 0; j < theNCols; ++j )
60  {
61  result[i][j] = theData[i*theNCols+j];
62  }
63  }
64 
65  return result;
66 }
CLHEP::HepMatrix AlgebraicMatrix
const short unsigned int AlignmentExtendedCorrelationsEntry::numCol ( void  ) const
inline
const short unsigned int AlignmentExtendedCorrelationsEntry::numRow ( void  ) const
inline
float& AlignmentExtendedCorrelationsEntry::operator() ( short unsigned int  iRow,
short unsigned int  jCol 
)
inline

Read or write an element of the correlations matrix. NOTE: Indexing starts from [0,0].

Definition at line 34 of file AlignmentExtendedCorrelationsEntry.h.

References theData, and theNCols.

const float AlignmentExtendedCorrelationsEntry::operator() ( short unsigned int  iRow,
short unsigned int  jCol 
) const
inline

Read or write an element of the correlations matrix. NOTE: Indexing starts from [0,0].

Definition at line 37 of file AlignmentExtendedCorrelationsEntry.h.

References theData, and theNCols.

void AlignmentExtendedCorrelationsEntry::operator*= ( const float  multiply)

Multiply all elements of the correlations matrix with a given number.

Definition at line 47 of file AlignmentExtendedCorrelationsEntry.cc.

References theData.

Referenced by numCol().

48 {
49  for ( std::vector< float >::iterator it = theData.begin(); it != theData.end(); ++it ) (*it) *= multiply;
50 }

Member Data Documentation

std::vector< float > AlignmentExtendedCorrelationsEntry::theData
private
short unsigned int AlignmentExtendedCorrelationsEntry::theNCols
private
short unsigned int AlignmentExtendedCorrelationsEntry::theNRows
private

Definition at line 64 of file AlignmentExtendedCorrelationsEntry.h.

Referenced by matrix(), and numRow().