CMS 3D CMS Logo

StripClusterSelectorTopBottom.cc
Go to the documentation of this file.
3 
5 
7  event.getByToken(token_, input);
8 
10  setup.get<TrackerDigiGeometryRecord>().get( geom );
11  const TrackerGeometry& theTracker( *geom );
12 
13  auto output = std::make_unique<edmNew::DetSetVector<SiStripCluster>>();
14 
15  for (edmNew::DetSetVector<SiStripCluster>::const_iterator clustSet = input->begin(); clustSet!=input->end(); ++clustSet) {
16  edmNew::DetSet<SiStripCluster>::const_iterator clustIt = clustSet->begin();
18 
19  DetId detIdObject( clustSet->detId() );
21  const StripGeomDetUnit* theGeomDet = dynamic_cast<const StripGeomDetUnit*> (theTracker.idToDet(detIdObject) );
22  const StripTopology * topol = dynamic_cast<const StripTopology*>(&(theGeomDet->specificTopology()));
23 
24  for(; clustIt!=end;++clustIt) {
25  LocalPoint lpclust = topol->localPosition(clustIt->barycenter());
26  GlobalPoint GPclust = theGeomDet->surface().toGlobal(Local3DPoint(lpclust.x(),lpclust.y(),lpclust.z()));
27  double clustY = GPclust.y();
28  if ((clustY * y_) > 0) {
29  spc.push_back(*clustIt);
30  }
31  }
32  }
33  event.put(std::move(output));
34 }
35 
edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > token_
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
T y() const
Definition: PV3DBase.h:63
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:1
void produce(edm::StreamID, edm::Event &event, const edm::EventSetup &setup) const override
data_type const * const_iterator
Definition: DetSetNew.h:30
static std::string const input
Definition: EdmProvDump.cc:44
virtual LocalPoint localPosition(float strip) const =0
T z() const
Definition: PV3DBase.h:64
#define end
Definition: vmac.h:39
Point3DBase< float, LocalTag > Local3DPoint
Definition: LocalPoint.h:9
Definition: DetId.h:18
T get() const
Definition: EventSetup.h:63
const TrackerGeomDet * idToDet(DetId) const override
T x() const
Definition: PV3DBase.h:62
def move(src, dest)
Definition: eostools.py:510
Definition: event.py:1