CMS 3D CMS Logo

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

#include <ClusterShapeHitFilter.h>

Public Member Functions

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

Static Public Attributes

static const int N = 40
 

Private Attributes

unsigned char key
 

Detailed Description

Definition at line 62 of file ClusterShapeHitFilter.h.

Constructor & Destructor Documentation

StripKeys::StripKeys ( int  width)
inline

Definition at line 66 of file ClusterShapeHitFilter.h.

66 : key(width > 0 ? width - 1 : N) {}
static const int N
unsigned char key

Member Function Documentation

bool StripKeys::isValid ( void  ) const
inline

Definition at line 70 of file ClusterShapeHitFilter.h.

References key, and N.

Referenced by ntupleDataFormat._Object::_checkIsValid(), ClusterShapeHitFilter::isCompatible(), and core.AutoHandle.AutoHandle::ReallyLoad().

70 { return key < N; }
static const int N
unsigned char key
StripKeys::operator unsigned int ( ) const
inline

Definition at line 68 of file ClusterShapeHitFilter.h.

References key.

68 { return key; }
unsigned char key
bool StripKeys::operator< ( const StripKeys right) const
inline

Definition at line 72 of file ClusterShapeHitFilter.h.

References key.

72 { return key < right.key; }
unsigned char key

Member Data Documentation

unsigned char StripKeys::key
private
const int StripKeys::N = 40
static

Definition at line 64 of file ClusterShapeHitFilter.h.

Referenced by isValid().