Changes in external/TrackCovariance/VertexFit.h [82db145:53f4746] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/TrackCovariance/VertexFit.h
r82db145 r53f4746 23 23 Int_t fNtr; // Number of tracks 24 24 std::vector<TVectorD*> fPar; // Input parameter array 25 std::vector<TMatrixDSym*> fCov;// Input parameter covariances 25 std::vector<TVectorD*> fParNew; // Updated parameter array 26 std::vector<TMatrixDSym*> fCov; // Input parameter covariances 27 std::vector<TMatrixDSym*> fCovNew; // Updated parameter covariances 26 28 // Constraints 27 29 Bool_t fVtxCst; // Vertex constraint flag 28 30 TVectorD fxCst; // Constraint value 29 TMatrixDSym fCovCst; // Constraint covariance 31 TMatrixDSym fCovCst; // Constraint 32 TMatrixDSym fCovCstInv; // Inverse of constraint covariance 30 33 // 31 34 // Results … … 39 42 // Work arrays 40 43 std::vector<Double_t> ffi; // Fit phases 41 std::vector<TVectorD*> fx0i; 44 std::vector<TVectorD*> fx0i; // Track expansion points 42 45 std::vector<TVectorD*> fai; // dx/dphi 46 std::vector<TVectorD*> fdi; // x-shift 43 47 std::vector<Double_t> fa2i; // a'Wa 48 std::vector<TMatrixD*> fAti; // A transposed 44 49 std::vector<TMatrixDSym*> fDi; // W-WBW 45 50 std::vector<TMatrixDSym*> fWi; // (ACA')^-1
Note:
See TracChangeset
for help on using the changeset viewer.