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