StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjJetCutTrgBHT.h
1 // -*- mode: c++;-*-
2 // $Id: StjJetCutTrgBHT.h,v 1.1 2008/09/12 00:32:53 tai Exp $
3 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
4 #ifndef STJJETCUTTRGBHT_H
5 #define STJJETCUTTRGBHT_H
6 
7 #include "StjJetCut.h"
8 
9 #include "StjFourVecListCut.h"
10 
11 class StjTrg;
12 
13 class StjJetCutTrgBHT : public StjJetCut {
14 
15 public:
16  StjJetCutTrgBHT(StjTrg* trg);
17  virtual ~StjJetCutTrgBHT() { }
18 
19  bool operator()(const StjJet& jet);
20 
21 private:
22 
23  StjTrg* _trg;
24  StjFourVecListCut _fourVecListCut;
25 
26  ClassDef(StjJetCutTrgBHT, 1)
27 
28 };
29 
30 #endif // STJJETCUTTRGBHT_H
Definition: StjTrg.h:11