CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
StripKeys Class Reference

#include <ClusterShapeHitFilter.h>

Public Member Functions

bool operator< (const StripKeys &right) const
 
 StripKeys (int width)
 

Private Attributes

unsigned int key1
 

Detailed Description

Definition at line 39 of file ClusterShapeHitFilter.h.

Constructor & Destructor Documentation

StripKeys::StripKeys ( int  width)
inline

Definition at line 42 of file ClusterShapeHitFilter.h.

42 : key1(width) { }
unsigned int key1

Member Function Documentation

bool StripKeys::operator< ( const StripKeys right) const
inline

Definition at line 44 of file ClusterShapeHitFilter.h.

References key1.

45  {
46  if(key1 < right.key1) return true;
47  else return false;
48  }
unsigned int key1

Member Data Documentation

unsigned int StripKeys::key1
private

Definition at line 51 of file ClusterShapeHitFilter.h.

Referenced by operator<().