StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
Functors.h
1 //Functors.h
2 //M.L. Miller (Yale Software)
3 //07/02
4 
5 #ifndef Functors_HH
6 #define Functors_HH
7 
8 using namespace std;
9 #include <iostream>
10 
11 #include "StJetEtCell.h"
12 
13 #include "StEtGridKey.h"
14 
16 {
17  bool operator()(StJetEtCell* lhs, StJetEtCell* rhs)
18  { return lhs->eT()<rhs->eT(); }
19 };
20 
21 class StProtoJet;
22 
24 {
25  void operator()(StJetEtCell *cell)
26  { cell->protoJet().update(); }
27 };
28 
29 #endif