CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
ctfseeding::HitExtractorSTRP Class Reference

#include <HitExtractorSTRP.h>

Inheritance diagram for ctfseeding::HitExtractorSTRP:
ctfseeding::HitExtractor

Public Types

typedef SiStripRecHit2D::ClusterRef SiStripClusterRef
 
- Public Types inherited from ctfseeding::HitExtractor
typedef std::vector
< TransientTrackingRecHit::ConstRecHitPointer
Hits
 

Public Member Functions

void cleanedOfClusters (const edm::Event &ev, HitExtractor::Hits &hits, bool matched) const
 
virtual HitExtractorSTRPclone () const
 
 HitExtractorSTRP (const DetLayer *detLayer, SeedingLayer::Side &side, int idLayer)
 
virtual HitExtractor::Hits hits (const SeedingLayer &sl, const edm::Event &, const edm::EventSetup &) const
 
void project (TransientTrackingRecHit::ConstRecHitPointer &ptr, const SiStripRecHit2D *hit, TransientTrackingRecHit::ConstRecHitPointer &replaceMe) const
 
void setNoProjection () const
 
bool skipThis (TransientTrackingRecHit::ConstRecHitPointer &ptr, edm::Handle< edmNew::DetSetVector< SiStripClusterRef > > &stripClusterRefs, TransientTrackingRecHit::ConstRecHitPointer &replaceMe) const
 
bool skipThis (const SiStripRecHit2D *hit, edm::Handle< edmNew::DetSetVector< SiStripClusterRef > > &stripClusterRefs) const
 
void useMatchedHits (const edm::InputTag &m)
 
void useRingSelector (int minRing, int maxRing)
 
void useRPhiHits (const edm::InputTag &m)
 
void useSimpleRphiHitsCleaner (bool use)
 
void useStereoHits (const edm::InputTag &m)
 
virtual ~HitExtractorSTRP ()
 
- Public Member Functions inherited from ctfseeding::HitExtractor
 HitExtractor ()
 
void useSkipClusters (const edm::InputTag &m)
 
virtual ~HitExtractor ()
 

Private Member Functions

bool ringRange (int ring) const
 

Private Attributes

bool failProjection
 
bool hasMatchedHits
 
bool hasRingSelector
 
bool hasRPhiHits
 
bool hasSimpleRphiHitsCleaner
 
bool hasStereoHits
 
int theIdLayer
 
const DetLayertheLayer
 
edm::InputTag theMatchedHits
 
int theMaxRing
 
int theMinRing
 
edm::InputTag theRPhiHits
 
SeedingLayer::Side theSide
 
const SeedingLayertheSLayer
 
edm::InputTag theStereoHits
 

Additional Inherited Members

- Public Attributes inherited from ctfseeding::HitExtractor
bool skipClusters
 
edm::InputTag theSkipClusters
 

Detailed Description

Definition at line 16 of file HitExtractorSTRP.h.

Member Typedef Documentation

Definition at line 19 of file HitExtractorSTRP.h.

Constructor & Destructor Documentation

HitExtractorSTRP::HitExtractorSTRP ( const DetLayer detLayer,
SeedingLayer::Side side,
int  idLayer 
)
virtual ctfseeding::HitExtractorSTRP::~HitExtractorSTRP ( )
inlinevirtual

Definition at line 22 of file HitExtractorSTRP.h.

22 {}

Member Function Documentation

void HitExtractorSTRP::cleanedOfClusters ( const edm::Event ev,
HitExtractor::Hits hits,
bool  matched 
) const

Definition at line 101 of file HitExtractorSTRP.cc.

References edm::Event::getByLabel(), LogDebug, skipThis(), and ctfseeding::HitExtractor::theSkipClusters.

Referenced by hits().

