CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ClusterShapeSeedComparitor.cc
Go to the documentation of this file.
21 #include <cstdio>
22 #include <cassert>
23 
24 #include <iostream>
25 
27 public:
30  void init(const edm::Event &ev, const edm::EventSetup &es) override;
31  bool compatible(const SeedingHitSet &hits) const override { return true; }
33  bool compatible(const SeedingHitSet &hits,
34  const GlobalTrajectoryParameters &helixStateAtVertex,
35  const FastHelix &helix) const override;
36 
37 private:
38  bool compatibleHit(const TrackingRecHit &hit, const GlobalVector &direction) const;
39 
45  const bool filterAtHelixStage_;
47 };
48 
51  : filterName_(cfg.getParameter<std::string>("ClusterShapeHitFilterName")),
52  clusterShapeHitFilterESToken_(iC.esConsumes(edm::ESInputTag("", filterName_))),
53  pixelClusterShapeCache_(nullptr),
54  filterAtHelixStage_(cfg.getParameter<bool>("FilterAtHelixStage")),
55  filterPixelHits_(cfg.getParameter<bool>("FilterPixelHits")),
56  filterStripHits_(cfg.getParameter<bool>("FilterStripHits")) {
57  if (filterPixelHits_) {
59  iC.consumes<SiPixelClusterShapeCache>(cfg.getParameter<edm::InputTag>("ClusterShapeCacheSrc"));
60  }
61 }
62 
64 
67  if (filterPixelHits_) {
71  }
72 }
73 
77  return true;
78  assert(hit->isValid() && tsos.isValid());
79  return compatibleHit(*hit, tsos.globalDirection());
80 }
81 
83  const GlobalTrajectoryParameters &helixStateAtVertex,
84  const FastHelix &helix) const {
86  return true;
87 
88  if (!helix.isValid() //check still if it's a straight line, which are OK
89  && !helix.circle().isLine()) //complain if it's not even a straight line
90  edm::LogWarning("InvalidHelix") << "PixelClusterShapeSeedComparitor helix is not valid, result is bad";
91 
92  float xc = helix.circle().x0(), yc = helix.circle().y0();
93 
94  GlobalPoint vertex = helixStateAtVertex.position();
95  GlobalVector momvtx = helixStateAtVertex.momentum();
96  float x0 = vertex.x(), y0 = vertex.y();
97  for (unsigned int i = 0, n = hits.size(); i < n; ++i) {
98  auto const &hit = *hits[i];
99  GlobalPoint pos = hit.globalPosition();
100  float x1 = pos.x(), y1 = pos.y(), dx1 = x1 - xc, dy1 = y1 - yc;
101 
102  // now figure out the proper tangent vector
103  float perpx = -dy1, perpy = dx1;
104  if (perpx * (x1 - x0) + perpy * (y1 - y0) < 0) {
105  perpy = -perpy;
106  perpx = -perpx;
107  }
108 
109  // now normalize (perpx, perpy, 1.0) to momentum (px, py, pz)
110  float perp2 = perpx * perpx + perpy * perpy;
111  float pmom2 = momvtx.x() * momvtx.x() + momvtx.y() * momvtx.y(), momz2 = momvtx.z() * momvtx.z(),
112  mom2 = pmom2 + momz2;
113  float perpscale = sqrt(pmom2 / mom2 / perp2), zscale = sqrt((1 - pmom2 / mom2));
114  GlobalVector gdir(perpx * perpscale, perpy * perpscale, (momvtx.z() > 0 ? zscale : -zscale));
115 
116  if (!compatibleHit(hit, gdir)) {
117  return false; // not yet
118  }
119  }
120  return true;
121 }
122 
124  if (hit.geographicalId().subdetId() <= 2) {
125  if (!filterPixelHits_)
126  return true;
127  const SiPixelRecHit *pixhit = dynamic_cast<const SiPixelRecHit *>(&hit);
128  if (pixhit == nullptr)
129  throw cms::Exception("LogicError", "Found a valid hit on the pixel detector which is not a SiPixelRecHit\n");
130  //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());
131  return clusterShapeHitFilter_->isCompatible(*pixhit, direction, *pixelClusterShapeCache_);
132  } else {
133  if (!filterStripHits_)
134  return true;
135  const std::type_info &tid = typeid(*&hit);
136  if (tid == typeid(SiStripMatchedRecHit2D)) {
137  const SiStripMatchedRecHit2D *matchedHit = dynamic_cast<const SiStripMatchedRecHit2D *>(&hit);
138  assert(matchedHit != nullptr);
139  return (
140  clusterShapeHitFilter_->isCompatible(DetId(matchedHit->monoId()), matchedHit->monoCluster(), direction) &&
141  clusterShapeHitFilter_->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 clusterShapeHitFilter_->isCompatible(*recHit, direction);
146  } else if (tid == typeid(ProjectedSiStripRecHit2D)) {
147  const ProjectedSiStripRecHit2D *precHit = dynamic_cast<const ProjectedSiStripRecHit2D *>(&hit);
148  assert(precHit != nullptr);
149  return clusterShapeHitFilter_->isCompatible(precHit->originalHit(), direction);
150  } else {
151  //printf("Questo e' un %s, che ci fo?\n", tid.name());
152  return true;
153  }
154  }
155 }
156 
157 DEFINE_EDM_PLUGIN(SeedComparitorFactory, PixelClusterShapeSeedComparitor, "PixelClusterShapeSeedComparitor");
bool compatible(const SeedingHitSet &hits) const override
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
bool isValid() const
Definition: FastHelix.h:57
unsigned int stereoId() const
tuple cfg
Definition: looper.py:296
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
double x0() const
Definition: FastCircle.h:43
bool isLine() const
Definition: FastCircle.h:51
PixelClusterShapeSeedComparitor(const edm::ParameterSet &cfg, edm::ConsumesCollector &iC)
SiStripCluster const & monoCluster() const
T y() const
Definition: PV3DBase.h:60
bool ev
const FastCircle & circle() const
Definition: FastHelix.h:61
assert(be >=bs)
bool getData(T &iHolder) const
Definition: EventSetup.h:128
BaseTrackerRecHit const * ConstRecHitPointer
Definition: SeedingHitSet.h:10
edm::EDGetTokenT< SiPixelClusterShapeCache > pixelClusterShapeCacheToken_
const edm::ESGetToken< ClusterShapeHitFilter, CkfComponentsRecord > clusterShapeHitFilterESToken_
T sqrt(T t)
Definition: SSEVec.h:19
T z() const
Definition: PV3DBase.h:61
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
SiStripRecHit2D originalHit() const
Definition: DetId.h:17
T const * product() const
Definition: Handle.h:70
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
T perp2() const
Squared magnitude of transverse component.
double y0() const
Definition: FastCircle.h:45
SiStripCluster const & stereoCluster() const
bool isCompatible(const SiPixelRecHit &recHit, const LocalVector &ldir, const SiPixelClusterShapeCache &clusterShapeCache, PixelData const *pd=nullptr) const
const ClusterShapeHitFilter * clusterShapeHitFilter_
unsigned int size() const
Definition: SeedingHitSet.h:41
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:59
void init(const edm::Event &ev, const edm::EventSetup &es) override
ESGetTokenH3DDVariant esConsumes(std::string const &Reccord, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
GlobalVector globalDirection() const
Our base class.
Definition: SiPixelRecHit.h:23