CMS 3D CMS Logo

Classes | Functions
SiStripCluster.h File Reference
#include "DataFormats/SiStripDigi/interface/SiStripDigi.h"
#include "DataFormats/SiStripCluster/interface/SiStripApproximateCluster.h"
#include <vector>
#include <numeric>
#include <iostream>

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

◆ operator<() [1/3]

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

Definition at line 126 of file SiStripCluster.h.

References trackingPlots::other.

126  {
127  return one.firstStrip() < other.firstStrip();
128 }

◆ operator<() [2/3]

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

Definition at line 130 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

130  {
131  return cluster.firstStrip() < firstStrip;
132 }
uint16_t firstStrip() const

◆ operator<() [3/3]

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

Definition at line 134 of file SiStripCluster.h.

References SiStripCluster::firstStrip().

134  {
135  return firstStrip < cluster.firstStrip();
136 }
uint16_t firstStrip() const