00001 // -*- mode: c++;-*- 00002 // $Id: StjMCParticleCut.h,v 1.1 2008/11/27 07:40:01 tai Exp $ 00003 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov> 00004 #ifndef STJMCPARTICLECUT_H 00005 #define STJMCPARTICLECUT_H 00006 00007 #include <TObject.h> 00008 00009 #include "StjMCParticleList.h" 00010 00011 class StjMCParticleCut : public TObject { 00012 00013 public: 00014 StjMCParticleCut() { } 00015 virtual ~StjMCParticleCut() { } 00016 00017 virtual bool operator()(const StjMCParticle& p4) = 0; 00018 00019 private: 00020 00021 ClassDef(StjMCParticleCut, 1) 00022 00023 }; 00024 00025 #endif // STJMCPARTICLECUT_H
1.5.9