File indexing completed on 2025-08-06 08:17:59
0001
0002
0003
0004
0005
0006
0007 #ifndef PHGENFIT_SPACEPOINTMEASUREMENT_H
0008 #define PHGENFIT_SPACEPOINTMEASUREMENT_H
0009
0010 #include "Measurement.h"
0011
0012 #include <TMatrixDSymfwd.h>
0013
0014 class TVector3;
0015
0016 namespace PHGenFit
0017 {
0018 class SpacepointMeasurement : public Measurement
0019 {
0020 public:
0021
0022
0023
0024
0025
0026 SpacepointMeasurement(const TVector3& pos, const double resolution);
0027
0028
0029
0030
0031
0032 SpacepointMeasurement(const TVector3& pos, const TVector3& resolution);
0033
0034
0035
0036
0037
0038 SpacepointMeasurement(const TVector3& pos, const TMatrixDSym& cov);
0039
0040 void init(const TVector3& pos, const TMatrixDSym& cov);
0041
0042
0043 ~SpacepointMeasurement() override {}
0044
0045 protected:
0046 };
0047 }
0048
0049 #endif