CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
SiStripCluster.h File Reference
#include "DataFormats/SiStripDigi/interface/SiStripDigi.h"
#include <vector>
#include "FWCore/MessageLogger/interface/MessageLogger.h"

Go to the source code of this file.

Classes

class  SiStripCluster
 

Functions

bool operator< (const SiStripCluster &one, const SiStripCluster &other)
 
bool operator< (const SiStripCluster &cluster, const uint16_t &firstStrip)
 
bool operator< (const uint16_t &firstStrip, const SiStripCluster &cluster)
 

Function Documentation

bool operator< ( const SiStripCluster one,
const SiStripCluster other 
)
inline

Definition at line 78 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

78  {
79  return one.firstStrip() < other.firstStrip();
80 }
uint16_t firstStrip() const
bool operator< ( const SiStripCluster cluster,
const uint16_t &  firstStrip 
)
inline

Definition at line 82 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

82  {
83  return cluster.firstStrip() < firstStrip;
84 }
uint16_t firstStrip() const
bool operator< ( const uint16_t &  firstStrip,
const SiStripCluster cluster 
)
inline

Definition at line 86 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

86  {
87  return firstStrip < cluster.firstStrip();
88 }
uint16_t firstStrip() const