source: trunk/source/error_propagation/include/G4ErrorMatrix.icc @ 1202

Last change on this file since 1202 was 1058, checked in by garnier, 15 years ago

file release beta

File size: 3.3 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26// $Id: G4ErrorMatrix.icc,v 1.2 2007/06/01 12:43:28 gcosmo Exp $
27// GEANT4 tag $Name: geant4-09-02-ref-02 $
28//
29// ------------------------------------------------------------
30//      GEANT 4 class inline implementation
31// ------------------------------------------------------------
32
33inline G4ErrorMatrix::G4ErrorMatrix()
34  : m(0), nrow(0), ncol(0), size(0)
35{
36}
37
38inline G4int G4ErrorMatrix::num_row() const
39{
40  return nrow;
41}
42
43inline G4int G4ErrorMatrix::num_col() const
44{
45  return ncol;
46}
47
48inline G4int G4ErrorMatrix::num_size() const
49{
50  return size;
51}
52
53inline G4double & G4ErrorMatrix::operator()(G4int row, G4int col)
54{
55  return *(m.begin()+(row-1)*ncol+col-1);
56}
57
58inline const G4double & G4ErrorMatrix::operator()(G4int row, G4int col) const
59{
60  return *(m.begin()+(row-1)*ncol+col-1);
61}
62
63inline G4ErrorMatrix::G4ErrorMatrix_row G4ErrorMatrix::operator[] (G4int r)
64{
65  G4ErrorMatrix_row b(*this,r);
66  return b;
67}
68
69inline const G4ErrorMatrix::G4ErrorMatrix_row_const
70G4ErrorMatrix::operator[] (G4int r) const
71{
72  G4ErrorMatrix_row_const b(*this,r);
73  return b;
74}
75
76inline G4double &G4ErrorMatrix::G4ErrorMatrix_row::operator[](G4int c)
77{
78  return *(_a.m.begin()+_r*_a.ncol+c);
79}
80
81inline const G4double &
82G4ErrorMatrix::G4ErrorMatrix_row_const::operator[](G4int c) const
83{
84  return *(_a.m.begin()+_r*_a.ncol+c);
85}
86
87inline G4ErrorMatrix::
88G4ErrorMatrix_row::G4ErrorMatrix_row(G4ErrorMatrix&a, G4int r)
89   : _a(a)
90{
91  _r = r;
92}
93
94inline G4ErrorMatrix::G4ErrorMatrix_row_const::G4ErrorMatrix_row_const
95(const G4ErrorMatrix&a, G4int r)
96   : _a(a)
97{
98  _r = r;
99}
100
101inline G4ErrorMatrix G4ErrorMatrix::inverse(G4int &ierr) const
102{
103  G4ErrorMatrix mTmp(*this);
104  mTmp.invert(ierr);
105  return mTmp;
106}
Note: See TracBrowser for help on using the repository browser.