CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ClusterShapeSeedComparitor.cc
Go to the documentation of this file.
20 #include <cstdio>
21 #include <cassert>
22 
23 #include<iostream>
24 
26  public:
29  virtual void init(const edm::Event& ev, const edm::EventSetup& es) override ;
30  virtual bool compatible(const SeedingHitSet &hits, const TrackingRegion & region) const override { return true; }
31  virtual bool compatible(const TrajectorySeed &seed) const override { return true; }
32  virtual bool compatible(const TrajectoryStateOnSurface &,
33  SeedingHitSet::ConstRecHitPointer hit) const override ;
34  virtual bool compatible(const SeedingHitSet &hits,
35  const GlobalTrajectoryParameters &helixStateAtVertex,
36  const FastHelix &helix,
37  const TrackingRegion & region) const override ;
38  virtual bool compatible(const SeedingHitSet &hits,
39  const GlobalTrajectoryParameters &straightLineStateAtVertex,
40  const TrackingRegion & region) const override ;
41 
42  private:
43  bool compatibleHit(const TrackingRecHit &hit, const GlobalVector &direction) const ;
44 
49  const bool filterAtHelixStage_;
51 };
52 
53 
55  filterName_(cfg.getParameter<std::string>("ClusterShapeHitFilterName")),
56  pixelClusterShapeCache_(nullptr),
57  filterAtHelixStage_(cfg.getParameter<bool>("FilterAtHelixStage")),
58  filterPixelHits_(cfg.getParameter<bool>("FilterPixelHits")),
59  filterStripHits_(cfg.getParameter<bool>("FilterStripHits"))
60 {
61  if(filterPixelHits_) {
63  }
64 }
65 
67 {
68 }
69 
70 void
73  if(filterPixelHits_) {
77  }
78 }
79 
80 
81 bool
84 {
85  if (filterAtHelixStage_) return true;
86  assert(hit->isValid() && tsos.isValid());
87  return compatibleHit(*hit, tsos.globalDirection());
88 }
89 
90 bool
92  const GlobalTrajectoryParameters &straightLineStateAtVertex,
93  const TrackingRegion & region) const
94 {
95  return true;
96 }
97 
98 bool
100  const GlobalTrajectoryParameters &helixStateAtVertex,
101  const FastHelix &helix,
102  const TrackingRegion & region) const
103 {
104  if (!filterAtHelixStage_) return true;
105 
106  if(!helix.isValid()) edm::LogWarning("InvalidHelix") << "PixelClusterShapeSeedComparitor helix is not valid, result is bad";
107 
108  float xc = helix.circle().x0(), yc = helix.circle().y0();
109 
110  GlobalPoint vertex = helixStateAtVertex.position();
111  GlobalVector momvtx = helixStateAtVertex.momentum();
112  float x0 = vertex.x(), y0 = vertex.y();
113  for (unsigned int i = 0, n = hits.size(); i < n; ++i) {
114  auto const & hit = *hits[i];
115  GlobalPoint pos = hit.globalPosition();
116  float x1 = pos.x(), y1 = pos.y(), dx1 = x1 - xc, dy1 = y1 - yc;
117 
118  // now figure out the proper tangent vector
119  float perpx = -dy1, perpy = dx1;
120  if (perpx * (x1-x0) + perpy * (y1 - y0) < 0) {
121  perpy = -perpy; perpx = -perpx;
122  }
123 
124  // now normalize (perpx, perpy, 1.0) to momentum (px, py, pz)
125  float perp2 = perpx*perpx + perpy*perpy;
126  float pmom2 = momvtx.x()*momvtx.x() + momvtx.y()*momvtx.y(), momz2 = momvtx.z()*momvtx.z(), mom2 = pmom2 + momz2;
127  float perpscale = sqrt(pmom2/mom2 / perp2), zscale = sqrt((1-pmom2/mom2));
128  GlobalVector gdir(perpx*perpscale, perpy*perpscale, (momvtx.z() > 0 ? zscale : -zscale));
129 
130  if (!compatibleHit(hit, gdir)) {
131  return false; // not yet
132  }
133  }
134  return true;
135 }
136 
137 bool
139 {
140  if (hit.geographicalId().subdetId() <= 2) {
141  if (!filterPixelHits_) return true;
142  const SiPixelRecHit *pixhit = dynamic_cast<const SiPixelRecHit *>(&hit);
143  if (pixhit == 0) throw cms::Exception("LogicError", "Found a valid hit on the pixel detector which is not a SiPixelRecHit\n");
144  //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());
145  return filterHandle_->isCompatible(*pixhit, direction, *pixelClusterShapeCache_);
146  } else {
147  if (!filterStripHits_) return true;
148  const std::type_info &tid = typeid(*&hit);
149  if (tid == typeid(SiStripMatchedRecHit2D)) {
150  const SiStripMatchedRecHit2D* matchedHit = dynamic_cast<const SiStripMatchedRecHit2D *>(&hit);
151  assert(matchedHit != 0);
152  return (filterHandle_->isCompatible(DetId(matchedHit->monoId()), matchedHit->monoCluster(), direction) &&
153  filterHandle_->isCompatible(DetId(matchedHit->stereoId()), matchedHit->stereoCluster(), direction));
154  } else if (tid == typeid(SiStripRecHit2D)) {
155  const SiStripRecHit2D* recHit = dynamic_cast<const SiStripRecHit2D *>(&hit);
156  assert(recHit != 0);
157  return filterHandle_->isCompatible(*recHit, direction);
158  } else if (tid == typeid(ProjectedSiStripRecHit2D)) {
159  const ProjectedSiStripRecHit2D* precHit = dynamic_cast<const ProjectedSiStripRecHit2D *>(&hit);
160  assert(precHit != 0);
161  return filterHandle_->isCompatible(precHit->originalHit(), direction);
162  } else {
163  //printf("Questo e' un %s, che ci fo?\n", tid.name());
164  return true;
165  }
166  }
167 }
168 
169 DEFINE_EDM_PLUGIN(SeedComparitorFactory, PixelClusterShapeSeedComparitor, "PixelClusterShapeSeedComparitor");
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
virtual bool compatible(const TrajectorySeed &seed) const override
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
bool isValid() const
Definition: FastHelix.h:63
unsigned int stereoId() const
virtual bool compatible(const SeedingHitSet &hits, const TrackingRegion &region) const override
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
double x0() const
Definition: FastCircle.h:50
PixelClusterShapeSeedComparitor(const edm::ParameterSet &cfg, edm::ConsumesCollector &iC)
SiStripCluster const & monoCluster() const
T y() const
Definition: PV3DBase.h:63
bool ev
edm::ESHandle< ClusterShapeHitFilter > filterHandle_
const FastCircle & circle() const
Definition: FastHelix.h:67
#define nullptr
BaseTrackerRecHit const * ConstRecHitPointer
Definition: SeedingHitSet.h:11
edm::EDGetTokenT< SiPixelClusterShapeCache > pixelClusterShapeCacheToken_
T sqrt(T t)
Definition: SSEVec.h:48
T z() const
Definition: PV3DBase.h:64
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
SiStripRecHit2D originalHit() const
Definition: DetId.h:18
const T & get() const
Definition: EventSetup.h:55
T perp2() const
Squared magnitude of transverse component.
T const * product() const
Definition: Handle.h:81
double y0() const
Definition: FastCircle.h:52
SiStripCluster const & stereoCluster() const
unsigned int size() const
Definition: SeedingHitSet.h:44
bool compatibleHit(const TrackingRecHit &hit, const GlobalVector &direction) const
#define DEFINE_EDM_PLUGIN(factory, type, name)
unsigned int monoId() const
const SiPixelClusterShapeCache * pixelClusterShapeCache_
DetId geographicalId() const
T x() const
Definition: PV3DBase.h:62
virtual void init(const edm::Event &ev, const edm::EventSetup &es) override
GlobalVector globalDirection() const
Our base class.
Definition: SiPixelRecHit.h:23