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, unsigned int cleanFrom=0) 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< edm::ContainerMask< edmNew::DetSetVector< SiStripCluster > > > &stripClusterMask, TransientTrackingRecHit::ConstRecHitPointer &replaceMe) const
 
bool skipThis (OmniClusterRef const &clus, edm::Handle< edm::ContainerMask< edmNew::DetSetVector< SiStripCluster > > > &stripClusterMask) 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 19 of file HitExtractorSTRP.h.

Member Typedef Documentation

typedef SiStripRecHit2D::ClusterRef ctfseeding::HitExtractorSTRP::SiStripClusterRef

Definition at line 22 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 25 of file HitExtractorSTRP.h.

25 {}

Member Function Documentation

void HitExtractorSTRP::cleanedOfClusters ( const edm::Event ev,
HitExtractor::Hits hits,
bool  matched,
unsigned int  cleanFrom = 0 
) const

Definition at line 96 of file HitExtractorSTRP.cc.

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

Referenced by hits().

98  {
99  LogDebug("HitExtractorPIX")<<"getting: "<<hits.size()<<" in input.";
101  ev.getByLabel(theSkipClusters,stripClusterMask);
102  HitExtractor::Hits newHits;
103  unsigned int skipped=0;
104  unsigned int projected=0;
105  newHits.reserve(hits.size());
107  for (unsigned int iH=cleanFrom;iH<hits.size();++iH){
108  if (!hits[iH]->isValid()) continue;
109  replaceMe=hits[iH];
110  if (matched && skipThis(hits[iH],stripClusterMask,replaceMe)){
111  LogDebug("HitExtractorSTRP")<<"skipping a matched hit on :"<<hits[iH]->hit()->geographicalId().rawId();
112  skipped++;
113  continue;
114  }
115  if (!matched && skipThis( ((TrackerSingleRecHit const *)(hits[iH]->hit()))->omniClusterRef(),stripClusterMask)){
116  LogDebug("HitExtractorSTRP")<<"skipping a hit on :"<<hits[iH]->hit()->geographicalId().rawId()<<" key: ";
117  skipped++;
118  continue;
119  }
120  if (replaceMe!=hits[iH]) projected++;
121  newHits.push_back(replaceMe);
122  }
123  LogDebug("HitExtractorPIX")<<"skipped :"<<skipped<<" strip rechits because of clusters and projected: "<<projected;
124  hits.swap(newHits);
125 }
#define LogDebug(id)
virtual HitExtractor::Hits hits(const SeedingLayer &sl, const edm::Event &, const edm::EventSetup &) const
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
bool skipThis(TransientTrackingRecHit::ConstRecHitPointer &ptr, edm::Handle< edm::ContainerMask< edmNew::DetSetVector< SiStripCluster > > > &stripClusterMask, TransientTrackingRecHit::ConstRecHitPointer &replaceMe) const
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 28 of file HitExtractorSTRP.h.

References HitExtractorSTRP().

Referenced by SeedingLayerSetsBuilder::layers().

