Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:22

0001 #include "DataFormats/TrackReco/interface/Track.h"
0002 
0003 using namespace reco;
0004 
0005 Track::Track(double chi2,
0006              double ndof,
0007              const Point &vertex,
0008              const Vector &momentum,
0009              int charge,
0010              const CovarianceMatrix &cov,
0011              TrackAlgorithm algo,
0012              TrackQuality quality,
0013              float t0,
0014              float beta,
0015              float covt0t0,
0016              float covbetabeta)
0017     : TrackBase(chi2,
0018                 ndof,
0019                 vertex,
0020                 momentum,
0021                 charge,
0022                 cov,
0023                 algo,
0024                 quality,
0025                 0,
0026                 0,  // nloops and stop reason
0027                 t0,
0028                 beta,
0029                 covt0t0,
0030                 covbetabeta) {
0031   ;
0032 }
0033 
0034 Track::~Track() {}