CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackProducerWithSCAssociation.cc
Go to the documentation of this file.
2 // system include files
3 #include <memory>
4 // user include files
16 
19 
21  TrackProducerBase<reco::Track>(iConfig.getParameter<bool>("TrajectoryInEvent")),
22  theAlgo(iConfig)
23 {
24  setConf(iConfig);
25  setSrc( consumes<TrackCandidateCollection>(iConfig.getParameter<edm::InputTag>( "src" )),
26  consumes<reco::BeamSpot>(iConfig.getParameter<edm::InputTag>( "beamSpot" )),
27  consumes<MeasurementTrackerEvent>(iConfig.getParameter<edm::InputTag>( "MeasurementTrackerEvent") ));
28  setAlias( iConfig.getParameter<std::string>( "@module_label" ) );
29 
30  if ( iConfig.exists("clusterRemovalInfo") ) {
31  edm::InputTag tag = iConfig.getParameter<edm::InputTag>("clusterRemovalInfo");
32  if (!(tag == edm::InputTag())) { setClusterRemovalInfo( tag ); }
33  }
34 
35 
36  myname_ = iConfig.getParameter<std::string>("ComponentName");
38  trackCSuperClusterAssociationCollection_ = iConfig.getParameter<std::string>("trackCandidateSCAssociationCollection");
39  trackSuperClusterAssociationCollection_ = iConfig.getParameter<std::string>("recoTrackSCAssociationCollection");
40  myTrajectoryInEvent_ = iConfig.getParameter<bool>("TrajectoryInEvent");
41 
42  assoc_token =
43  consumes<reco::TrackCandidateCaloClusterPtrAssociation>(
44  edm::InputTag(conversionTrackCandidateProducer_,
45  trackCSuperClusterAssociationCollection_));
47  consumes<MeasurementTrackerEvent>(edm::InputTag("MeasurementTrackerEvent")); //hardcoded because the original was and no time to fix (sigh)
48 
49 
50  //register your products
51  produces<reco::TrackCollection>().setBranchAlias( alias_ + "Tracks" );
52  produces<reco::TrackExtraCollection>().setBranchAlias( alias_ + "TrackExtras" );
53  produces<TrackingRecHitCollection>().setBranchAlias( alias_ + "RecHits" );
54  produces<std::vector<Trajectory> >() ;
55  produces<TrajTrackAssociationCollection>();
56  // produces< reco::TrackSuperClusterAssociationCollection > (trackSuperClusterAssociationCollection_ );
57  produces< reco::TrackCaloClusterPtrAssociation > (trackSuperClusterAssociationCollection_ );
58 
59 }
60 
61 
63 {
64  //edm::LogInfo("TrackProducerWithSCAssociation") << "Analyzing event number: " << theEvent.id() << "\n";
65 
66  //LogDebug("TrackProducerWithSCAssociation") << "Analyzing event number: " << theEvent.id() << "\n";
67  // std::cout << " TrackProducerWithSCAssociation Analyzing event number: " << theEvent.id() << "\n";
68 
69 
70  //
71  // create empty output collections
72  //
73  std::auto_ptr<TrackingRecHitCollection> outputRHColl (new TrackingRecHitCollection);
74  std::auto_ptr<reco::TrackCollection> outputTColl(new reco::TrackCollection);
75  std::auto_ptr<reco::TrackExtraCollection> outputTEColl(new reco::TrackExtraCollection);
76  std::auto_ptr<std::vector<Trajectory> > outputTrajectoryColl(new std::vector<Trajectory>);
77  // Reco Track - Super Cluster Association
78  std::auto_ptr<reco::TrackCaloClusterPtrAssociation> scTrkAssoc_p(new reco::TrackCaloClusterPtrAssociation);
79 
80  //
81  //declare and get stuff to be retrieved from ES
82  //
86  edm::ESHandle<Propagator> thePropagator;
89  getFromES(setup,theG,theMF,theFitter,thePropagator,theMeasTk,theBuilder);
90 
92  setup.get<TrackerTopologyRcd>().get(httopo);
93  const TrackerTopology *ttopo = httopo.product();
94 
95 
96  //
97  //declare and get TrackColection to be retrieved from the event
102  theEvent.getByToken(assoc_token, trkCandidateSCAssocHandle);
103  if ( !trkCandidateSCAssocHandle.isValid() ) {
104  // std::cout << "Error! Can't get the product "<<trackCSuperClusterAssociationCollection_.c_str() << " but keep running. Empty collection will be produced " << "\n";
105  edm::LogError("TrackProducerWithSCAssociation") << "Error! Can't get the product "<<trackCSuperClusterAssociationCollection_.c_str() << " but keep running. Empty collection will be produced " << "\n";
107  }
108  reco::TrackCandidateCaloClusterPtrAssociation scTrkCandAssCollection = *(trkCandidateSCAssocHandle.product());
109  if ( scTrkCandAssCollection.size() ==0 ) validTrackCandidateSCAssociationInput_=false;
110 
111 
112  std::vector<int> tccLocations;
113  AlgoProductCollection algoResults;
114  reco::BeamSpot bs;
115 
116 
117  getFromEvt(theEvent,theTCCollection,bs);
118 
119  if (theTCCollection.failedToGet()){
120  edm::LogError("TrackProducerWithSCAssociation") <<"TrackProducerWithSCAssociation could not get the TrackCandidateCollection.";}
121  else{
122  //
123  //run the algorithm
124  //
125  // LogDebug("TrackProducerWithSCAssociation") << "TrackProducerWithSCAssociation run the algorithm" << "\n";
126  // theAlgo.runWithCandidate(theG.product(), theMF.product(), *theTCCollection,
127  // theFitter.product(), thePropagator.product(), theBuilder.product(), algoResults);
128  // we have to copy this method from the algo in order to get the association track-seed
129  // this is ugly temporary code that should be replaced!!!!!
130  // start of copied code ======================================================
131 
132  // std::cout << "TrackProducerWithSCAssociation Number of TrackCandidates: " << theTCCollection->size() << "\n";
133  try{
134  int cont = 0;
135  int tcc=0;
136 
137  for (TrackCandidateCollection::const_iterator i=theTCCollection->begin(); i!=theTCCollection->end();i++)
138  {
139 
140  const TrackCandidate * theTC = &(*i);
142  const TrackCandidate::range& recHitVec=theTC->recHits();
143  const TrajectorySeed& seed = theTC->seed();
144 
145  //convert PTrajectoryStateOnDet to TrajectoryStateOnSurface
146 
147 
148  DetId detId(state.detId());
150  &(theG.product()->idToDet(detId)->surface()),
151  theMF.product());
152 
153  //LogDebug("TrackProducerWithSCAssociation") << "TrackProducerWithSCAssociation Initial TSOS\n" << theTSOS << "\n";
154 
155  //convert the TrackingRecHit vector to a TransientTrackingRecHit vector
156  //meanwhile computes the number of degrees of freedom
158 
159  float ndof=0;
160 
162  i!=recHitVec.second; i++){
163  hits.push_back(theBuilder.product()->build(&(*i) ));
164  }
165 
166 
167  //build Track
168  // LogDebug("TrackProducerWithSCAssociation") << "TrackProducerWithSCAssociation going to buildTrack"<< "\n";
169  FitterCloner fc(theFitter.product(),theBuilder.product());
170  bool ok = theAlgo.buildTrack(fc.fitter.get(),thePropagator.product(),algoResults, hits, theTSOS, seed, ndof, bs, theTC->seedRef());
171  // LogDebug("TrackProducerWithSCAssociation") << "TrackProducerWithSCAssociation buildTrack result: " << ok << "\n";
172  if(ok) {
173  cont++;
174  tccLocations.push_back(tcc);
175  }
176  tcc++;
177  }
178  edm::LogInfo("TrackProducerWithSCAssociation") << "Number of Tracks found: " << cont << "\n";
179  //LogDebug("TrackProducerWithSCAssociation") << "TrackProducerWithSCAssociation Number of Tracks found: " << cont << "\n";
180  // end of copied code ======================================================
181 
182  } catch (cms::Exception &e){ edm::LogInfo("TrackProducerWithSCAssociation") << "cms::Exception caught!!!" << "\n" << e << "\n";}
183  //
184  //put everything in the event
185  // we copy putInEvt to get OrphanHandle filled...
186  putInEvt(theEvent,thePropagator.product(),theMeasTk.product(),
187  outputRHColl, outputTColl, outputTEColl, outputTrajectoryColl, algoResults, theBuilder.product(), ttopo);
188 
189  // now construct associationmap and put it in the event
191  int itrack=0;
192  std::vector<edm::Ptr<reco::CaloCluster> > caloPtrVec;
193  for(AlgoProductCollection::iterator i=algoResults.begin(); i!=algoResults.end();i++){
194  edm::Ref<TrackCandidateCollection> trackCRef(theTCCollection,tccLocations[itrack]);
195  const edm::Ptr<reco::CaloCluster>& aClus = (*trkCandidateSCAssocHandle)[trackCRef];
196  caloPtrVec.push_back( aClus );
197  itrack++;
198  }
199 
200 
201  edm::ValueMap<reco::CaloClusterPtr>::Filler filler(*scTrkAssoc_p);
202  filler.insert(rTracks_, caloPtrVec.begin(), caloPtrVec.end());
203  filler.fill();
204  }
205 
206  theEvent.put(scTrkAssoc_p,trackSuperClusterAssociationCollection_ );
207 
208  }
209 
210 }
211 
212 std::vector<reco::TransientTrack> TrackProducerWithSCAssociation::getTransient(edm::Event& theEvent, const edm::EventSetup& setup)
213 {
214  edm::LogInfo("TrackProducerWithSCAssociation") << "Analyzing event number: " << theEvent.id() << "\n";
215  //
216  // create empty output collections
217  //
218  std::vector<reco::TransientTrack> ttks;
219 
220  //
221  //declare and get stuff to be retrieved from ES
222  //
226  edm::ESHandle<Propagator> thePropagator;
229  getFromES(setup,theG,theMF,theFitter,thePropagator,theMeasTk,theBuilder);
230 
231  //
232  //declare and get TrackColection to be retrieved from the event
233  //
234  AlgoProductCollection algoResults;
235  reco::BeamSpot bs;
236 
237  try{
239  getFromEvt(theEvent,theTCCollection,bs);
240 
241  //
242  //run the algorithm
243  //
244  //LogDebug("TrackProducerWithSCAssociation") << "TrackProducerWithSCAssociation run the algorithm" << "\n";
245  theAlgo.runWithCandidate(theG.product(), theMF.product(), *theTCCollection,
246  theFitter.product(), thePropagator.product(), theBuilder.product(), bs, algoResults);
247 
248  } catch (cms::Exception &e){ edm::LogInfo("TrackProducerWithSCAssociation") << "cms::Exception caught!!!" << "\n" << e << "\n";}
249 
250 
251  for (auto & prod : algoResults){
252  ttks.emplace_back(*prod.track,thePropagator.product()->magneticField());
253  }
254 
255  //LogDebug("TrackProducerWithSCAssociation") << "TrackProducerWithSCAssociation end" << "\n";
256 
257  return ttks;
258 }
259 
260 
262 
263 
265  const Propagator* thePropagator,
266  const MeasurementTracker* theMeasTk,
267  std::auto_ptr<TrackingRecHitCollection>& selHits,
268  std::auto_ptr<reco::TrackCollection>& selTracks,
269  std::auto_ptr<reco::TrackExtraCollection>& selTrackExtras,
270  std::auto_ptr<std::vector<Trajectory> >& selTrajectories,
271  AlgoProductCollection& algoResults, TransientTrackingRecHitBuilder const * hitBuilder,
272  const TrackerTopology *ttopo)
273 {
274 
277 
281  edm::Ref< std::vector<Trajectory> >::key_type iTjRef = 0;
282  std::map<unsigned int, unsigned int> tjTkMap;
283 
284  for(auto & i : algoResults){
285  Trajectory * theTraj = i.trajectory;
287  selTrajectories->push_back(*theTraj);
288  iTjRef++;
289  }
290 
291  reco::Track * theTrack = i.track;
292  PropagationDirection seedDir = i.pDir;
293 
294  //LogDebug("TrackProducer") << "In KfTrackProducerBase::putInEvt - seedDir=" << seedDir;
295 
296  reco::Track t = * theTrack;
297  selTracks->push_back( t );
298  iTkRef++;
299 
300  // Store indices in local map (starts at 0)
301  if(trajectoryInEvent_) tjTkMap[iTjRef-1] = iTkRef-1;
302 
303  //sets the outermost and innermost TSOSs
304 
305  TrajectoryStateOnSurface outertsos;
306  TrajectoryStateOnSurface innertsos;
307  unsigned int innerId, outerId;
308 
309  // --- NOTA BENE: the convention is to sort hits and measurements "along the momentum".
310  // This is consistent with innermost and outermost labels only for tracks from LHC collision
311  if (theTraj->direction() == alongMomentum) {
312  outertsos = theTraj->lastMeasurement().updatedState();
313  innertsos = theTraj->firstMeasurement().updatedState();
314  outerId = theTraj->lastMeasurement().recHit()->geographicalId().rawId();
315  innerId = theTraj->firstMeasurement().recHit()->geographicalId().rawId();
316  } else {
317  outertsos = theTraj->firstMeasurement().updatedState();
318  innertsos = theTraj->lastMeasurement().updatedState();
319  outerId = theTraj->firstMeasurement().recHit()->geographicalId().rawId();
320  innerId = theTraj->lastMeasurement().recHit()->geographicalId().rawId();
321  }
322  // ---
323  //build the TrackExtra
324  GlobalPoint v = outertsos.globalParameters().position();
325  GlobalVector p = outertsos.globalParameters().momentum();
326  math::XYZVector outmom( p.x(), p.y(), p.z() );
327  math::XYZPoint outpos( v.x(), v.y(), v.z() );
328  v = innertsos.globalParameters().position();
329  p = innertsos.globalParameters().momentum();
330  math::XYZVector inmom( p.x(), p.y(), p.z() );
331  math::XYZPoint inpos( v.x(), v.y(), v.z() );
332 
333  reco::TrackExtraRef teref= reco::TrackExtraRef ( rTrackExtras, idx ++ );
334  reco::Track & track = selTracks->back();
335  track.setExtra( teref );
336 
337  //======= I want to set the second hitPattern here =============
338  if (theSchool.isValid())
339  {
342  setSecondHitPattern(theTraj,track,thePropagator,&*mte, ttopo);
343  }
344  //==============================================================
345 
346 
347  selTrackExtras->push_back( reco::TrackExtra (outpos, outmom, true, inpos, inmom, true,
348  outertsos.curvilinearError(), outerId,
349  innertsos.curvilinearError(), innerId,
350  seedDir,theTraj->seedRef()));
351 
352 
353  reco::TrackExtra & tx = selTrackExtras->back();
354  // --- NOTA BENE: the convention is to sort hits and measurements "along the momentum".
355  // This is consistent with innermost and outermost labels only for tracks from LHC collisions
356  Traj2TrackHits t2t(hitBuilder,false);
357  auto ih = selHits->size();
358  assert(ih==hidx);
359  t2t(*theTraj,*selHits,false);
360  auto const ie = selHits->size();
361  unsigned int nHitsAdded = 0;
362  for (;ih<ie; ++ih) {
363  auto const & hit = (*selHits)[ih];
364  track.appendHitPattern(hit, *ttopo);
365  ++nHitsAdded;
366  }
367  tx.setHits( rHits, hidx, nHitsAdded);
368  hidx +=nHitsAdded;
369  /*
370  if (theTraj->direction() == alongMomentum) {
371  for( TrajectoryFitter::RecHitContainer::const_iterator j = transHits.begin();
372  j != transHits.end(); j ++ ) {
373  if ((**j).hit()!=0){
374  TrackingRecHit * hit = (**j).hit()->clone();
375  track.appendHitPattern(*hit, *ttopo);
376  selHits->push_back( hit );
377  tx.add( TrackingRecHitRef( rHits, hidx ++ ) );
378  }
379  }
380  }else{
381  for( TrajectoryFitter::RecHitContainer::const_iterator j = transHits.end()-1;
382  j != transHits.begin()-1; --j ) {
383  if ((**j).hit()!=0){
384  TrackingRecHit * hit = (**j).hit()->clone();
385  track.appendHitPattern(*hit, *ttopo);
386  selHits->push_back( hit );
387  tx.add( TrackingRecHitRef( rHits, hidx ++ ) );
388  }
389  }
390  }
391  */
392 
393  // ----
394 
395  delete theTrack;
396  delete theTraj;
397  }
398 
399  //LogTrace("TrackingRegressionTest") << "========== TrackProducer Info ===================";
400  //LogDebug("TrackProducerWithSCAssociation") << "number of finalTracks: " << selTracks->size() << std::endl;
401  //for (reco::TrackCollection::const_iterator it = selTracks->begin(); it != selTracks->end(); it++) {
402  //LogDebug("TrackProducerWithSCAssociation") << "track's n valid and invalid hit, chi2, pt : "
403  // << it->found() << " , "
404  // << it->lost() <<" , "
405  // << it->normalizedChi2() << " , "
406  // << it->pt() << std::endl;
407  // }
408  //LogTrace("TrackingRegressionTest") << "=================================================";
409 
410 
411  rTracks_ = evt.put( selTracks );
412 
413 
414  evt.put( selTrackExtras );
415  evt.put( selHits );
416 
418  edm::OrphanHandle<std::vector<Trajectory> > rTrajs = evt.put(selTrajectories);
419 
420  // Now Create traj<->tracks association map
421  std::auto_ptr<TrajTrackAssociationCollection> trajTrackMap( new TrajTrackAssociationCollection(rTrajs, rTracks_) );
422  for ( std::map<unsigned int, unsigned int>::iterator i = tjTkMap.begin();
423  i != tjTkMap.end(); i++ ) {
424  edm::Ref<std::vector<Trajectory> > trajRef( rTrajs, (*i).first );
425  edm::Ref<reco::TrackCollection> tkRef( rTracks_, (*i).second );
426  trajTrackMap->insert( edm::Ref<std::vector<Trajectory> >( rTrajs, (*i).first ),
427  edm::Ref<reco::TrackCollection>( rTracks_, (*i).second ) );
428  }
429  evt.put( trajTrackMap );
430  }
431 }
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
edm::EDGetTokenT< MeasurementTrackerEvent > measurementTrkToken_
ConstRecHitPointer const & recHit() const
virtual void getFromEvt(edm::Event &, edm::Handle< TrackCandidateCollection > &, reco::BeamSpot &)
Get TrackCandidateCollection from the Event (needed by TrackProducer)
tuple cont
load Luminosity info ##
Definition: generateEDF.py:622
range recHits() const
edm::OrphanHandle< reco::TrackCollection > rTracks_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
std::vector< reco::TransientTrack > getTransient(edm::Event &, const edm::EventSetup &)
void setHits(TrackingRecHitRefProd const &prod, unsigned firstH, unsigned int nH)
void putInEvt(edm::Event &evt, const Propagator *thePropagator, const MeasurementTracker *theMeasTk, std::auto_ptr< TrackingRecHitCollection > &selHits, std::auto_ptr< reco::TrackCollection > &selTracks, std::auto_ptr< reco::TrackExtraCollection > &selTrackExtras, std::auto_ptr< std::vector< Trajectory > > &selTrajectories, AlgoProductCollection &algoResults, TransientTrackingRecHitBuilder const *hitBuilder, const TrackerTopology *ttopo)
const CurvilinearTrajectoryError & curvilinearError() const
assert(m_qm.get())
TrajectorySeed const & seed() const
void insert(const H &h, I begin, I end)
Definition: ValueMap.h:52
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
T y() const
Definition: PV3DBase.h:63
bool exists(std::string const &parameterName) const
checks if a parameter exists
void setSecondHitPattern(Trajectory *traj, reco::Track &track, const Propagator *prop, const MeasurementTrackerEvent *measTk, const TrackerTopology *ttopo)
void setClusterRemovalInfo(const edm::InputTag &clusterRemovalInfo)
Sets the information on cluster removal, and turns it on.
std::vector< ConstRecHitPointer > RecHitContainer
edm::EDGetTokenT< reco::TrackCandidateCaloClusterPtrAssociation > assoc_token
edm::Ref< TrackExtraCollection > TrackExtraRef
persistent reference to a TrackExtra
Definition: TrackExtraFwd.h:17
PropagationDirection
std::pair< const_iterator, const_iterator > range
void setAlias(std::string alias)
set the aliases of produced collections
void setConf(const edm::ParameterSet &conf)
Set parameter set.
bool buildTrack(const TrajectoryFitter *, const Propagator *, AlgoProductCollection &, TransientTrackingRecHit::RecHitContainer &, TrajectoryStateOnSurface &, const TrajectorySeed &, float, const reco::BeamSpot &, SeedRef seedRef=SeedRef(), int qualityMask=0, signed char nLoops=0)
Construct Tracks to be put in the event.
PropagationDirection const & direction() const
Definition: Trajectory.cc:125
PTrajectoryStateOnDet const & trajectoryStateOnDet() const
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
TrajectoryMeasurement const & lastMeasurement() const
Definition: Trajectory.h:228
T z() const
Definition: PV3DBase.h:64
unsigned int detId() const
edm::RefToBase< TrajectorySeed > seedRef(void) const
Definition: Trajectory.h:361
bool isValid() const
Definition: HandleBase.h:75
edm::AssociationMap< edm::OneToOne< std::vector< Trajectory >, reco::TrackCollection, unsigned short > > TrajTrackAssociationCollection
RefProd< PROD > getRefBeforePut()
Definition: Event.h:141
TrackProducerAlgorithm< reco::Track > theAlgo
void setSrc(const edm::EDGetToken &src, const edm::EDGetTokenT< reco::BeamSpot > &bsSrc, const edm::EDGetTokenT< MeasurementTrackerEvent > &mteSrc)
set label of source collection
bool failedToGet() const
Definition: HandleBase.h:79
Definition: DetId.h:18
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:11
void setExtra(const TrackExtraRef &ref)
set reference to &quot;extra&quot; object
Definition: Track.h:184
TrajectoryMeasurement const & firstMeasurement() const
Definition: Trajectory.h:241
TrajectoryStateOnSurface transientState(const PTrajectoryStateOnDet &ts, const Surface *surface, const MagneticField *field)
T const * product() const
Definition: Handle.h:81
const GlobalTrajectoryParameters & globalParameters() const
XYZVectorD XYZVector
spatial vector with cartesian internal representation
Definition: Vector3D.h:30
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
const T & get() const
Definition: EventSetup.h:56
T const * product() const
Definition: ESHandle.h:86
bool appendHitPattern(const TrackingRecHit &hit, const TrackerTopology &ttopo)
append a single hit to the HitPattern
Definition: TrackBase.h:455
TrackProducerWithSCAssociation(const edm::ParameterSet &iConfig)
std::vector< AlgoProduct > AlgoProductCollection
edm::EventID id() const
Definition: EventBase.h:59
size_t size() const
Definition: ValueMap.h:157
edm::ESHandle< NavigationSchool > theSchool
void runWithCandidate(const TrackingGeometry *, const MagneticField *, const TrackCandidateCollection &, const TrajectoryFitter *, const Propagator *, const TransientTrackingRecHitBuilder *, const reco::BeamSpot &, AlgoProductCollection &)
Run the Final Fit taking TrackCandidates as input.
TrajectoryStateOnSurface const & updatedState() const
bool isValid() const
Definition: ESHandle.h:47
T x() const
Definition: PV3DBase.h:62
edm::RefToBase< TrajectorySeed > seedRef() const
boost::remove_cv< typename boost::remove_reference< argument_type >::type >::type key_type
Definition: Ref.h:168
virtual void produce(edm::Event &, const edm::EventSetup &) override
Method where the procduction take place. To be implemented in concrete classes.
virtual void getFromES(const edm::EventSetup &, edm::ESHandle< TrackerGeometry > &, edm::ESHandle< MagneticField > &, edm::ESHandle< TrajectoryFitter > &, edm::ESHandle< Propagator > &, edm::ESHandle< MeasurementTracker > &, edm::ESHandle< TransientTrackingRecHitBuilder > &)
Get needed services from the Event Setup.