CMS 3D CMS Logo

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

#include <AlignmentExtendedCorrelationsStore.h>

Inheritance diagram for AlignmentExtendedCorrelationsStore:
AlignmentCorrelationsStore

Public Types

typedef std::map< Alignable *, ExtendedCorrelationsTable * > ExtendedCorrelations
 
typedef AlignmentExtendedCorrelationsEntry ExtendedCorrelationsEntry
 
typedef std::map< Alignable *, ExtendedCorrelationsEntryExtendedCorrelationsTable
 
- Public Types inherited from AlignmentCorrelationsStore
typedef std::map< Alignable *, CorrelationsTable * > Correlations
 
typedef std::map< Alignable *, AlgebraicMatrixCorrelationsTable
 

Public Member Functions

 AlignmentExtendedCorrelationsStore (const edm::ParameterSet &config)
 
void correlations (Alignable *ap1, Alignable *ap2, AlgebraicSymMatrix &cov, int row, int col) const override
 
bool correlationsAvailable (Alignable *ap1, Alignable *ap2) const override
 Check whether correlations are stored for a given pair of alignables. More...
 
virtual void getCorrelations (Alignable *ap1, Alignable *ap2, AlgebraicMatrix &mat) const
 Get correlations. More...
 
void resetCorrelations (void) override
 Reset correlations. More...
 
void setCorrelations (Alignable *ap1, Alignable *ap2, const AlgebraicSymMatrix &cov, int row, int col) override
 
void setCorrelations (Alignable *ap1, Alignable *ap2, AlgebraicMatrix &mat) override
 
unsigned int size (void) const override
 Get number of stored correlations. More...
 
 ~AlignmentExtendedCorrelationsStore (void) override
 
- Public Member Functions inherited from AlignmentCorrelationsStore
 AlignmentCorrelationsStore (void)
 
virtual ~AlignmentCorrelationsStore (void)
 

Private Member Functions

void fillCorrelationsTable (Alignable *ap1, Alignable *ap2, ExtendedCorrelationsTable *table, const AlgebraicSymMatrix &cov, int row, int col, bool transpose)
 
void fillCovariance (Alignable *ap1, Alignable *ap2, const ExtendedCorrelationsEntry &entry, AlgebraicSymMatrix &cov, int row, int col) const
 
void fillCovarianceT (Alignable *ap1, Alignable *ap2, const ExtendedCorrelationsEntry &entry, AlgebraicSymMatrix &cov, int row, int col) const
 
void readFromCovariance (Alignable *ap1, Alignable *ap2, ExtendedCorrelationsEntry &entry, const AlgebraicSymMatrix &cov, int row, int col)
 
void readFromCovarianceT (Alignable *ap1, Alignable *ap2, ExtendedCorrelationsEntry &entry, const AlgebraicSymMatrix &cov, int row, int col)
 
void resizeCorruptCorrelations (ExtendedCorrelationsEntry &entry, double maxCorr)
 

Private Attributes

ExtendedCorrelations theCorrelations
 
double theCut
 
int theMaxUpdates
 
double theWeight
 

Detailed Description

Definition at line 18 of file AlignmentExtendedCorrelationsStore.h.

Member Typedef Documentation

Definition at line 25 of file AlignmentExtendedCorrelationsStore.h.

Definition at line 23 of file AlignmentExtendedCorrelationsStore.h.

Definition at line 24 of file AlignmentExtendedCorrelationsStore.h.

Constructor & Destructor Documentation

AlignmentExtendedCorrelationsStore::AlignmentExtendedCorrelationsStore ( const edm::ParameterSet config)

Definition at line 12 of file AlignmentExtendedCorrelationsStore.cc.

References edm::ParameterSet::getParameter(), theCut, theMaxUpdates, and theWeight.

13 {
14  theMaxUpdates = config.getParameter<int>( "MaxUpdates" );
15  theCut = config.getParameter<double>( "CutValue" );
16  theWeight = config.getParameter<double>( "Weight" );
17 
18  edm::LogInfo("Alignment") << "@SUB=AlignmentExtendedCorrelationsStore::AlignmentExtendedCorrelationsStore"
19  << "Created.";
20 }
T getParameter(std::string const &) const
AlignmentExtendedCorrelationsStore::~AlignmentExtendedCorrelationsStore ( void  )
inlineoverride