28 { 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 127 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.

128 {
130  TrackerLayerIdAccessor accessor;
131  theSLayer=&sl;
132  unsigned int cleanFrom=0;
133  //
134  // TIB
135  //
137  if (hasMatchedHits) {
139  ev.getByLabel( theMatchedHits, matchedHits);
140  if (skipClusters) cleanFrom=result.size();
141  range2SeedingHits( *matchedHits, result, accessor.stripTIBLayer(theIdLayer), sl, es);
142  if (skipClusters) cleanedOfClusters(ev,result,true,cleanFrom);
143  }
144  if (hasRPhiHits) {
146  ev.getByLabel( theRPhiHits, rphiHits);
147  if (hasMatchedHits){
148  if (!hasSimpleRphiHitsCleaner){ // this is a brutal "cleaning". Add something smarter in the future
149  if (skipClusters) cleanFrom=result.size();
150  range2SeedingHits( *rphiHits, result, accessor.stripTIBLayer(theIdLayer), sl, es);
151  if (skipClusters) cleanedOfClusters(ev,result,false,cleanFrom);
152  }
153  } else {
154  if (skipClusters) cleanFrom=result.size();
155  range2SeedingHits( *rphiHits, result, accessor.stripTIBLayer(theIdLayer), sl, es);
156  if (skipClusters) cleanedOfClusters(ev,result,false,cleanFrom);
157  }
158  }
159  if (hasStereoHits) {
161  ev.getByLabel( theStereoHits, stereoHits);
162  if (skipClusters) cleanFrom=result.size();
163  range2SeedingHits( *stereoHits, result, accessor.stripTIBLayer(theIdLayer), sl, es);
164  if (skipClusters) cleanedOfClusters(ev,result,false,cleanFrom);
165  }
166  }
167 
168  //
169  // TID
170  //
172  if (hasMatchedHits) {
174  ev.getByLabel( theMatchedHits, matchedHits);
175  if (skipClusters) cleanFrom=result.size();
176  std::pair<DetId,DetIdTIDSameDiskComparator> getter = accessor.stripTIDDisk(theSide,theIdLayer);
177  SiStripMatchedRecHit2DCollection::Range range = matchedHits->equal_range(getter.first, getter.second);
178  for (SiStripMatchedRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
179  int ring = TIDDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
180  for (SiStripMatchedRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
181  result.push_back( sl.hitBuilder()->build(hit) );
182  }
183  }
184  if (skipClusters) cleanedOfClusters(ev,result,true,cleanFrom);
185  }
186  if (hasRPhiHits) {
188  ev.getByLabel( theRPhiHits, rphiHits);
189  if (skipClusters) cleanFrom=result.size();
190  std::pair<DetId,DetIdTIDSameDiskComparator> getter = accessor.stripTIDDisk(theSide,theIdLayer);
191  SiStripRecHit2DCollection::Range range = rphiHits->equal_range(getter.first, getter.second);
192  for (SiStripRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
193  int ring = TIDDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
194  if ((SiStripDetId(it->detId()).partnerDetId() != 0) && hasSimpleRphiHitsCleaner) continue; // this is a brutal "cleaning". Add something smarter in the future
195  for (SiStripRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
196  result.push_back( sl.hitBuilder()->build(hit) );
197  }
198  }
199  if (skipClusters) cleanedOfClusters(ev,result,false,cleanFrom);
200  }
201  if (hasStereoHits) {
203  ev.getByLabel( theStereoHits, stereoHits);
204  if (skipClusters) cleanFrom=result.size();
205  std::pair<DetId,DetIdTIDSameDiskComparator> getter = accessor.stripTIDDisk(theSide,theIdLayer);
206  SiStripRecHit2DCollection::Range range = stereoHits->equal_range(getter.first, getter.second);
207  for (SiStripRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
208  int ring = TIDDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
209  for (SiStripRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
210  result.push_back( sl.hitBuilder()->build(hit) );
211  }
212  }
213  if (skipClusters) cleanedOfClusters(ev,result,false,cleanFrom);
214  }
215  }
216  //
217  // TOB
218  //
220  if (hasMatchedHits) {
222  ev.getByLabel( theMatchedHits, matchedHits);
223  if (skipClusters) cleanFrom=result.size();
224  range2SeedingHits( *matchedHits, result, accessor.stripTOBLayer(theIdLayer), sl, es);
225  if (skipClusters) cleanedOfClusters(ev,result,true,cleanFrom);
226  }
227  if (hasRPhiHits) {
229  ev.getByLabel( theRPhiHits, rphiHits);
230  if (hasMatchedHits){
231  if (!hasSimpleRphiHitsCleaner){ // this is a brutal "cleaning". Add something smarter in the future
232  if (skipClusters) cleanFrom=result.size();
233  range2SeedingHits( *rphiHits, result, accessor.stripTOBLayer(theIdLayer), sl, es);
234  if (skipClusters) cleanedOfClusters(ev,result,false,cleanFrom);
235  }
236  } else {
237  if (skipClusters) cleanFrom=result.size();
238  range2SeedingHits( *rphiHits, result, accessor.stripTOBLayer(theIdLayer), sl, es);
239  if (skipClusters) cleanedOfClusters(ev,result,false,cleanFrom);
240  }
241  }
242  if (hasStereoHits) {
244  ev.getByLabel( theStereoHits, stereoHits);
245  if (skipClusters) cleanFrom=result.size();
246  range2SeedingHits( *stereoHits, result, accessor.stripTOBLayer(theIdLayer), sl, es);
247  if (skipClusters) cleanedOfClusters(ev,result,false,cleanFrom);
248  }
249  }
250 
251  //
252  // TEC
253  //
255  if (hasMatchedHits) {
257  ev.getByLabel( theMatchedHits, matchedHits);
258  if (skipClusters) cleanFrom=result.size();
259  std::pair<DetId,DetIdTECSameDiskComparator> getter = accessor.stripTECDisk(theSide,theIdLayer);
260  SiStripMatchedRecHit2DCollection::Range range = matchedHits->equal_range(getter.first, getter.second);
261  for (SiStripMatchedRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
262  int ring = TECDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
263  for (SiStripMatchedRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
264  result.push_back( sl.hitBuilder()->build(hit) );
265  }
266  }
267  if (skipClusters) cleanedOfClusters(ev,result,true,cleanFrom);
268  }
269  if (hasRPhiHits) {
271  ev.getByLabel( theRPhiHits, rphiHits);
272  if (skipClusters) cleanFrom=result.size();
273  std::pair<DetId,DetIdTECSameDiskComparator> getter = accessor.stripTECDisk(theSide,theIdLayer);
274  SiStripRecHit2DCollection::Range range = rphiHits->equal_range(getter.first, getter.second);
275  for (SiStripRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
276  int ring = TECDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
277  if ((SiStripDetId(it->detId()).partnerDetId() != 0) && hasSimpleRphiHitsCleaner) continue; // this is a brutal "cleaning". Add something smarter in the future
278  for (SiStripRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
279  result.push_back( sl.hitBuilder()->build(hit) );
280  }
281  }
282  if (skipClusters) cleanedOfClusters(ev,result,false,cleanFrom);
283 
284  }
285  if (hasStereoHits) {
287  ev.getByLabel( theStereoHits, stereoHits);
288  if (skipClusters) cleanFrom=result.size();
289  std::pair<DetId,DetIdTECSameDiskComparator> getter = accessor.stripTECDisk(theSide,theIdLayer);
290  SiStripRecHit2DCollection::Range range = stereoHits->equal_range(getter.first, getter.second);
291  for (SiStripRecHit2DCollection::const_iterator it = range.first; it != range.second; ++it) {
292  int ring = TECDetId( it->detId() ).ring(); if (!ringRange(ring)) continue;
293  for (SiStripRecHit2DCollection::DetSet::const_iterator hit = it->begin(), end = it->end(); hit != end; ++hit) {
294  result.push_back( sl.hitBuilder()->build(hit) );
295  }
296  }
297  if (skipClusters) cleanedOfClusters(ev,result,false,cleanFrom);
298  }
299  }
300  LogDebug("HitExtractorSTRP")<<" giving: "<<result.size()<<" out";
301  return result;
302 }
#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
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:361
Detector identifier class for the strip tracker.
Definition: SiStripDetId.h:17
const TransientTrackingRecHitBuilder * hitBuilder() const
Definition: SeedingLayer.cc:85
void cleanedOfClusters(const edm::Event &ev, HitExtractor::Hits &hits, bool matched, unsigned int cleanFrom=0) const
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 56 of file HitExtractorSTRP.cc.

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