102  {
103  LogDebug("HitExtractorPIX")<<"getting: "<<hits.size()<<" in input.";
105  ev.getByLabel(theSkipClusters,stripClusterRefs);
106  HitExtractor::Hits newHits;
107  uint skipped=0;
108  uint projected=0;
109  newHits.reserve(hits.size());
111  for (unsigned int iH=0;iH!=hits.size();++iH){
112  replaceMe=hits[iH];
113  if (matched && skipThis(hits[iH],stripClusterRefs,replaceMe)){
114  LogDebug("HitExtractorSTRP")<<"skipping a matched hit on :"<<hits[iH]->hit()->geographicalId().rawId();
115  skipped++;
116  continue;
117  }
118  if (!matched && skipThis((SiStripRecHit2D*) hits[iH]->hit(),stripClusterRefs)){
119  LogDebug("HitExtractorSTRP")<<"skipping a hit on :"<<hits[iH]->hit()->geographicalId().rawId()<<" key: ";
120  skipped++;
121  continue;
122  }
123  if (replaceMe!=hits[iH]) projected++;
124  newHits.push_back(replaceMe);
125  }
126  LogDebug("HitExtractorPIX")<<"skipped :"<<skipped<<" strip rechits because of clusters and projected: "<<projected;
127  hits.swap(newHits);
128 }
#define LogDebug(id)
virtual HitExtractor::Hits hits(const SeedingLayer &sl, const edm::Event &, const edm::EventSetup &) const
bool skipThis(TransientTrackingRecHit::ConstRecHitPointer &ptr, edm::Handle< edmNew::DetSetVector< SiStripClusterRef > > &stripClusterRefs, TransientTrackingRecHit::ConstRecHitPointer &replaceMe) const
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:355
edm::InputTag theSkipClusters
Definition: HitExtractor.h:28
std::vector< TransientTrackingRecHit::ConstRecHitPointer > Hits
Definition: HitExtractor.h:16
virtual HitExtractorSTRP* ctfseeding::HitExtractorSTRP::clone ( void  ) const
inlinevirtual

Definition at line 25 of file HitExtractorSTRP.h.

References HitExtractorSTRP().

Referenced by SeedingLayerSetsBuilder::layers().

25 { return new HitExtractorSTRP(*this); }
HitExtractorSTRP(const DetLayer *detLayer, SeedingLayer::Side &side, int idLayer)
HitExtractor::Hits HitExtractorSTRP::hits ( const SeedingLayer sl,
const edm::Event ev,
const edm::EventSetup es 
) const
virtual

Implements ctfseeding::HitExtractor.

Definition at line 130 of file HitExtractorSTRP.cc.

References TransientTrackingRecHitBuilder::build(), cleanedOfClusters(), end, edm::Event::getByLabel(), hasMatchedHits, hasRPhiHits, hasSimpleRphiHitsCleaner, hasStereoHits, ctfseeding::SeedingLayer::hitBuilder(), LogDebug, ctfseeding::range2SeedingHits(), query::result, relativeConstraints::ring, ringRange(), ctfseeding::HitExtractor::skipClusters, TrackerLayerIdAccessor::stripTECDisk(), TrackerLayerIdAccessor::stripTIBLayer(), TrackerLayerIdAccessor::stripTIDDisk(), TrackerLayerIdAccessor::stripTOBLayer(), DetLayer::subDetector(), GeomDetEnumerators::TEC, theIdLayer, theLayer, theMatchedHits, theRPhiHits, theSide, theSLayer, theStereoHits, GeomDetEnumerators::TIB, GeomDetEnumerators::TID, and GeomDetEnumerators::TOB.