Member Function Documentation

void AlignmentExtendedCorrelationsStore::correlations ( Alignable ap1,
Alignable ap2,
AlgebraicSymMatrix cov,
int  row,
int  col 
) const
overridevirtual

Write correlations directly to the covariance matrix starting at the given position. Indices are assumed to start from 0.

Reimplemented from AlignmentCorrelationsStore.

Definition at line 23 of file AlignmentExtendedCorrelationsStore.cc.

References fillCovariance(), fillCovarianceT(), std::swap(), theCorrelations, and geometryDiff::transpose().

Referenced by resetCorrelations().

25 {
26  static Alignable* previousAlignable = nullptr;
27  static ExtendedCorrelationsTable* previousCorrelations;
28 
29  // Needed by 'resetCorrelations()' to reset the static pointer:
30  if ( ap1 == nullptr ) { previousAlignable = nullptr; return; }
31 
32  bool transpose = ( ap2 > ap1 );
33  if ( transpose ) std::swap( ap1, ap2 );
34 
35  if ( ap1 == previousAlignable )
36  {
37  ExtendedCorrelationsTable::const_iterator itC2 = previousCorrelations->find( ap2 );
38  if ( itC2 != previousCorrelations->end() )
39  {
40  transpose ?
41  fillCovarianceT( ap1, ap2, (*itC2).second, cov, row, col ) :
42  fillCovariance( ap1, ap2, (*itC2).second, cov, row, col );
43  }
44  }
45  else
46  {
47  ExtendedCorrelations::const_iterator itC1 = theCorrelations.find( ap1 );
48  if ( itC1 != theCorrelations.end() )
49  {
50  previousAlignable = ap1;
51  previousCorrelations = (*itC1).second;
52 
53  ExtendedCorrelationsTable::const_iterator itC2 = (*itC1).second->find( ap2 );
54  if ( itC2 != (*itC1).second->end() )
55  {
56  transpose ?
57  fillCovarianceT( ap1, ap2, (*itC2).second, cov, row, col ) :
58  fillCovariance( ap1, ap2, (*itC2).second, cov, row, col );
59  }
60  }
61  }
62 
63  // don't fill anything into the covariance if there's no entry
64  return;
65 }
def transpose(a)
Definition: geometryDiff.py:37
std::map< Alignable *, ExtendedCorrelationsEntry > ExtendedCorrelationsTable
void fillCovariance(Alignable *ap1, Alignable *ap2, const ExtendedCorrelationsEntry &entry, AlgebraicSymMatrix &cov, int row, int col) const
U second(std::pair< T, U > const &p)
void fillCovarianceT(Alignable *ap1, Alignable *ap2, const ExtendedCorrelationsEntry &entry, AlgebraicSymMatrix &cov, int row, int col) const
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
col
Definition: cuy.py:1008
bool AlignmentExtendedCorrelationsStore::correlationsAvailable ( Alignable ap1,
Alignable ap2 
) const
overridevirtual

Check whether correlations are stored for a given pair of alignables.

Reimplemented from AlignmentCorrelationsStore.

Definition at line 155 of file AlignmentExtendedCorrelationsStore.cc.

References std::swap(), theCorrelations, and geometryDiff::transpose().

156 {
157  bool transpose = ( ap2 > ap1 );
158  if ( transpose ) std::swap( ap1, ap2 );
159 
160  ExtendedCorrelations::const_iterator itC1 = theCorrelations.find( ap1 );
161  if ( itC1 != theCorrelations.end() )
162  {
163  ExtendedCorrelationsTable::const_iterator itC2 = itC1->second->find( ap2 );
164  if ( itC2 != itC1->second->end() ) return true;
165  }
166  return false;
167 }
def transpose(a)
Definition: geometryDiff.py:37
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
void AlignmentExtendedCorrelationsStore::fillCorrelationsTable ( Alignable ap1,
Alignable ap2,
ExtendedCorrelationsTable table,
const AlgebraicSymMatrix cov,
int  row,
int  col,
bool  transpose 
)
private

Definition at line 195 of file AlignmentExtendedCorrelationsStore.cc.

References Alignable::alignmentParameters(), AlignmentParameters::numSelected(), readFromCovariance(), and readFromCovarianceT().

