StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjFormDijet.h
1 // -*- mode: c++;-*-
2 // $Id: StjFormDijet.h,v 1.1 2008/09/11 23:34:56 tai Exp $
3 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
4 #ifndef STJFORMDIJET_H
5 #define STJFORMDIJET_H
6 
7 #include <StjDijetList.h>
8 #include <StjJetList.h>
9 
10 #include <TObject.h>
11 
12 class StjFormDijet : public TObject {
13 
14 public:
15  StjFormDijet() { }
16  virtual ~StjFormDijet() { }
17 
18  StjDijetList operator()(StjJetList jetList);
19 
20 private:
21 
22  class pt_more {
23  public:
24  bool operator()(const StjJet& jet1, const StjJet& jet2) const
25  {
26  return jet1.pt > jet2.pt;
27  }
28  };
29 
30 
31  ClassDef(StjFormDijet, 1)
32 
33 };
34 
35 #endif // STJFORMDIJET_H