-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpacepointMeasurement2.h
More file actions
44 lines (34 loc) · 911 Bytes
/
SpacepointMeasurement2.h
File metadata and controls
44 lines (34 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*!
* \file SpacepointMeasurement.h
* \brief Handles the palnar type of measurements.
* \author Haiwang Yu <yuhw@nmsu.edu>
*/
#ifndef PHGENFIT_SPACEPOINTMEASUREMENT_H
#define PHGENFIT_SPACEPOINTMEASUREMENT_H
#include <phgenfit/Measurement.h>
#include <TMatrixDSymfwd.h>
class TVector3;
namespace PHGenFit
{
class SpacepointMeasurement2 : public Measurement
{
public:
/*!
* Ctor
* \param pos measurement position
* \param resolution standard dev for diagnal elements of the cov, other elements are zero
*/
SpacepointMeasurement2(const TVector3& pos, const TVector3& resolution);
/*!
* Ctor
* \param pos measurement position
* \param covariance matrix
*/
SpacepointMeasurement2(const TVector3& pos, const TMatrixDSym& cov);
void init(const TVector3& pos, const TMatrixDSym& cov);
//!dtor
~SpacepointMeasurement2();
protected:
};
} // namespace PHGenFit
#endif