Referenced by skipThis().

58  {
59 
60  if (failProjection) {replaceMe=0; return;}
63  replaceMe=proj.project( *sHit, *ptr->det());
64  if (!replaceMe) LogDebug("HitExtractorSTRP")<<"projection failed.";
65 }
#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 41 of file HitExtractorSTRP.cc.

References hasRingSelector, theMaxRing, and theMinRing.

Referenced by hits().

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

Definition at line 46 of file HitExtractorSTRP.h.

References failProjection.

Referenced by SeedingLayerSetsBuilder::layers().

bool HitExtractorSTRP::skipThis ( TransientTrackingRecHit::ConstRecHitPointer ptr,
edm::Handle< edm::ContainerMask< edmNew::DetSetVector< SiStripCluster > > > &  stripClusterMask,
TransientTrackingRecHit::ConstRecHitPointer replaceMe 
) const

Definition at line 67 of file HitExtractorSTRP.cc.

References LogDebug, m, project(), and alignCSCRings::s.

Referenced by cleanedOfClusters().

69  {
70  const SiStripMatchedRecHit2D * hit = (SiStripMatchedRecHit2D *) ptr->hit();
71 
72  bool rejectSt = skipThis(hit->stereoClusterRef(), stripClusterMask);
73  bool rejectMono = skipThis(hit->monoClusterRef(), stripClusterMask);
74 
75  if (rejectSt&&rejectMono){
76  //only skip if both hits are done
77  return true;
78  }
79  else{
80  //FIX use clusters directly
81  auto const & s= hit->stereoHit();
82  auto const & m= hit->monoHit();
83  if (rejectSt) project(ptr,&s,replaceMe);
84  else if (rejectMono) project(ptr,&m,replaceMe);
85  if (!replaceMe) return true; //means that the projection failed, and needs to be skipped
86  if (rejectSt)
87  LogDebug("HitExtractorSTRP")<<"a matched hit is partially masked, and the mono hit got projected onto: "<<replaceMe->hit()->geographicalId().rawId()<<" key: "<<hit->monoClusterRef().key();
88  else if (rejectMono)
89  LogDebug("HitExtractorSTRP")<<"a matched hit is partially masked, and the stereo hit got projected onto: "<<replaceMe->hit()->geographicalId().rawId()<<" key: "<<hit->stereoClusterRef().key();
90  return false; //means the projection succeeded or nothing to be masked, no need to skip and replaceMe is going to be used anyways.
91  }
92  return false;
93 }
#define LogDebug(id)
void project(TransientTrackingRecHit::ConstRecHitPointer &ptr, const SiStripRecHit2D *hit, TransientTrackingRecHit::ConstRecHitPointer &replaceMe) const
bool skipThis(TransientTrackingRecHit::ConstRecHitPointer &ptr, edm::Handle< edm::ContainerMask< edmNew::DetSetVector< SiStripCluster > > > &stripClusterMask, TransientTrackingRecHit::ConstRecHitPointer &replaceMe) const
bool HitExtractorSTRP::skipThis ( OmniClusterRef const &  clus,
edm::Handle< edm::ContainerMask< edmNew::DetSetVector< SiStripCluster > > > &  stripClusterMask 
) const

