CMS 3D CMS Logo

Classes | Typedefs | Functions
SiPixelCluster.h File Reference
#include <vector>
#include <cstdint>
#include <cassert>
#include "DataFormats/Common/interface/DetSetVector.h"
#include "DataFormats/Common/interface/DetSetVectorNew.h"
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/DetSetRefVector.h"

Go to the source code of this file.

Classes

class  SiPixelCluster::Pixel
 
class  SiPixelCluster::PixelPos
 
class  SiPixelCluster::Shift
 
class  SiPixelCluster
 Pixel cluster – collection of neighboring pixels above threshold. More...
 

Typedefs

typedef edm::DetSetVector< SiPixelClusterSiPixelClusterCollection
 
typedef edmNew::DetSetVector< SiPixelClusterSiPixelClusterCollectionNew
 
typedef edm::Ref< SiPixelClusterCollection, SiPixelClusterSiPixelClusterRef
 
typedef edm::Ref< SiPixelClusterCollectionNew, SiPixelClusterSiPixelClusterRefNew
 
typedef edm::RefProd< SiPixelClusterCollectionSiPixelClusterRefProd
 
typedef edm::DetSetRefVector< SiPixelClusterSiPixelClusterRefVector
 

Functions

bool operator< (const SiPixelCluster &one, const SiPixelCluster &other)
 

Typedef Documentation

Definition at line 223 of file SiPixelCluster.h.

Definition at line 228 of file SiPixelCluster.h.

Definition at line 224 of file SiPixelCluster.h.

Definition at line 229 of file SiPixelCluster.h.

Definition at line 226 of file SiPixelCluster.h.

Definition at line 225 of file SiPixelCluster.h.

Function Documentation

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

Definition at line 206 of file SiPixelCluster.h.

References SiPixelCluster::minPixelCol(), and SiPixelCluster::minPixelRow().

206  {
207  if (one.minPixelRow() < other.minPixelRow()) {
208  return true;
209  } else if (one.minPixelRow() > other.minPixelRow()) {
210  return false;
211  } else if (one.minPixelCol() < other.minPixelCol()) {
212  return true;
213  } else {
214  return false;
215  }
216 }
int minPixelCol() const
int minPixelRow() const