StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjDijetCutSameSideRt.h
1 // -*- mode: c++;-*-
2 // $Id: StjDijetCutSameSideRt.h,v 1.2 2008/09/13 00:03:43 tai Exp $
3 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
4 #ifndef STJDIJETCUTSAMESIDERT_H
5 #define STJDIJETCUTSAMESIDERT_H
6 
7 #include "StjDijetCut.h"
8 
9 #include "StjJetCutRt.h"
10 
12 
13 public:
14  StjDijetCutSameSideRt(double min = 0.0, double max = 1.0)
15  : _jetcut(min, max) { }
16  virtual ~StjDijetCutSameSideRt() { }
17 
18  bool operator()(const StjDijet& dijet)
19  {
20  if(_jetcut(dijet.jetSameSide)) return true;
21 
22  return false;
23  }
24 
25 private:
26 
27  StjJetCutRt _jetcut;
28 
29  ClassDef(StjDijetCutSameSideRt, 1)
30 
31 };
32 
33 #endif // STJDIJETCUTSAMESIDERT_H