131 {
133  TrackerLayerIdAccessor accessor;
134  theSLayer=&sl;
135  //
136  // TIB
137  //
139  if (hasMatchedHits) {
141  ev.getByLabel( theMatchedHits, matchedHits);
142  range2SeedingHits( *matchedHits, result, accessor.stripTIBLayer(theIdLayer), sl, es);
143  if (skipClusters) cleanedOfClusters(ev,result,true);
144  }
145  if (hasRPhiHits) {
147  ev.getByLabel( theRPhiHits, rphiHits);
148  if (hasMatchedHits){
149  if (!hasSimpleRphiHitsCleaner){ // this is a brutal "cleaning". Add something smarter in the future
150  range2SeedingHits( *rphiHits, result, accessor.stripTIBLayer(theIdLayer), sl, es);
151  if (skipClusters) cleanedOfClusters(ev,result,false);
152  }
153  } else {
154  range2SeedingHits( *rphiHits, result, accessor.stripTIBLayer(theIdLayer), sl, es);
155  if (skipClusters) cleanedOfClusters(ev,result,false);
156  }
157  }
158  if (hasStereoHits) {
160  ev.getByLabel( theStereoHits, stereoHits);
161  range2SeedingHits( *stereoHits, result, accessor.stripTIBLayer(theIdLayer), sl, es);
162  if (skipClusters) cleanedOfClusters(ev,result,false);
163  }
164  }
165 
166  //
167  // TID
168  //
170  if (hasMatchedHits) {
172  ev.getByLabel( theMatchedHits, matchedHits);
173  std::pair<DetId,DetIdTIDSameDiskComparator> getter = accessor.stripTIDDisk(theSide,theIdLayer);
174  SiStripMatchedRecHit2DCollection::Range range = matchedHits->equal_range(getter.first, getter.second);
175  for (SiStripMatchedRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
176  int ring = TIDDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
177  for (SiStripMatchedRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
178  result.push_back( sl.hitBuilder()->build(hit) );
179  }
180  }
181  if (skipClusters) cleanedOfClusters(ev,result,true);
182  }
183  if (hasRPhiHits) {
185  ev.getByLabel( theRPhiHits, rphiHits);
186  std::pair<DetId,DetIdTIDSameDiskComparator> getter = accessor.stripTIDDisk(theSide,theIdLayer);
187  SiStripRecHit2DCollection::Range range = rphiHits->equal_range(getter.first, getter.second);
188  for (SiStripRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
189  int ring = TIDDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
190  if ((SiStripDetId(it->detId()).partnerDetId() != 0) && hasSimpleRphiHitsCleaner) continue; // this is a brutal "cleaning". Add something smarter in the future
191  for (SiStripRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
192  result.push_back( sl.hitBuilder()->build(hit) );
193  }
194  }
195  if (skipClusters) cleanedOfClusters(ev,result,false);
196  }
197  if (hasStereoHits) {
199  ev.getByLabel( theStereoHits, stereoHits);
200  std::pair<DetId,DetIdTIDSameDiskComparator> getter = accessor.stripTIDDisk(theSide,theIdLayer);
201  SiStripRecHit2DCollection::Range range = stereoHits->equal_range(getter.first, getter.second);
202  for (SiStripRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
203  int ring = TIDDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
204  for (SiStripRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
205  result.push_back( sl.hitBuilder()->build(hit) );
206  }
207  }
208  if (skipClusters) cleanedOfClusters(ev,result,false);
209  }
210  }
211  //
212  // TOB
213  //
215  if (hasMatchedHits) {
217  ev.getByLabel( theMatchedHits, matchedHits);
218  range2SeedingHits( *matchedHits, result, accessor.stripTOBLayer(theIdLayer), sl, es);
219  if (skipClusters) cleanedOfClusters(ev,result,true);
220  }
221  if (hasRPhiHits) {
223  ev.getByLabel( theRPhiHits, rphiHits);
224  if (hasMatchedHits){
225  if (!hasSimpleRphiHitsCleaner){ // this is a brutal "cleaning". Add something smarter in the future
226  range2SeedingHits( *rphiHits, result, accessor.stripTOBLayer(theIdLayer), sl, es);
227  if (skipClusters) cleanedOfClusters(ev,result,false);
228  }
229  } else {
230  range2SeedingHits( *rphiHits, result, accessor.stripTOBLayer(theIdLayer), sl, es);
231  if (skipClusters) cleanedOfClusters(ev,result,false);
232  }
233  }
234  if (hasStereoHits) {
236  ev.getByLabel( theStereoHits, stereoHits);
237  range2SeedingHits( *stereoHits, result, accessor.stripTOBLayer(theIdLayer), sl, es);
238  if (skipClusters) cleanedOfClusters(ev,result,false);
239  }
240  }
241 
242  //
243  // TEC
244  //
246  if (hasMatchedHits) {
248  ev.getByLabel( theMatchedHits, matchedHits);
249  std::pair<DetId,DetIdTECSameDiskComparator> getter = accessor.stripTECDisk(theSide,theIdLayer);
250  SiStripMatchedRecHit2DCollection::Range range = matchedHits->equal_range(getter.first, getter.second);
251  for (SiStripMatchedRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
252  int ring = TECDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
253  for (SiStripMatchedRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
254  result.push_back( sl.hitBuilder()->build(hit) );
255  }
256  }
257  if (skipClusters) cleanedOfClusters(ev,result,true);
258  }
259  if (hasRPhiHits) {
261  ev.getByLabel( theRPhiHits, rphiHits);
262  std::pair<DetId,DetIdTECSameDiskComparator> getter = accessor.stripTECDisk(theSide,theIdLayer);
263  SiStripRecHit2DCollection::Range range = rphiHits->equal_range(getter.first, getter.second);
264  for (SiStripRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
265  int ring = TECDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
266  if ((SiStripDetId(it->detId()).partnerDetId() != 0) && hasSimpleRphiHitsCleaner) continue; // this is a brutal "cleaning". Add something smarter in the future
267  for (SiStripRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
268  result.push_back( sl.hitBuilder()->build(hit) );
269  }
270  }
271  if (skipClusters) cleanedOfClusters(ev,result,false);
272 
273  }
274  if (hasStereoHits) {
276  ev.getByLabel( theStereoHits, stereoHits);
277  std::pair<DetId,DetIdTECSameDiskComparator> getter = accessor.stripTECDisk(theSide,theIdLayer);
278  SiStripRecHit2DCollection::Range range = stereoHits->equal_range(getter.first, getter.second);
279  for (SiStripRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
280  int ring = TECDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
281  for (SiStripRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
282  result.push_back( sl.hitBuilder()->build(hit) );
283  }
284  }
285  if (skipClusters) cleanedOfClusters(ev,result,false);
286  }
287  }
288  LogDebug("HitExtractorSTRP")<<" giving: "<<result.size()<<" out";
289  return result;
290 }
#define LogDebug(id)
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
std::pair< DetId, DetIdTIDSameDiskComparator > stripTIDDisk(int side, int disk)
bool ringRange(int ring) const
void cleanedOfClusters(const edm::Event &ev, HitExtractor::Hits &hits, bool matched) const
std::pair< DetId, DetIdTIBSameLayerComparator > stripTIBLayer(int layer)
virtual SubDetector subDetector() const =0
The type of detector (PixelBarrel, PixelEndcap, TIB, TOB, TID, TEC, CSC, DT, RPCBarrel, RPCEndcap)
std::pair< const_iterator, const_iterator > Range
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
std::pair< DetId, DetIdTOBSameLayerComparator > stripTOBLayer(int layer)
virtual RecHitPointer build(const TrackingRecHit *p) const =0
build a tracking rechit from an existing rechit
tuple result
Definition: query.py:137
std::pair< DetId, DetIdTECSameDiskComparator > stripTECDisk(int side, int disk)
#define end
Definition: vmac.h:38
const SeedingLayer * theSLayer
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:355
Detector identifier class for the strip tracker.
Definition: SiStripDetId.h:17
const TransientTrackingRecHitBuilder * hitBuilder() const
Definition: SeedingLayer.cc:85
std::vector< TransientTrackingRecHit::ConstRecHitPointer > Hits
Definition: HitExtractor.h:16
void HitExtractorSTRP::project ( TransientTrackingRecHit::ConstRecHitPointer ptr,
const SiStripRecHit2D hit,
TransientTrackingRecHit::ConstRecHitPointer replaceMe 
) const

