00001
00025 #ifndef STAR_StEventCompendiumMaker
00026 #define STAR_StEventCompendiumMaker
00027
00028 #ifndef StMaker_H
00029 #include "StMaker.h"
00030 #endif
00031 class StEvent;
00032 class StEventCompendiumMaker : public StMaker {
00033 public:
00034 StEventCompendiumMaker(const char *name="StEventCompendiumMaker"): StMaker(name) {}
00035 virtual ~StEventCompendiumMaker() {}
00036 Int_t Make();
00037 virtual const char *GetCVS() const {
00038 static const char cvs[]= "Tag $Name: $ $Id: StEventCompendiumMaker.h,v 1.3 2012/05/07 14:43:47 fisyak Exp $ built __DATE__ __TIME__" ;
00039 return cvs;
00040 }
00041 private:
00042 void fillEventSummary(StEvent* e);
00043 ClassDef(StEventCompendiumMaker,0)
00044 };
00045 #endif