StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjDijetPrint.h
1 // -*- mode: c++;-*-
2 // $Id: StjDijetPrint.h,v 1.1 2008/09/11 23:34:56 tai Exp $
3 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
4 #ifndef STJDIJETPRINT_H
5 #define STJDIJETPRINT_H
6 
7 #include <TObject.h>
8 
9 #include "StjDijetList.h"
10 
11 #include <fstream>
12 #include <string>
13 
14 class StjDijetPrint : public TObject {
15 
16 public:
17 
18  StjDijetPrint() { }
19  virtual ~StjDijetPrint() { }
20 
21  void operator()(const StjDijetList& dijetList);
22 
23 private:
24 
25  void print(const StjDijet& dijet);
26 
27  ClassDef(StjDijetPrint, 1)
28 
29 };
30 
31 #endif // STJDIJETPRINT_H