Definition at line 63 of file HitExtractorSTRP.cc.

References TransientTrackingRecHitBuilder::build(), failProjection, ctfseeding::SeedingLayer::hitBuilder(), LogDebug, TrackingRecHitProjector< ResultingHit >::project(), and theSLayer.

Referenced by skipThis().

65  {
66 
67  if (failProjection) {replaceMe=0; return;}
70  replaceMe=proj.project( *sHit, *ptr->det());
71  if (!replaceMe) LogDebug("HitExtractorSTRP")<<"projection failed.";
72 }
#define LogDebug(id)
RecHitPointer project(const TransientTrackingRecHit &hit, const GeomDet &det, const TrajectoryStateOnSurface &ts) const
virtual RecHitPointer build(const TrackingRecHit *p) const =0
build a tracking rechit from an existing rechit
const SeedingLayer * theSLayer
const TransientTrackingRecHitBuilder * hitBuilder() const
Definition: SeedingLayer.cc:85
bool HitExtractorSTRP::ringRange ( int  ring) const
private

Definition at line 39 of file HitExtractorSTRP.cc.

References hasRingSelector, theMaxRing, and theMinRing.

Referenced by hits().

40 {
41  if (!hasRingSelector) return true;
42  else if ( ring >= theMinRing && ring <= theMaxRing) return true;
43  else return false;
44 }
void ctfseeding::HitExtractorSTRP::setNoProjection ( ) const
inline

