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