00001
00002
00003
00004
00005 #ifndef MyTrackJetH
00006 #define MyTrackJetH
00007
00008
00009
00010
00011
00019
00020
00021
00022
00023
00024
00025 #include <iostream>
00026
00027
00028 #include "TLorentzVector.h"
00029
00030
00031 #include "MyParticle.h"
00032
00033 class MyTrackJet : public MyParticle {
00034
00035 public:
00036
00037 MyTrackJet(void) {}
00039 MyTrackJet(const TLorentzVector & p, const int & index) :
00040 MyParticle(p, 0, 0, index, "track_jet") {}
00044
00045 };
00046
00047 #endif