00001
00002
00004
00005
00007
00008 #ifndef STAR_StExampleFilter
00009 #define STAR_StExampleFilter
00010 #include <string>
00011 #include "StMCFilter.h"
00012 class StHepParticleMaster;
00013 class StG3ParticleMaster;
00014 class StGenParticleMaster;
00017 class StExampleFilter : public StMCFilter {
00018
00019
00020 public:
00021
00022 StExampleFilter():StMCFilter("example"){};
00023 virtual ~StExampleFilter(){;}
00024
00027 int RejectEG(const StGenParticleMaster &ptl) const;
00028
00031
00032 int RejectGT(const StGenParticleMaster &ptl) const;
00033
00036 int RejectGE(const StGenParticleMaster &ptl) const;
00037 public:
00038
00039 protected:
00040 };
00041
00042 #endif
00043