Definition at line 40 of file HitExtractorSTRP.h.

References failProjection.

Referenced by SeedingLayerSetsBuilder::layers().

bool HitExtractorSTRP::skipThis ( TransientTrackingRecHit::ConstRecHitPointer ptr,
edm::Handle< edmNew::DetSetVector< SiStripClusterRef > > &  stripClusterRefs,
TransientTrackingRecHit::ConstRecHitPointer replaceMe 
) const

Definition at line 74 of file HitExtractorSTRP.cc.

References SiStripRecHit2D::cluster(), edm::Ref< C, T, F >::key(), LogDebug, SiStripMatchedRecHit2D::monoHit(), project(), and SiStripMatchedRecHit2D::stereoHit().

Referenced by cleanedOfClusters().

76  {
77  const SiStripMatchedRecHit2D * hit = (SiStripMatchedRecHit2D *) ptr->hit();
78 
79  bool rejectSt=false,rejectMono=false;
80  if (skipThis(hit->stereoHit(),stripClusterRefs)) rejectSt=true;
81  if (skipThis(hit->monoHit(),stripClusterRefs)) rejectMono=true;
82 
83  if (rejectSt&&rejectMono){
84  //only skip if both hits are done
85  return true;
86  }
87  else{
88  if (rejectSt) project(ptr,hit->stereoHit(),replaceMe);
89  else if (rejectMono) project(ptr,hit->monoHit(),replaceMe);
90  if (!replaceMe) return true; //means that the projection failed, and needs to be skipped
91  if (rejectSt)
92  LogDebug("HitExtractorSTRP")<<"a matched hit is partially masked, and the mono hit got projected onto: "<<replaceMe->hit()->geographicalId().rawId()<<" key: "<<hit->monoHit()->cluster().key();
93  else if (rejectMono)
94  LogDebug("HitExtractorSTRP")<<"a matched hit is partially masked, and the stereo hit got projected onto: "<<replaceMe->hit()->geographicalId().rawId()<<" key: "<<hit->stereoHit()->cluster().key();
95  return false; //means the projection succeeded or nothing to be masked, no need to skip and replaceMe is going to be used anyways.
96  }
97  return false;
98 }
#define LogDebug(id)
const SiStripRecHit2D * stereoHit() const
bool skipThis(TransientTrackingRecHit::ConstRecHitPointer &ptr, edm::Handle< edmNew::DetSetVector< SiStripClusterRef > > &stripClusterRefs, TransientTrackingRecHit::ConstRecHitPointer &replaceMe) const
void project(TransientTrackingRecHit::ConstRecHitPointer &ptr, const SiStripRecHit2D *hit, TransientTrackingRecHit::ConstRecHitPointer &replaceMe) const
ClusterRef const & cluster() const
key_type key() const
Accessor for product key.
Definition: Ref.h:265
const SiStripRecHit2D * monoHit() const
bool HitExtractorSTRP::skipThis ( const SiStripRecHit2D hit,
edm::Handle< edmNew::DetSetVector< SiStripClusterRef > > &  stripClusterRefs 
) const

Definition at line 46 of file HitExtractorSTRP.cc.

References edmNew::DetSetVector< T >::begin(), SiStripRecHit2D::cluster(), edmNew::DetSetVector< T >::end(), f, spr::find(), edmNew::DetSetVector< T >::find(), TrackingRecHit::geographicalId(), TrackingRecHit::isValid(), and DetId::rawId().

47  {
48  static DetId lastId=hit->geographicalId();
49  static edmNew::DetSetVector<SiStripClusterRef>::const_iterator f=stripClusterRefs->find(lastId.rawId());
50  if (hit->geographicalId()!=lastId){
51  lastId=hit->geographicalId();
52  f=stripClusterRefs->find(lastId.rawId());
53  }
54  if (f==stripClusterRefs->end()) return false;
55  if (!hit->isValid()) return false;
56 
57  bool skipping=(find(f->begin(),f->end(),hit->cluster())!=f->end());
58  //if (skipping) LogDebug("HitExtractorSTRP")<<"skipping a hit on :"<<hit->geographicalId().rawId()<<" key: "<<hit->cluster().key();
59  return skipping;
60 }
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
const_iterator begin() const
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
uint32_t rawId() const
get the raw id
Definition: DetId.h:45
double f[11][100]
const_iterator end() const
Definition: DetId.h:20
ClusterRef const & cluster() const
bool isValid() const
DetId geographicalId() const
void ctfseeding::HitExtractorSTRP::useMatchedHits ( const edm::InputTag m)
inline

