CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
PixelClusterShapeSeedComparitor Class Reference
Inheritance diagram for PixelClusterShapeSeedComparitor:
SeedComparitor

Public Member Functions

bool compatible (const SeedingHitSet &hits) const override
 
bool compatible (const TrajectoryStateOnSurface &, SeedingHitSet::ConstRecHitPointer hit) const override
 
bool compatible (const SeedingHitSet &hits, const GlobalTrajectoryParameters &helixStateAtVertex, const FastHelix &helix) const override
 
void init (const edm::Event &ev, const edm::EventSetup &es) override
 
 PixelClusterShapeSeedComparitor (const edm::ParameterSet &cfg, edm::ConsumesCollector &iC)
 
 ~PixelClusterShapeSeedComparitor () override
 
- Public Member Functions inherited from SeedComparitor
virtual ~SeedComparitor ()
 

Private Member Functions

bool compatibleHit (const TrackingRecHit &hit, const GlobalVector &direction) const
 

Private Attributes

const bool filterAtHelixStage_
 
edm::ESHandle< ClusterShapeHitFilterfilterHandle_
 
std::string filterName_
 
const bool filterPixelHits_
 
const bool filterStripHits_
 
const SiPixelClusterShapeCachepixelClusterShapeCache_
 
edm::EDGetTokenT< SiPixelClusterShapeCachepixelClusterShapeCacheToken_
 

Detailed Description

Definition at line 25 of file ClusterShapeSeedComparitor.cc.

Constructor & Destructor Documentation

PixelClusterShapeSeedComparitor::PixelClusterShapeSeedComparitor ( const edm::ParameterSet cfg,
edm::ConsumesCollector iC 
)

Definition at line 49 of file ClusterShapeSeedComparitor.cc.

References edm::ConsumesCollector::consumes(), filterPixelHits_, edm::ParameterSet::getParameter(), and pixelClusterShapeCacheToken_.