Definition at line 48 of file HitExtractorSTRP.cc.

References OmniClusterRef::key().

49  {
50  // if (!hit->isValid()) return false;
51 
52  return stripClusterMask->mask(clus.key());
53 }
void ctfseeding::HitExtractorSTRP::useMatchedHits ( const edm::InputTag m)
inline

Definition at line 30 of file HitExtractorSTRP.h.

References hasMatchedHits, m, and theMatchedHits.

Referenced by SeedingLayerSetsBuilder::layers().

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

Definition at line 34 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 31 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 32 of file HitExtractorSTRP.h.

References hasStereoHits, m, and theStereoHits.

Referenced by SeedingLayerSetsBuilder::layers().

Member Data Documentation

bool ctfseeding::HitExtractorSTRP::failProjection
mutableprivate

Definition at line 59 of file HitExtractorSTRP.h.

Referenced by project(), and setNoProjection().

bool ctfseeding::HitExtractorSTRP::hasMatchedHits
private

Definition at line 54 of file HitExtractorSTRP.h.

Referenced by hits(), and useMatchedHits().

bool ctfseeding::HitExtractorSTRP::hasRingSelector
private

Definition at line 57 of file HitExtractorSTRP.h.

Referenced by ringRange(), and useRingSelector().

bool ctfseeding::HitExtractorSTRP::hasRPhiHits
private

Definition at line 55 of file HitExtractorSTRP.h.

Referenced by hits(), and useRPhiHits().

bool ctfseeding::HitExtractorSTRP::hasSimpleRphiHitsCleaner
private

Definition at line 58 of file HitExtractorSTRP.h.

Referenced by hits(), and useSimpleRphiHitsCleaner().

bool ctfseeding::HitExtractorSTRP::hasStereoHits
private

Definition at line 56 of file HitExtractorSTRP.h.

Referenced by hits(), and useStereoHits().

int ctfseeding::HitExtractorSTRP::theIdLayer
private

Definition at line 53 of file HitExtractorSTRP.h.

Referenced by hits().

const DetLayer* ctfseeding::HitExtractorSTRP::theLayer
private

Definition at line 50 of file HitExtractorSTRP.h.

Referenced by hits().

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

Definition at line 54 of file HitExtractorSTRP.h.

Referenced by hits(), and useMatchedHits().

int ctfseeding::HitExtractorSTRP::theMaxRing
private

Definition at line 57 of file HitExtractorSTRP.h.

Referenced by ringRange(), and useRingSelector().

int ctfseeding::HitExtractorSTRP::theMinRing
private

Definition at line 57 of file HitExtractorSTRP.h.

Referenced by ringRange(), and useRingSelector().

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

Definition at line 55 of file HitExtractorSTRP.h.

Referenced by hits(), and useRPhiHits().

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

Definition at line 51 of file HitExtractorSTRP.h.

Referenced by hits().

const SeedingLayer* ctfseeding::HitExtractorSTRP::theSLayer
mutableprivate

Definition at line 52 of file HitExtractorSTRP.h.

Referenced by hits(), and project().

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

Definition at line 56 of file HitExtractorSTRP.h.

Referenced by hits(), and useStereoHits().