Definition at line 27 of file HitExtractorSTRP.h.

References hasMatchedHits, m, and theMatchedHits.

Referenced by SeedingLayerSetsBuilder::layers().

void HitExtractorSTRP::useRingSelector ( int  minRing,
int  maxRing 
)

Definition at line 32 of file HitExtractorSTRP.cc.

References hasRingSelector, theMaxRing, and theMinRing.

Referenced by SeedingLayerSetsBuilder::layers().

void ctfseeding::HitExtractorSTRP::useRPhiHits ( const edm::InputTag m)
inline

Definition at line 28 of file HitExtractorSTRP.h.

References hasRPhiHits, m, and theRPhiHits.

Referenced by SeedingLayerSetsBuilder::layers().

void ctfseeding::HitExtractorSTRP::useSimpleRphiHitsCleaner ( bool  use)
inline
void ctfseeding::HitExtractorSTRP::useStereoHits ( const edm::InputTag m)
inline

Definition at line 29 of file HitExtractorSTRP.h.

References hasStereoHits, m, and theStereoHits.

Referenced by SeedingLayerSetsBuilder::layers().

Member Data Documentation

bool ctfseeding::HitExtractorSTRP::failProjection
mutableprivate

Definition at line 53 of file HitExtractorSTRP.h.

Referenced by project(), and setNoProjection().

bool ctfseeding::HitExtractorSTRP::hasMatchedHits
private

Definition at line 48 of file HitExtractorSTRP.h.

Referenced by hits(), and useMatchedHits().

bool ctfseeding::HitExtractorSTRP::hasRingSelector
private

Definition at line 51 of file HitExtractorSTRP.h.

Referenced by ringRange(), and useRingSelector().

bool ctfseeding::HitExtractorSTRP::hasRPhiHits
private

Definition at line 49 of file HitExtractorSTRP.h.

Referenced by hits(), and useRPhiHits().

bool ctfseeding::HitExtractorSTRP::hasSimpleRphiHitsCleaner
private

Definition at line 52 of file HitExtractorSTRP.h.

Referenced by hits(), and useSimpleRphiHitsCleaner().

bool ctfseeding::HitExtractorSTRP::hasStereoHits
private

Definition at line 50 of file HitExtractorSTRP.h.

Referenced by hits(), and useStereoHits().

int ctfseeding::HitExtractorSTRP::theIdLayer
private

Definition at line 47 of file HitExtractorSTRP.h.

Referenced by hits().

const DetLayer* ctfseeding::HitExtractorSTRP::theLayer
private

Definition at line 44 of file HitExtractorSTRP.h.

Referenced by hits().

edm::InputTag ctfseeding::HitExtractorSTRP::theMatchedHits
private

Definition at line 48 of file HitExtractorSTRP.h.

Referenced by hits(), and useMatchedHits().

int ctfseeding::HitExtractorSTRP::theMaxRing
private

Definition at line 51 of file HitExtractorSTRP.h.

Referenced by ringRange(), and useRingSelector().

int ctfseeding::HitExtractorSTRP::theMinRing
private

Definition at line 51 of file HitExtractorSTRP.h.

Referenced by ringRange(), and useRingSelector().

edm::InputTag ctfseeding::HitExtractorSTRP::theRPhiHits
private

Definition at line 49 of file HitExtractorSTRP.h.

Referenced by hits(), and useRPhiHits().

SeedingLayer::Side ctfseeding::HitExtractorSTRP::theSide
private

Definition at line 45 of file HitExtractorSTRP.h.

Referenced by hits().

const SeedingLayer* ctfseeding::HitExtractorSTRP::theSLayer
mutableprivate

Definition at line 46 of file HitExtractorSTRP.h.

Referenced by hits(), and project().

edm::InputTag ctfseeding::HitExtractorSTRP::theStereoHits
private

Definition at line 50 of file HitExtractorSTRP.h.

Referenced by hits(), and useStereoHits().