CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Public Attributes
GEMROMapping::vfatDC Struct Reference

#include <GEMROMapping.h>

Public Member Functions

bool operator< (const vfatDC &r) const
 

Public Attributes

GEMDetId detId
 
int localPhi
 
int vfatType
 

Detailed Description

Definition at line 44 of file GEMROMapping.h.

Member Function Documentation

bool GEMROMapping::vfatDC::operator< ( const vfatDC r) const
inline

Definition at line 48 of file GEMROMapping.h.

References detId, localPhi, and vfatType.

48  {
49  if (vfatType == r.vfatType) {
50  if (detId == r.detId) {
51  return localPhi < r.localPhi;
52  } else {
53  return detId < r.detId;
54  }
55  } else {
56  return vfatType < r.vfatType;
57  }
58  }

Member Data Documentation

GEMDetId GEMROMapping::vfatDC::detId
int GEMROMapping::vfatDC::localPhi
int GEMROMapping::vfatDC::vfatType