Skip to content

Commit

Permalink
fix bug in trajectoryStudy function
Browse files Browse the repository at this point in the history
  • Loading branch information
mtosi committed Nov 26, 2013
1 parent e6c3884 commit 5b89412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQM/SiStripMonitorTrack/src/SiStripMonitorTrack.cc
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ void SiStripMonitorTrack::trajectoryStudy(const edm::Ref<std::vector<Trajectory>
TrajectoryStateOnSurface updatedtsos=traj_mes_iterator->updatedState();
ConstRecHitPointer ttrh=traj_mes_iterator->recHit();

if (!ttrh->isValid()) return;
if (!ttrh->isValid()) continue;

const ProjectedSiStripRecHit2D* phit = dynamic_cast<const ProjectedSiStripRecHit2D*>( ttrh->hit() );
const SiStripMatchedRecHit2D* matchedhit = dynamic_cast<const SiStripMatchedRecHit2D*>( ttrh->hit() );
Expand Down

0 comments on commit 5b89412

Please sign in to comment.