CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HitExtractorPIX.cc
Go to the documentation of this file.
1 #include "HitExtractorPIX.h"
4 
7 
10 
12 
14 
15 using namespace ctfseeding;
16 using namespace std;
17 
19  SeedingLayer::Side & side, int idLayer, const std::string & hitProducer)
20  : theSide(side), theIdLayer(idLayer), theHitProducer(hitProducer)
21 { }
22 
24 {
26  TrackerLayerIdAccessor accessor;
28  ev.getByLabel( theHitProducer, pixelHits);
30  range2SeedingHits( *pixelHits, result, accessor.pixelBarrelLayer(theIdLayer), sl, es );
31  } else {
32  range2SeedingHits( *pixelHits, result, accessor.pixelForwardDisk(theSide,theIdLayer), sl, es );
33  }
34 
35 
36  if (skipClusters){
37  LogDebug("HitExtractorPIX")<<"getting : "<<result.size()<<" pixel hits.";
38  //std::cout<<" skipping"<<std::endl;
40  ev.getByLabel(theSkipClusters,pixelClusterMask);
41  std::vector<bool> keep(result.size(),true);
42  HitExtractor::Hits newHits;
43  unsigned int skipped=0;
44  if (result.empty()) return result;
45  newHits.reserve(result.size());
46  for (unsigned int iH=0;iH!=result.size();++iH){
47  if (result[iH]->hit()->isValid()){
48  SiPixelRecHit * concrete = (SiPixelRecHit *) result[iH]->hit();
49  assert(pixelClusterMask->refProd().id() == concrete->cluster().id());
50  if(pixelClusterMask->mask(concrete->cluster().key())) {
51  //too much debug LogDebug("HitExtractorPIX")<<"skipping a pixel hit on: "<< result[iH]->hit()->geographicalId().rawId()<<" key: "<<find(f->begin(),f->end(),concrete->cluster())->key();
52  skipped++;
53  continue;
54  }
55  }
56  newHits.push_back(result[iH]);
57  }
58  result.swap(newHits);
59  LogDebug("HitExtractorPIX")<<"skipped :"<<skipped<<" pixel clusters";
60  }
61  LogDebug("HitExtractorPIX")<<"giving :"<<result.size()<<" rechits out";
62  return result;
63 }
#define LogDebug(id)
ProductID id() const
Definition: HandleBase.cc:15
std::pair< DetId, DetIdPXFSameDiskComparator > pixelForwardDisk(int side, int disk)
void range2SeedingHits(DSTV const &dstv, HitExtractor::Hits &v, std::pair< A, B > const &sel, const SeedingLayer &sl, const edm::EventSetup &es)
Definition: HitExtractor.h:45
const int keep
SeedingLayer::Side theSide
tuple result
Definition: query.py:137
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
ClusterRef cluster() const
Definition: SiPixelRecHit.h:41
key_type key() const
Accessor for product key.
Definition: Ref.h:266
HitExtractorPIX(SeedingLayer::Side &side, int idLayer, const std::string &hitProducer)
std::pair< DetId, DetIdPXBSameLayerComparator > pixelBarrelLayer(int layer)
virtual HitExtractor::Hits hits(const SeedingLayer &sl, const edm::Event &, const edm::EventSetup &) const
edm::InputTag theSkipClusters
Definition: HitExtractor.h:28
ProductID id() const
Accessor for product ID.
Definition: Ref.h:256
Our base class.
Definition: SiPixelRecHit.h:22
std::vector< TransientTrackingRecHit::ConstRecHitPointer > Hits
Definition: HitExtractor.h:16