CMS 3D CMS Logo

Public Member Functions | Public Attributes

SiPixelFedCablingMap::Key Struct Reference

#include <SiPixelFedCablingMap.h>

List of all members.

Public Member Functions

bool operator< (const Key &other) const

Public Attributes

unsigned int fed
unsigned int link
unsigned int roc

Detailed Description

Definition at line 33 of file SiPixelFedCablingMap.h.


Member Function Documentation

bool SiPixelFedCablingMap::Key::operator< ( const Key other) const

Definition at line 10 of file SiPixelFedCablingMap.cc.

References fed, link, link(), and roc.

{
  if (fed < other.fed) return true;
  if (fed > other.fed) return false;

  if (link < other.link) return true;
  if (link > other.link) return false;

  if (roc < other.roc) return true;
  if (roc > other.roc) return false;

  return false;
}

Member Data Documentation

Definition at line 33 of file SiPixelFedCablingMap.h.

Referenced by operator<().

Definition at line 33 of file SiPixelFedCablingMap.h.

Referenced by operator<().

Definition at line 33 of file SiPixelFedCablingMap.h.

Referenced by operator<().