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