00001 // $Id: StjTrackToTLorentzVector.cxx,v 1.1 2008/11/27 07:09:38 tai Exp $ 00002 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov> 00003 #include "StjTrackToTLorentzVector.h" 00004 00005 #include <StjTrackList.h> 00006 00007 ClassImp(StjTrackToTLorentzVector) 00008 00009 TLorentzVector StjTrackToTLorentzVector::operator()(const StjTrack& track) 00010 { 00011 TLorentzVector p4; 00012 p4.SetPtEtaPhiM(track.pt, track.eta, track.phi, _mass); 00013 return p4; 00014 }
1.5.9