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

◆ SiPixelClusterCollection

Definition at line 223 of file SiPixelCluster.h.

◆ SiPixelClusterCollectionNew

Definition at line 228 of file SiPixelCluster.h.

◆ SiPixelClusterRef

Definition at line 224 of file SiPixelCluster.h.

◆ SiPixelClusterRefNew

Definition at line 229 of file SiPixelCluster.h.

◆ SiPixelClusterRefProd

Definition at line 226 of file SiPixelCluster.h.

◆ SiPixelClusterRefVector

Definition at line 225 of file SiPixelCluster.h.

Function Documentation

◆ operator<()

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

Definition at line 206 of file SiPixelCluster.h.

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 }

References SiPixelPI::one, and trackingPlots::other.

SiPixelPI::one
Definition: SiPixelPayloadInspectorHelper.h:39
trackingPlots.other
other
Definition: trackingPlots.py:1467