CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Typedefs | Functions
SiPixelCluster.h File Reference
#include <vector>
#include "boost/cstdint.hpp"
#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 224 of file SiPixelCluster.h.

Definition at line 229 of file SiPixelCluster.h.

Definition at line 225 of file SiPixelCluster.h.

Definition at line 230 of file SiPixelCluster.h.

Definition at line 227 of file SiPixelCluster.h.

Definition at line 226 of file SiPixelCluster.h.

Function Documentation

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

Definition at line 203 of file SiPixelCluster.h.

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

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