00001 // -*- mode:c++ -*- 00002 // 00003 // Pibero Djawotho <pibero@tamu.edu> 00004 // Texas A&M University 00005 // 28 May 2010 00006 // 00007 00008 #ifndef ST_PROTO_JET_CUT_H 00009 #define ST_PROTO_JET_CUT_H 00010 00011 #include "TObject.h" 00012 #include "StProtoJet.h" 00013 00014 class StProtoJetCut : public TObject { 00015 public: 00016 virtual bool operator()(const StProtoJet& protojet) const = 0; 00017 00018 private: 00019 ClassDef(StProtoJetCut,0); 00020 }; 00021 00022 #endif // ST_PROTO_JET_CUT_H
1.5.9