00001
00002
00003
00004 #ifndef STJTRACKPRINT_H
00005 #define STJTRACKPRINT_H
00006
00007 #include <TObject.h>
00008
00009 #include "StjTrackList.h"
00010
00011 #include <fstream>
00012 #include <string>
00013
00014 class StjTrackPrint : public TObject {
00015
00016 public:
00017
00018 StjTrackPrint() { }
00019 virtual ~StjTrackPrint() { }
00020
00021 void operator()(const StjTrackList& trackList);
00022
00023 private:
00024
00025 void print(const StjTrack& track);
00026
00027 ClassDef(StjTrackPrint, 1)
00028
00029 };
00030
00031 #endif // STJTRACKPRINT_H