Referenced by setCorrelations().

199 {
200  ExtendedCorrelationsTable::iterator itC = table->find( ap2 );
201 
202  if ( itC != table->end() )
203  {
204  //if ( itC->second.counter() > theMaxUpdates ) return;
205 
206  transpose ?
207  readFromCovarianceT( ap1, ap2, itC->second, cov, row, col ) :
208  readFromCovariance( ap1, ap2, itC->second, cov, row, col );
209 
210  //itC->second.incrementCounter();
211  }
212  else
213  {
214  int nRow = ap1->alignmentParameters()->numSelected();
215  int nCol = ap2->alignmentParameters()->numSelected();
216  ExtendedCorrelationsEntry newEntry( nRow, nCol );
217 
218  transpose ?
219  readFromCovarianceT( ap1, ap2, newEntry, cov, row, col ) :
220  readFromCovariance( ap1, ap2, newEntry, cov, row, col );
221 
222  (*table)[ap2] = newEntry;
223  }
224 }
def transpose(a)
Definition: geometryDiff.py:37
AlignmentExtendedCorrelationsEntry ExtendedCorrelationsEntry
AlignmentParameters * alignmentParameters() const
Get the AlignmentParameters.
Definition: Alignable.h:61
U second(std::pair< T, U > const &p)
void readFromCovariance(Alignable *ap1, Alignable *ap2, ExtendedCorrelationsEntry &entry, const AlgebraicSymMatrix &cov, int row, int col)
int numSelected(void) const
Get number of selected parameters.
void readFromCovarianceT(Alignable *ap1, Alignable *ap2, ExtendedCorrelationsEntry &entry, const AlgebraicSymMatrix &cov, int row, int col)
col
Definition: cuy.py:1008
void AlignmentExtendedCorrelationsStore::fillCovariance ( Alignable ap1,
Alignable ap2,
const ExtendedCorrelationsEntry entry,
AlgebraicSymMatrix cov,
int  row,
int  col 
) const
private

Definition at line 228 of file AlignmentExtendedCorrelationsStore.cc.

References mps_splice::entry, Exception, edm::isNotFinite(), AlignmentExtendedCorrelationsEntry::numCol(), AlignmentExtendedCorrelationsEntry::numRow(), and mathSSE::sqrt().

Referenced by correlations().

230 {
231  int nRow = entry.numRow();
232  int nCol = entry.numCol();
233 
234  for ( int iRow = 0; iRow < nRow; ++iRow )
235  {
236  double factor = sqrt(cov[row+iRow][row+iRow]);
237  if ( edm::isNotFinite(factor) ) throw cms::Exception("LogicError") << "[AlignmentExtendedCorrelationsStore::fillCovariance] "
238  << "NaN-factor: sqrt(" << cov[row+iRow][row+iRow] << ")";
239 
240  for ( int jCol = 0; jCol < nCol; ++jCol )
241  cov[row+iRow][col+jCol] = entry( iRow, jCol )*factor;
242  }
243 
244  for ( int jCol = 0; jCol < nCol; ++jCol )
245  {
246  double factor = sqrt(cov[col+jCol][col+jCol]);
247  if ( edm::isNotFinite(factor) ) throw cms::Exception("LogicError") << "[AlignmentExtendedCorrelationsStore::fillCovariance] "
248  << "NaN-factor: sqrt(" << cov[col+jCol][col+jCol] << ")";
249 
250  for ( int iRow = 0; iRow < nRow; ++iRow )
251  cov[row+iRow][col+jCol] *= factor;
252  }
253 }
bool isNotFinite(T x)
Definition: isFinite.h:10
T sqrt(T t)
Definition: SSEVec.h:18
col
Definition: cuy.py:1008
void AlignmentExtendedCorrelationsStore::fillCovarianceT ( Alignable ap1,
Alignable ap2,
const ExtendedCorrelationsEntry entry,
AlgebraicSymMatrix cov,
int  row,
int  col 
) const
private

Definition at line 257 of file AlignmentExtendedCorrelationsStore.cc.

References mps_splice::entry, Exception, edm::isNotFinite(), AlignmentExtendedCorrelationsEntry::numCol(), AlignmentExtendedCorrelationsEntry::numRow(), and mathSSE::sqrt().

