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