CMS 3D CMS Logo

PixelClusterSelectorTopBottom.cc
Go to the documentation of this file.
3 
6  event.getByToken(token_, input);
7 
9  setup.get<TrackerDigiGeometryRecord>().get(geom);
10  const TrackerGeometry& theTracker(*geom);
11 
12  auto output = std::make_unique<SiPixelClusterCollectionNew>();
13 
14  for (SiPixelClusterCollectionNew::const_iterator clustSet = input->begin(); clustSet != input->end(); ++clustSet) {
15  edmNew::DetSet<SiPixelCluster>::const_iterator clustIt = clustSet->begin();
17 
18  DetId detIdObject(clustSet->detId());
20  const PixelGeomDetUnit* theGeomDet = dynamic_cast<const PixelGeomDetUnit*>(theTracker.idToDet(detIdObject));
21  const PixelTopology* topol = (&(theGeomDet->specificTopology()));
22 
23  for (; clustIt != end; ++clustIt) {
24  LocalPoint lpclust = topol->localPosition(MeasurementPoint((*clustIt).x(), (*clustIt).y()));
25  GlobalPoint GPclust = theGeomDet->surface().toGlobal(Local3DPoint(lpclust.x(), lpclust.y(), lpclust.z()));
26  double clustY = GPclust.y();
27  if ((clustY * y_) > 0) {
28  spc.push_back(*clustIt);
29  }
30  }
31  }
32  event.put(std::move(output));
33 }
34 
GlobalPoint toGlobal(const Point2DBase< Scalar, LocalTag > lp) const
Definition: Surface.h:81
const_iterator end(bool update=false) const
T y() const
Definition: PV3DBase.h:60
data_type const * const_iterator
Definition: DetSetNew.h:31
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:37
static std::string const input
Definition: EdmProvDump.cc:48
edm::EDGetTokenT< SiPixelClusterCollectionNew > token_
Measurement2DPoint MeasurementPoint
Measurement points are two-dimensional by default.
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void produce(edm::StreamID, edm::Event &event, const edm::EventSetup &setup) const override
T z() const
Definition: PV3DBase.h:61
#define end
Definition: vmac.h:39
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
Definition: DetId.h:17
virtual const PixelTopology & specificTopology() const
Returns a reference to the pixel proxy topology.
virtual LocalPoint localPosition(const MeasurementPoint &) const =0
T get() const
Definition: EventSetup.h:73
const TrackerGeomDet * idToDet(DetId) const override
T x() const
Definition: PV3DBase.h:59
def move(src, dest)
Definition: eostools.py:511
const_iterator begin(bool update=false) const
Definition: event.py:1
Point3DBase< float, LocalTag > Local3DPoint
Definition: LocalPoint.h:9