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