Skip to content

Commit

Permalink
Fix cluster-TP association for TrajectorySeeds in QuickTrackAssociato…
Browse files Browse the repository at this point in the history
…rByHits
  • Loading branch information
makortel committed Feb 6, 2015
1 parent 3f1e783 commit 1bcf867
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -613,7 +613,10 @@ QuickTrackAssociatorByHits::associateRecoToSim(edm::Handle<edm::View<TrajectoryS
edm::LogVerbatim("TrackAssociator") << "Starting TrackAssociatorByHits::associateRecoToSim - #seeds="
<< pSeedCollectionHandle_->size()<<" #TPs="<<trackingParticleCollectionHandle->size();

initialiseHitAssociator( pEvent );
// get the Cluster2TPMap or initialize hit associator
if (useClusterTPAssociation_) prepareCluster2TPMap(pEvent);
else initialiseHitAssociator( pEvent );

pTrackCollectionHandle_=NULL;
pTrackingParticleCollectionHandle_=&trackingParticleCollectionHandle;
pTrackCollection_=NULL;
Expand Down

0 comments on commit 1bcf867

Please sign in to comment.