49  :
50  filterName_(cfg.getParameter<std::string>("ClusterShapeHitFilterName")),
51  pixelClusterShapeCache_(nullptr),
52  filterAtHelixStage_(cfg.getParameter<bool>("FilterAtHelixStage")),
53  filterPixelHits_(cfg.getParameter<bool>("FilterPixelHits")),
54  filterStripHits_(cfg.getParameter<bool>("FilterStripHits"))
55 {
56  if(filterPixelHits_) {
58  }
59 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
edm::EDGetTokenT< SiPixelClusterShapeCache > pixelClusterShapeCacheToken_
const SiPixelClusterShapeCache * pixelClusterShapeCache_
PixelClusterShapeSeedComparitor::~PixelClusterShapeSeedComparitor ( )
override

Definition at line 61 of file ClusterShapeSeedComparitor.cc.

62 {
63 }

Member Function Documentation

bool PixelClusterShapeSeedComparitor::compatible ( const SeedingHitSet hits) const
inlineoverridevirtual

Implements SeedComparitor.

Definition at line 30 of file ClusterShapeSeedComparitor.cc.

References compatibleHit(), and hfClusterShapes_cfi::hits.

30 { return true; }
bool PixelClusterShapeSeedComparitor::compatible ( const TrajectoryStateOnSurface tsos,
SeedingHitSet::ConstRecHitPointer  hit 
) const
overridevirtual

Implements SeedComparitor.

Definition at line 77 of file ClusterShapeSeedComparitor.cc.

References compatibleHit(), filterAtHelixStage_, TrajectoryStateOnSurface::globalDirection(), and TrajectoryStateOnSurface::isValid().

79 {
80  if (filterAtHelixStage_) return true;
81  assert(hit->isValid() && tsos.isValid());
82  return compatibleHit(*hit, tsos.globalDirection());
83 }
bool compatibleHit(const TrackingRecHit &hit, const GlobalVector &direction) const
GlobalVector globalDirection() const
bool PixelClusterShapeSeedComparitor::compatible ( const SeedingHitSet hits,
const GlobalTrajectoryParameters helixStateAtVertex,
const FastHelix helix 
) const
overridevirtual

Implements SeedComparitor.

Definition at line 86 of file ClusterShapeSeedComparitor.cc.

References FastHelix::circle(), compatibleHit(), filterAtHelixStage_, mps_fire::i, FastCircle::isLine(), FastHelix::isValid(), GlobalTrajectoryParameters::momentum(), gen::n, perp2(), GlobalTrajectoryParameters::position(), SeedingHitSet::size(), mathSSE::sqrt(), PV3DBase< T, PVType, FrameType >::x(), FastCircle::x0(), globals_cff::x1, PV3DBase< T, PVType, FrameType >::y(), FastCircle::y0(), and PV3DBase< T, PVType, FrameType >::z().

89 {
90  if (!filterAtHelixStage_) return true;
91 
92  if(!helix.isValid() //check still if it's a straight line, which are OK
93  && !helix.circle().isLine())//complain if it's not even a straight line
94  edm::LogWarning("InvalidHelix") << "PixelClusterShapeSeedComparitor helix is not valid, result is bad";
95 
96  float xc = helix.circle().x0(), yc = helix.circle().y0();
97 
98  GlobalPoint vertex = helixStateAtVertex.position();
99  GlobalVector momvtx = helixStateAtVertex.momentum();
100  float x0 = vertex.x(), y0 = vertex.y();
101  for (unsigned int i = 0, n = hits.size(); i < n; ++i) {
102  auto const & hit = *hits[i];
103  GlobalPoint pos = hit.globalPosition();
104  float x1 = pos.x(), y1 = pos.y(), dx1 = x1 - xc, dy1 = y1 - yc;
105 
106  // now figure out the proper tangent vector
107  float perpx = -dy1, perpy = dx1;
108  if (perpx * (x1-x0) + perpy * (y1 - y0) < 0) {
109  perpy = -perpy; perpx = -perpx;
110  }
111 
112  // now normalize (perpx, perpy, 1.0) to momentum (px, py, pz)
113  float perp2 = perpx*perpx + perpy*perpy;
114  float pmom2 = momvtx.x()*momvtx.x() + momvtx.y()*momvtx.y(), momz2 = momvtx.z()*momvtx.z(), mom2 = pmom2 + momz2;
115  float perpscale = sqrt(pmom2/mom2 / perp2), zscale = sqrt((1-pmom2/mom2));
116  GlobalVector gdir(perpx*perpscale, perpy*perpscale, (momvtx.z() > 0 ? zscale : -zscale));
117 
118  if (!compatibleHit(hit, gdir)) {
119  return false; // not yet
120  }
121  }
122  return true;
123 }
bool isValid() const
Definition: FastHelix.h:63
double x0() const
Definition: FastCircle.h:50
bool isLine() const
Definition: FastCircle.h:58
T y() const
Definition: PV3DBase.h:63
const FastCircle & circle() const
Definition: FastHelix.h:67
T sqrt(T t)
Definition: SSEVec.h:18
T z() const
Definition: PV3DBase.h:64
T perp2() const
Squared magnitude of transverse component.
double y0() const
Definition: FastCircle.h:52
unsigned int size() const
Definition: SeedingHitSet.h:46
bool compatibleHit(const TrackingRecHit &hit, const GlobalVector &direction) const
T x() const
Definition: PV3DBase.h:62
bool PixelClusterShapeSeedComparitor::compatibleHit ( const TrackingRecHit hit,
const GlobalVector direction 
) const
private

Definition at line 126 of file ClusterShapeSeedComparitor.cc.

References DEFINE_EDM_PLUGIN, Exception, filterHandle_, filterPixelHits_, filterStripHits_, TrackingRecHit::geographicalId(), ClusterShapeHitFilter::isCompatible(), SiStripMatchedRecHit2D::monoCluster(), SiStripMatchedRecHit2D::monoId(), ProjectedSiStripRecHit2D::originalHit(), pixelClusterShapeCache_, rpcPointValidation_cfi::recHit, SiStripMatchedRecHit2D::stereoCluster(), SiStripMatchedRecHit2D::stereoId(), and DetId::subdetId().

Referenced by compatible().

127 {
128  if (hit.geographicalId().subdetId() <= 2) {
129  if (!filterPixelHits_) return true;
130  const SiPixelRecHit *pixhit = dynamic_cast<const SiPixelRecHit *>(&hit);
131  if (pixhit == nullptr) throw cms::Exception("LogicError", "Found a valid hit on the pixel detector which is not a SiPixelRecHit\n");
132  //printf("Cheching hi hit on detid %10d, local direction is x = %9.6f, y = %9.6f, z = %9.6f\n", hit.geographicalId().rawId(), direction.x(), direction.y(), direction.z());
133  return filterHandle_->isCompatible(*pixhit, direction, *pixelClusterShapeCache_);
134  } else {
135  if (!filterStripHits_) return true;
136  const std::type_info &tid = typeid(*&hit);
137  if (tid == typeid(SiStripMatchedRecHit2D)) {
138  const SiStripMatchedRecHit2D* matchedHit = dynamic_cast<const SiStripMatchedRecHit2D *>(&hit);
139  assert(matchedHit != nullptr);
140  return (filterHandle_->isCompatible(DetId(matchedHit->monoId()), matchedHit->monoCluster(), direction) &&
141  filterHandle_->isCompatible(DetId(matchedHit->stereoId()), matchedHit->stereoCluster(), direction));
142  } else if (tid == typeid(SiStripRecHit2D)) {
143  const SiStripRecHit2D* recHit = dynamic_cast<const SiStripRecHit2D *>(&hit);
144  assert(recHit != nullptr);
145  return filterHandle_->isCompatible(*recHit, direction);
146  } else if (tid == typeid(ProjectedSiStripRecHit2D)) {
147  const ProjectedSiStripRecHit2D* precHit = dynamic_cast<const ProjectedSiStripRecHit2D *>(&hit);
148  assert(precHit != nullptr);
149  return filterHandle_->isCompatible(precHit->originalHit(), direction);
150  } else {
151  //printf("Questo e' un %s, che ci fo?\n", tid.name());
152  return true;
153  }
154  }
155 }
unsigned int stereoId() const
SiStripCluster const & monoCluster() const
edm::ESHandle< ClusterShapeHitFilter > filterHandle_
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:41
bool isCompatible(const SiPixelRecHit &recHit, const LocalVector &ldir, const SiPixelClusterShapeCache &clusterShapeCache, PixelData const *pd=0) const
SiStripRecHit2D originalHit() const
Definition: DetId.h:18
SiStripCluster const & stereoCluster() const
unsigned int monoId() const
const SiPixelClusterShapeCache * pixelClusterShapeCache_
DetId geographicalId() const
Our base class.
Definition: SiPixelRecHit.h:23
void PixelClusterShapeSeedComparitor::init ( const edm::Event ev,
const edm::EventSetup es 
)
overridevirtual

Implements SeedComparitor.

Definition at line 66 of file ClusterShapeSeedComparitor.cc.

References filterHandle_, filterName_, filterPixelHits_, edm::EventSetup::get(), edm::Event::getByToken(), pixelClusterShapeCache_, pixelClusterShapeCacheToken_, and edm::Handle< T >::product().

66  {
68  if(filterPixelHits_) {
72  }
73 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
edm::ESHandle< ClusterShapeHitFilter > filterHandle_
edm::EDGetTokenT< SiPixelClusterShapeCache > pixelClusterShapeCacheToken_
T const * product() const
Definition: Handle.h:74
T get() const
Definition: EventSetup.h:71
const SiPixelClusterShapeCache * pixelClusterShapeCache_

Member Data Documentation

const bool PixelClusterShapeSeedComparitor::filterAtHelixStage_
private

Definition at line 44 of file ClusterShapeSeedComparitor.cc.

Referenced by compatible().

edm::ESHandle<ClusterShapeHitFilter> PixelClusterShapeSeedComparitor::filterHandle_
private

Definition at line 41 of file ClusterShapeSeedComparitor.cc.

Referenced by compatibleHit(), and init().

std::string PixelClusterShapeSeedComparitor::filterName_
private

Definition at line 40 of file ClusterShapeSeedComparitor.cc.

Referenced by init().

const bool PixelClusterShapeSeedComparitor::filterPixelHits_
private
const bool PixelClusterShapeSeedComparitor::filterStripHits_
private

Definition at line 45 of file ClusterShapeSeedComparitor.cc.

Referenced by compatibleHit().

const SiPixelClusterShapeCache* PixelClusterShapeSeedComparitor::pixelClusterShapeCache_
private

Definition at line 43 of file ClusterShapeSeedComparitor.cc.

Referenced by compatibleHit(), and init().

edm::EDGetTokenT<SiPixelClusterShapeCache> PixelClusterShapeSeedComparitor::pixelClusterShapeCacheToken_
private

Definition at line 42 of file ClusterShapeSeedComparitor.cc.

Referenced by init(), and PixelClusterShapeSeedComparitor().