Skip to content

Commit

Permalink
Fix typo #2.
Browse files Browse the repository at this point in the history
  • Loading branch information
geonmo committed May 29, 2014
1 parent 9603e69 commit 0682426
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Validation/MuonGEMDigis/src/GEMDigiTrackMatch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ void GEMDigiTrackMatch::analyze(const edm::Event& iEvent, const edm::EventSetup&
FillWithTrigger( pad_eta, track_.gem_pad , fabs( track_.eta) );

if ( track_.eta> minEta_ && track_.eta< maxEta_) {
track_phi->Fill( fabs( track_.phi)) ;
FillWithTrigger( dg_sh_phi, track_.gem_sh , fabs( track_.phi) );
FillWithTrigger( dg_phi, track_.gem_dg , fabs( track_.phi) );
FillWithTrigger( pad_phi, track_.gem_pad , fabs( track_.phi) );
track_phi->Fill( track_.phi ) ;
FillWithTrigger( dg_sh_phi, track_.gem_sh , track_.phi );
FillWithTrigger( dg_phi, track_.gem_dg , track_.phi );
FillWithTrigger( pad_phi, track_.gem_pad , track_.phi );
}


Expand Down

0 comments on commit 0682426

Please sign in to comment.