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