CMS 3D CMS Logo

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

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 112 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

112  {
113  return one.firstStrip() < other.firstStrip();
114 }
uint16_t firstStrip() const
bool operator< ( const SiStripCluster cluster,
const uint16_t &  firstStrip 
)
inline

Definition at line 116 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

116  {
117  return cluster.firstStrip() < firstStrip;
118 }
uint16_t firstStrip() const
bool operator< ( const uint16_t &  firstStrip,
const SiStripCluster cluster 
)
inline

Definition at line 120 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

120  {
121  return firstStrip < cluster.firstStrip();
122 }
uint16_t firstStrip() const