~m-a-uchida/maus/RKdEdxDevel

« back to all changes in this revision

Viewing changes to src/common_cpp/Optics/CovarianceMatrix.hh

  • Committer: Durga Rajaram
  • Date: 2014-01-14 07:07:02 UTC
  • mfrom: (659.1.80 relcand)
  • Revision ID: durga@fnal.gov-20140114070702-2l1fuj1w6rraw7xe
Tags: MAUS-v0.7.6
MAUS-v0.7.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <vector>
24
24
#include <iostream>
25
25
 
 
26
#include "TMatrixDSym.h"
 
27
 
26
28
#include "Maths/SymmetricMatrix.hh"
27
29
#include "Optics/PhaseSpaceVector.hh"
28
30
 
80
82
   */
81
83
  explicit CovarianceMatrix(const ::CLHEP::HepSymMatrix& hep_sym_matrix);
82
84
 
 
85
  /** @brief  TMatrixDSym copy constructor. This copies only the first 6x6
 
86
   *          block elements of the TMatrixDSym object.
 
87
   */
 
88
  explicit CovarianceMatrix(const TMatrixDSym& root_sym_matrix);
 
89
 
83
90
  /** @brief  Construct from an array of doubles in row-major order.
84
91
   */
85
92
  explicit CovarianceMatrix(double const * const array_matrix);