Referenced by correlations().

259 {
260  int nRow = entry.numRow();
261  int nCol = entry.numCol();
262 
263  for ( int iRow = 0; iRow < nRow; ++iRow )
264  {
265  double factor = sqrt(cov[col+iRow][col+iRow]);
266  if ( edm::isNotFinite(factor) ) throw cms::Exception("LogicError") << "[AlignmentExtendedCorrelationsStore::fillCovarianceT] "
267  << "NaN-factor: sqrt(" << cov[col+iRow][col+iRow] << ")";
268  for ( int jCol = 0; jCol < nCol; ++jCol )
269  cov[row+jCol][col+iRow] = entry( iRow, jCol )*factor;
270  }
271 
272  for ( int jCol = 0; jCol < nCol; ++jCol )
273  {
274  double factor = sqrt(cov[row+jCol][row+jCol]);
275  if ( edm::isNotFinite(factor) ) throw cms::Exception("LogicError") << "[AlignmentExtendedCorrelationsStore::fillCovarianceT] "
276  << "NaN-factor: sqrt(" << cov[row+jCol][row+jCol] << ")";
277  for ( int iRow = 0; iRow < nRow; ++iRow )
278  cov[row+jCol][col+iRow] *= factor;
279  }
280 
281 }
bool isNotFinite(T x)
Definition: isFinite.h:10
T sqrt(T t)
Definition: SSEVec.h:18
col
Definition: cuy.py:1008
void AlignmentExtendedCorrelationsStore::getCorrelations ( Alignable ap1,
Alignable ap2,
AlgebraicMatrix mat 
) const
virtual

Get correlations.

Definition at line 135 of file AlignmentExtendedCorrelationsStore.cc.

References std::swap(), theCorrelations, and geometryDiff::transpose().

136 {
137  bool transpose = ( ap2 > ap1 );
138  if ( transpose ) std::swap( ap1, ap2 );
139 
140  ExtendedCorrelations::const_iterator itC1 = theCorrelations.find( ap1 );
141  if ( itC1 != theCorrelations.end() )
142  {
143  ExtendedCorrelationsTable::const_iterator itC2 = itC1->second->find( ap2 );
144  if ( itC2 != itC1->second->end() )
145  {
146  mat = transpose ? itC2->second.matrix().T() : itC2->second.matrix();
147  return;
148  }
149  }
150 
151  mat = AlgebraicMatrix();
152 }
def transpose(a)
Definition: geometryDiff.py:37
CLHEP::HepMatrix AlgebraicMatrix
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
void AlignmentExtendedCorrelationsStore::readFromCovariance ( Alignable ap1,
Alignable ap2,
ExtendedCorrelationsEntry entry,
const AlgebraicSymMatrix cov,
int  row,
int  col 
)
private

Definition at line 285 of file AlignmentExtendedCorrelationsStore.cc.

References mps_splice::entry, AlignmentExtendedCorrelationsEntry::numCol(), AlignmentExtendedCorrelationsEntry::numRow(), resizeCorruptCorrelations(), and mathSSE::sqrt().

Referenced by fillCorrelationsTable().

287 {
288  int nRow = entry.numRow();
289  int nCol = entry.numCol();
290 
291  for ( int iRow = 0; iRow < nRow; ++iRow )
292  {
293  double factor = sqrt(cov[row+iRow][row+iRow]);
294  for ( int jCol = 0; jCol < nCol; ++jCol )
295  entry( iRow, jCol ) = cov[row+iRow][col+jCol]/factor;
296  }
297 
298  double maxCorr = 0;
299 
300  for ( int jCol = 0; jCol < nCol; ++jCol )
301  {
302  double factor = sqrt(cov[col+jCol][col+jCol]);
303  for ( int iRow = 0; iRow < nRow; ++iRow )
304  {
305  entry( iRow, jCol ) /= factor;
306  if ( fabs( entry( iRow, jCol ) ) > maxCorr ) maxCorr = fabs( entry( iRow, jCol ) );
307  }
308  }
309 
310  resizeCorruptCorrelations( entry, maxCorr );
311 }
T sqrt(T t)
Definition: SSEVec.h:18
void resizeCorruptCorrelations(ExtendedCorrelationsEntry &entry, double maxCorr)
col
Definition: cuy.py:1008
void AlignmentExtendedCorrelationsStore::readFromCovarianceT ( Alignable ap1,
Alignable ap2,
ExtendedCorrelationsEntry entry,
const AlgebraicSymMatrix cov,
int  row,
int  col 
)
private

