ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/Track.cc
(Generate patch)

Comparing UserCode/MitAna/DataTree/src/Track.cc (file contents):
Revision 1.1 by loizides, Wed Jun 4 09:08:36 2008 UTC vs.
Revision 1.2 by bendavid, Mon Jun 9 00:06:36 2008 UTC

# Line 3 | Line 3
3   #include "MitAna/DataTree/interface/Track.h"
4  
5   ClassImp(mithep::Track)
6 +
7 + using namespace mithep;
8 +
9 + void    Track::SetHelix(Double_t phi, Double_t d0, Double_t pt, Double_t dz, Double_t theta) {
10 +        fPhi=phi;
11 +        fD0=d0;
12 +        fPt=pt;
13 +        fDz=dz;
14 +        fTheta=theta;
15 +      }
16 +      
17 + void    Track::SetErrors(Double_t phiErr, Double_t d0Err, Double_t ptErr, Double_t dzErr, Double_t thetaErr) {
18 +        fPhiErr=phiErr;
19 +        fD0Err=d0Err;
20 +        fPtErr=ptErr;
21 +        fDzErr=dzErr;
22 +        fThetaErr=thetaErr;
23 +      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines