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 | 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 60 of file GEMROMapping.h.

Member Function Documentation

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

Definition at line 64 of file GEMROMapping.h.

References detId, localPhi, and vfatType.

64  {
65  if (vfatType == r.vfatType) {
66  if (detId == r.detId) {
67  return localPhi < r.localPhi;
68  } else {
69  return detId < r.detId;
70  }
71  } else {
72  return vfatType < r.vfatType;
73  }
74  }

Member Data Documentation

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