CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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
< SiPixelCluster
SiPixelClusterCollection
 
typedef edmNew::DetSetVector
< SiPixelCluster
SiPixelClusterCollectionNew
 
typedef edm::Ref
< SiPixelClusterCollection,
SiPixelCluster
SiPixelClusterRef
 
typedef edm::Ref
< SiPixelClusterCollectionNew,
SiPixelCluster
SiPixelClusterRefNew
 
typedef edm::RefProd
< SiPixelClusterCollection
SiPixelClusterRefProd
 
typedef edm::DetSetRefVector
< SiPixelCluster
SiPixelClusterRefVector
 

Functions

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

Typedef Documentation

Definition at line 241 of file SiPixelCluster.h.

Definition at line 246 of file SiPixelCluster.h.

Definition at line 242 of file SiPixelCluster.h.

Definition at line 247 of file SiPixelCluster.h.

Definition at line 244 of file SiPixelCluster.h.

Definition at line 243 of file SiPixelCluster.h.

Function Documentation

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

Definition at line 224 of file SiPixelCluster.h.

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

224  {
225  if (one.minPixelRow() < other.minPixelRow()) {
226  return true;
227  } else if (one.minPixelRow() > other.minPixelRow()) {
228  return false;
229  } else if (one.minPixelCol() < other.minPixelCol()) {
230  return true;
231  } else {
232  return false;
233  }
234 }
int minPixelCol() const
int minPixelRow() const