CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SortRingsByZR.h
Go to the documentation of this file.
1 #ifndef RECOTRACKER_SORTRINGSBYZR_H
2 #define RECOTRACKER_SORTRINGSBYZR_H
3 
4 //
5 // Package: RecoTracker/RingRecord
6 // Class: SortRingsByZR
7 //
8 // Description: sort rings by ZR
9 //
10 // Original Author: Oliver Gutsche, gutsche@fnal.gov
11 // Created: Wed Dec 20 17:31:01 UTC 2006
12 //
13 // $Author: gutsche $
14 // $Date: 2007/02/05 19:10:03 $
15 // $Revision: 1.1 $
16 //
17 
19 
21 
22  public:
23 
24  SortRingsByZR();
26 
27  bool operator()( const Ring *a, const Ring *b) const {
28  return RingsSortedInZR(a,b);
29  }
30 
31  bool RingsSortedInZR(const Ring *a, const Ring *b) const;
32 
33  private:
34 
35 };
36 
37 #endif
Definition: Ring.h:31
bool RingsSortedInZR(const Ring *a, const Ring *b) const
double b
Definition: hdecay.h:120
double a
Definition: hdecay.h:121
bool operator()(const Ring *a, const Ring *b) const
Definition: SortRingsByZR.h:27