00001
00002
00003
00004 #ifndef STJTRACKTOTLORENTZVECTOR_H
00005 #define STJTRACKTOTLORENTZVECTOR_H
00006
00007 #include <TObject.h>
00008
00009 #include <TLorentzVector.h>
00010
00011 class StjTrack;
00012
00013 class StjTrackToTLorentzVector : public TObject {
00014 public:
00015 StjTrackToTLorentzVector(double mass = 0.1395700 )
00016 : _mass(mass) { }
00017 TLorentzVector operator()(const StjTrack& track);
00018
00019 private:
00020 double _mass;
00021
00022 ClassDef(StjTrackToTLorentzVector, 1)
00023
00024 };
00025
00026 #endif // STJTRACKTOTLORENTZVECTOR_H