SND@LHC Software
Loading...
Searching...
No Matches
AbsMeasurement.cc
Go to the documentation of this file.
1
/* Copyright 2008-2010, Technische Universitaet Muenchen,
2
Authors: Christian Hoeppner & Sebastian Neubert & Johannes Rauch
3
4
This file is part of GENFIT.
5
6
GENFIT is free software: you can redistribute it and/or modify
7
it under the terms of the GNU Lesser General Public License as published
8
by the Free Software Foundation, either version 3 of the License, or
9
(at your option) any later version.
10
11
GENFIT is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
GNU Lesser General Public License for more details.
15
16
You should have received a copy of the GNU Lesser General Public License
17
along with GENFIT. If not, see <http://www.gnu.org/licenses/>.
18
*/
19
20
#include "
AbsMeasurement.h
"
21
22
#include <cassert>
23
#include <iostream>
24
25
26
namespace
genfit
{
27
28
AbsMeasurement::AbsMeasurement
(
const
TVectorD& rawHitCoords,
const
TMatrixDSym& rawHitCov,
int
detId,
int
hitId,
TrackPoint
* trackPoint)
29
: rawHitCoords_(rawHitCoords), rawHitCov_(rawHitCov), detId_(detId), hitId_(hitId), trackPoint_(trackPoint)
30
{
31
assert(
rawHitCov_
.GetNrows() ==
rawHitCoords_
.GetNrows());
32
}
33
34
35
AbsMeasurement::AbsMeasurement
(
const
AbsMeasurement
& o)
36
: TObject(o),
37
rawHitCoords_(o.rawHitCoords_),
38
rawHitCov_(o.rawHitCov_),
39
detId_(o.detId_),
40
hitId_(o.hitId_),
41
trackPoint_(o.trackPoint_)
42
{
43
;
44
}
45
46
47
AbsMeasurement::~AbsMeasurement
()
48
{
49
;
50
}
51
52
53
AbsMeasurement
&
AbsMeasurement::operator=
(
const
AbsMeasurement
&) {
54
fputs (
"must not call AbsMeasurement::operator=\n"
,stderr);
55
abort();
56
return
*
this
;
57
}
58
59
60
void
AbsMeasurement::Print
(
const
Option_t*)
const
{
61
std::cout <<
"genfit::AbsMeasurement, detId = "
<<
detId_
<<
". hitId = "
<<
hitId_
<<
"\n"
;
62
std::cout <<
"Raw hit coordinates: "
;
rawHitCoords_
.Print();
63
std::cout <<
"Raw hit covariance: "
;
rawHitCov_
.Print();
64
}
65
66
67
}
/* End of namespace genfit */
AbsMeasurement.h
genfit::AbsMeasurement
Contains the measurement and covariance in raw detector coordinates.
Definition
AbsMeasurement.h:42
genfit::AbsMeasurement::Print
virtual void Print(const Option_t *="") const
Definition
AbsMeasurement.cc:60
genfit::AbsMeasurement::hitId_
int hitId_
Definition
AbsMeasurement.h:108
genfit::AbsMeasurement::rawHitCov_
TMatrixDSym rawHitCov_
Definition
AbsMeasurement.h:106
genfit::AbsMeasurement::detId_
int detId_
Definition
AbsMeasurement.h:107
genfit::AbsMeasurement::AbsMeasurement
AbsMeasurement()
Definition
AbsMeasurement.h:46
genfit::AbsMeasurement::rawHitCoords_
TVectorD rawHitCoords_
Definition
AbsMeasurement.h:105
genfit::AbsMeasurement::~AbsMeasurement
virtual ~AbsMeasurement()
Definition
AbsMeasurement.cc:47
genfit::AbsMeasurement::operator=
AbsMeasurement & operator=(const AbsMeasurement &)
protect from calling assignment operator from outside the class. Use clone() if you want a copy!
Definition
AbsMeasurement.cc:53
genfit::TrackPoint
Object containing AbsMeasurement and AbsFitterInfo objects.
Definition
TrackPoint.h:50
genfit
Matrix inversion tools.
Definition
AbsBField.h:29
genfit
core
src
AbsMeasurement.cc
Generated by
1.9.8