Fork me on GitHub

Ignore:
Timestamp:
Feb 23, 2022, 4:24:07 PM (3 years ago)
Author:
GitHub <noreply@…>
Branches:
master
Children:
3a105e5
Parents:
dd263e4 (diff), 00b14d5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Michele Selvaggi <michele.selvaggi@…> (02/23/22 16:24:07)
git-committer:
GitHub <noreply@…> (02/23/22 16:24:07)
Message:

Merge pull request #105 from fbedesch/master

Add method to get first track hit in ObsTrk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • external/TrackCovariance/ObsTrk.h

    rdd263e4 r56fb0be  
    4646        TMatrixDSym fCovILC;                    // Covariance of track parameters in ILC format
    4747                                                                        // (d0, phi0, w, z0, tan(lambda))
     48        TVector3 fXfirst;                       // x,y,z of first track hit
    4849        //
    4950        // Service routines
     
    8990        TMatrixDSym GetCovMm()  { return fCov; }        // in mm
    9091        TMatrixDSym GetCovACTS(){ return fCovACTS; }
    91         TMatrixDSym GetCovILC(){ return fCovILC; }
    92         //
     92        TMatrixDSym GetCovILC() { return fCovILC; }
     93        // First hit
     94        TVector3 GetFirstHit()  { return fXfirst; }
    9395};
    9496
Note: See TracChangeset for help on using the changeset viewer.