CMS 3D CMS Logo

Classes | Functions
SiStripCluster.h File Reference
#include "DataFormats/SiStripDigi/interface/SiStripDigi.h"
#include <vector>
#include <numeric>
#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 101 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

101  {
102  return one.firstStrip() < other.firstStrip();
103 }
uint16_t firstStrip() const
bool operator< ( const SiStripCluster cluster,
const uint16_t &  firstStrip 
)
inline

Definition at line 105 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

105  {
106  return cluster.firstStrip() < firstStrip;
107 }
uint16_t firstStrip() const
bool operator< ( const uint16_t &  firstStrip,
const SiStripCluster cluster 
)
inline

Definition at line 109 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

109  {
110  return firstStrip < cluster.firstStrip();
111 }
uint16_t firstStrip() const