StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StProtoJetCut.h
1 // -*- mode:c++ -*-
2 //
3 // Pibero Djawotho <pibero@tamu.edu>
4 // Texas A&M University
5 // 28 May 2010
6 //
7 
8 #ifndef ST_PROTO_JET_CUT_H
9 #define ST_PROTO_JET_CUT_H
10 
11 #include "TObject.h"
12 #include "StProtoJet.h"
13 
14 class StProtoJetCut : public TObject {
15 public:
16  virtual bool operator()(const StProtoJet& protojet) const = 0;
17 
18 private:
19  ClassDef(StProtoJetCut,0);
20 };
21 
22 #endif // ST_PROTO_JET_CUT_H