CMS 3D CMS Logo

Classes | Typedefs | Functions
SiPixelCluster.h File Reference
#include <vector>
#include <cstdint>
#include <cassert>
#include <limits>
#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 233 of file SiPixelCluster.h.

◆ SiPixelClusterCollectionNew

Definition at line 238 of file SiPixelCluster.h.

◆ SiPixelClusterRef

Definition at line 234 of file SiPixelCluster.h.

◆ SiPixelClusterRefNew

Definition at line 239 of file SiPixelCluster.h.

◆ SiPixelClusterRefProd

Definition at line 236 of file SiPixelCluster.h.

◆ SiPixelClusterRefVector

Definition at line 235 of file SiPixelCluster.h.

Function Documentation

◆ operator<()

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

Definition at line 216 of file SiPixelCluster.h.

216  {
217  if (one.minPixelRow() < other.minPixelRow()) {
218  return true;
219  } else if (one.minPixelRow() > other.minPixelRow()) {
220  return false;
221  } else if (one.minPixelCol() < other.minPixelCol()) {
222  return true;
223  } else {
224  return false;
225  }
226 }

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

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