#include <FastPixelCPE.h>
|
void | clearParameters () const |
|
void | enterLocalParameters (unsigned int id, std::pair< int, int > &row_col, std::pair< LocalPoint, LocalError > pos_err_info) const |
|
| FastPixelCPE () |
|
PixelClusterParameterEstimator::LocalValues | localParameters (const SiPixelCluster &cl, const GeomDetUnit &det) const |
| The constructor. More...
|
|
unsigned int | clusterProbComputationFlag () const |
|
| PixelClusterParameterEstimator () |
|
virtual
SiPixelRecHitQuality::QualWordType | rawQualityWord () const |
|
virtual void | enterLocalParameters (unsigned int id, std::pair< int, int > &row_col, LocalValues pos_err_info) const |
|
virtual void | enterLocalParameters (uint32_t id, uint16_t firstStrip, LocalValues pos_err_info) const |
|
virtual LocalValues | localParameters (const SiPixelCluster &cluster, const GeomDetUnit &gd, const LocalTrajectoryParameters &) const |
|
virtual LocalValues | localParameters (const SiPixelCluster &cluster, const GeomDetUnit &gd, const TrajectoryStateOnSurface &tsos) const |
|
virtual VLocalValues | localParametersV (const SiPixelCluster &cluster, const GeomDetUnit &gd) const |
|
virtual VLocalValues | localParametersV (const SiPixelCluster &cluster, const GeomDetUnit &gd, const TrajectoryStateOnSurface &tsos) const |
|
virtual | ~ClusterParameterEstimator () |
|
Definition at line 14 of file FastPixelCPE.h.
FastPixelCPE::FastPixelCPE |
( |
| ) |
|
|
inline |
void FastPixelCPE::clearParameters |
( |
| ) |
const |
|
inlinevirtual |
void FastPixelCPE::enterLocalParameters |
( |
unsigned int |
id, |
|
|
std::pair< int, int > & |
row_col, |
|
|
std::pair< LocalPoint, LocalError > |
pos_err_info |
|
) |
| const |
Definition at line 33 of file FastPixelCPE.cc.
34 pos_err_map.insert(std::make_pair(std::make_pair(
id,row_col), pos_err_info));
std::map< std::pair< unsigned int, std::pair< int, int > >, std::pair< LocalPoint, LocalError > > pos_err_map
The constructor.
Implements ClusterParameterEstimator< SiPixelCluster >.
Definition at line 21 of file FastPixelCPE.cc.
References edm::hlt::Exception, GeomDet::geographicalId(), SiPixelCluster::minPixelCol(), SiPixelCluster::minPixelRow(), and DetId::rawId().
24 std::map<std::pair<unsigned int, std::pair<int,int> >, std::pair<LocalPoint,LocalError> >::const_iterator pixel_link =
27 std::pair<LocalPoint,LocalError> pos_err_info = pixel_link->second;
28 return std::make_pair(pos_err_info.first, pos_err_info.second);
std::map< std::pair< unsigned int, std::pair< int, int > >, std::pair< LocalPoint, LocalError > > pos_err_map
uint32_t rawId() const
get the raw id
DetId geographicalId() const
The label of this GeomDet.
std::map<std::pair<unsigned int, std::pair<int,int> >, std::pair<LocalPoint, LocalError> > FastPixelCPE::pos_err_map |
|
mutableprivate |