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
26namespace genfit {
27
28AbsMeasurement::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
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
51
52
54 fputs ("must not call AbsMeasurement::operator=\n",stderr);
55 abort();
56 return *this;
57}
58
59
60void 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 */
Contains the measurement and covariance in raw detector coordinates.
virtual void Print(const Option_t *="") const
AbsMeasurement & operator=(const AbsMeasurement &)
protect from calling assignment operator from outside the class. Use clone() if you want a copy!
Object containing AbsMeasurement and AbsFitterInfo objects.
Definition TrackPoint.h:50
Matrix inversion tools.
Definition AbsBField.h:29