Definition at line 315 of file AlignmentExtendedCorrelationsStore.cc.

References mps_splice::entry, AlignmentExtendedCorrelationsEntry::numCol(), AlignmentExtendedCorrelationsEntry::numRow(), resizeCorruptCorrelations(), and mathSSE::sqrt().

Referenced by fillCorrelationsTable().

317 {
318  int nRow = entry.numRow();
319  int nCol = entry.numCol();
320 
321  for ( int iRow = 0; iRow < nRow; ++iRow )
322  {
323  double factor = sqrt(cov[col+iRow][col+iRow]);
324  for ( int jCol = 0; jCol < nCol; ++jCol )
325  entry( iRow, jCol ) = cov[row+jCol][col+iRow]/factor;
326  }
327 
328  double maxCorr = 0;
329 
330  for ( int jCol = 0; jCol < nCol; ++jCol )
331  {
332  double factor = sqrt(cov[row+jCol][row+jCol]);
333  for ( int iRow = 0; iRow < nRow; ++iRow )
334  {
335  entry( iRow, jCol ) /= factor;
336  if ( fabs( entry( iRow, jCol ) ) > maxCorr ) maxCorr = fabs( entry( iRow, jCol ) );
337  }
338  }
339 
340  resizeCorruptCorrelations( entry, maxCorr );
341 }
T sqrt(T t)
Definition: SSEVec.h:18
void resizeCorruptCorrelations(ExtendedCorrelationsEntry &entry, double maxCorr)
col
Definition: cuy.py:1008
void AlignmentExtendedCorrelationsStore::resetCorrelations ( void  )
overridevirtual

Reset correlations.

Reimplemented from AlignmentCorrelationsStore.

Definition at line 170 of file AlignmentExtendedCorrelationsStore.cc.

References correlations(), setCorrelations(), and theCorrelations.

171 {
172  ExtendedCorrelations::iterator itC;
173  for ( itC = theCorrelations.begin(); itC != theCorrelations.end(); ++itC ) delete (*itC).second;
174  theCorrelations.erase( theCorrelations.begin(), theCorrelations.end() );
175 
176  // Reset the static pointers to the 'previous alignables'
178  correlations( nullptr, nullptr, dummy, 0, 0 );
179  setCorrelations( nullptr, nullptr, dummy, 0, 0 );
180 }
void correlations(Alignable *ap1, Alignable *ap2, AlgebraicSymMatrix &cov, int row, int col) const override
CLHEP::HepSymMatrix AlgebraicSymMatrix
void setCorrelations(Alignable *ap1, Alignable *ap2, const AlgebraicSymMatrix &cov, int row, int col) override
void AlignmentExtendedCorrelationsStore::resizeCorruptCorrelations ( ExtendedCorrelationsEntry entry,
double  maxCorr 
)
private

Definition at line 345 of file AlignmentExtendedCorrelationsStore.cc.

References theCut, and theWeight.

Referenced by readFromCovariance(), and readFromCovarianceT().

347 {
348  if ( maxCorr > 1. )
349  {
350  entry *= theWeight/maxCorr;
351  }
352  else if ( maxCorr > theCut )
353  {
354  entry *= 1. - ( maxCorr - theCut )/( 1. - theCut )*( 1. - theWeight );
355  }
356 }
void AlignmentExtendedCorrelationsStore::setCorrelations ( Alignable ap1,
Alignable ap2,
const AlgebraicSymMatrix cov,
int  row,
int  col 
)
overridevirtual

Get correlations directly from the given position of the covariance matrix and store them. Indices are assumed to start from 0.

Reimplemented from AlignmentCorrelationsStore.

Definition at line 68 of file AlignmentExtendedCorrelationsStore.cc.

References fillCorrelationsTable(), std::swap(), theCorrelations, and geometryDiff::transpose().

Referenced by resetCorrelations().

