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