70 {
71  static Alignable* previousAlignable = nullptr;
72  static ExtendedCorrelationsTable* previousCorrelations;
73 
74  // Needed by 'resetCorrelations()' to reset the static pointer:
75  if ( ap1 == nullptr ) { previousAlignable = nullptr; return; }
76 
77  bool transpose = ( ap2 > ap1 );
78  if ( transpose ) std::swap( ap1, ap2 );
79 
80  if ( ap1 == previousAlignable )
81  {
82  fillCorrelationsTable( ap1, ap2, previousCorrelations, cov, row, col, transpose );
83  }
84  else
85  {
86  ExtendedCorrelations::iterator itC = theCorrelations.find( ap1 );
87  if ( itC != theCorrelations.end() )
88  {
89  fillCorrelationsTable( ap1, ap2, itC->second, cov, row, col, transpose );
90  previousAlignable = ap1;
91  previousCorrelations = itC->second;
92  }
93  else
94  {
95  // make new entry
97  fillCorrelationsTable( ap1, ap2, newTable, cov, row, col, transpose );
98 
99  theCorrelations[ap1] = newTable;
100 
101  previousAlignable = ap1;
102  previousCorrelations = newTable;
103  }
104  }
105 }
def transpose(a)
Definition: geometryDiff.py:37
std::map< Alignable *, ExtendedCorrelationsEntry > ExtendedCorrelationsTable
void fillCorrelationsTable(Alignable *ap1, Alignable *ap2, ExtendedCorrelationsTable *table, const AlgebraicSymMatrix &cov, int row, int col, bool transpose)
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
col
Definition: cuy.py:1008
void AlignmentExtendedCorrelationsStore::setCorrelations ( Alignable ap1,
Alignable ap2,
AlgebraicMatrix mat 
)
overridevirtual

Set correlations without checking whether the maximum number of updates has already been reached.

Reimplemented from AlignmentCorrelationsStore.

Definition at line 108 of file AlignmentExtendedCorrelationsStore.cc.

References std::swap(), theCorrelations, and geometryDiff::transpose().

109 {
110  bool transpose = ( ap2 > ap1 );
111  if ( transpose ) std::swap( ap1, ap2 );
112 
113  ExtendedCorrelations::iterator itC1 = theCorrelations.find( ap1 );
114  if ( itC1 != theCorrelations.end() )
115  {
116  ExtendedCorrelationsTable::iterator itC2 = itC1->second->find( ap1 );
117  if ( itC2 != itC1->second->end() )
118  {
119  itC2->second = transpose ? ExtendedCorrelationsEntry( mat.T() ) : ExtendedCorrelationsEntry( mat );
120  }
121  else
122  {
123  (*itC1->second)[ap2] = transpose ? ExtendedCorrelationsEntry( mat.T() ) : ExtendedCorrelationsEntry( mat );
124  }
125  }
126  else
127  {
129  (*newTable)[ap2] = transpose ? ExtendedCorrelationsEntry( mat.T() ) : ExtendedCorrelationsEntry( mat );
130  theCorrelations[ap1] = newTable;
131  }
132 }
def transpose(a)
Definition: geometryDiff.py:37
std::map< Alignable *, ExtendedCorrelationsEntry > ExtendedCorrelationsTable
AlignmentExtendedCorrelationsEntry ExtendedCorrelationsEntry
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
unsigned int AlignmentExtendedCorrelationsStore::size ( void  ) const
overridevirtual

Get number of stored correlations.

Reimplemented from AlignmentCorrelationsStore.

Definition at line 183 of file AlignmentExtendedCorrelationsStore.cc.

References theCorrelations.

Referenced by ntupleDataFormat._Collection::__iter__(), and ntupleDataFormat._Collection::__len__().

184 {
185  unsigned int size = 0;
186  ExtendedCorrelations::const_iterator itC;
187  for ( itC = theCorrelations.begin(); itC != theCorrelations.end(); ++itC )
188  size += itC->second->size();
189 
190  return size;
191 }
unsigned int size(void) const override
Get number of stored correlations.

Member Data Documentation

ExtendedCorrelations AlignmentExtendedCorrelationsStore::theCorrelations
private
double AlignmentExtendedCorrelationsStore::theCut
private
int AlignmentExtendedCorrelationsStore::theMaxUpdates
private
double AlignmentExtendedCorrelationsStore::theWeight
private