Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
geonmo committed May 29, 2014
1 parent c1559f4 commit 9603e69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Validation/MuonGEMDigis/src/GEMStripDigiValidation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ GEMStripDigiValidation::GEMStripDigiValidation(DQMStore* dbe,
void GEMStripDigiValidation::bookHisto(const GEMGeometry* geom) {
theGEMGeometry = geom;

int nstripsGE11 = theGEMGeometry->regions()[0]->stations()[0]->superChambers()[0]->chambers()[0]->etaPartitions()[0]->nstrips();
int nstripsGE21 = 0;

int nregions = theGEMGeometry->regions().size();
int nstations = theGEMGeometry->regions()[0]->stations().size();
int nstripsGE11 = theGEMGeometry->regions()[0]->stations()[0]->superChambers()[0]->chambers()[0]->etaPartitions()[0]->nstrips();
int nstripsGE21 = 0;

if ( nstations > 1 ) {
nstripsGE21 = theGEMGeometry->regions()[0]->stations()[1]->superChambers()[0]->chambers()[0]->etaPartitions()[0]->nstrips();
Expand Down
2 changes: 1 addition & 1 deletion Validation/MuonGEMHits/src/GEMSimTrackMatch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void GEMSimTrackMatch::bookHisto()

string track_eta_name = string("track_eta")+ suffix;
string track_eta_title = track_eta_name+";SimTrack |#eta|;# of tracks";
track_eta[i][j] = dbe_->book1D(track_eta_name.c_str(), track_eta_title.c_str(), 140,1.5,2.5);
track_eta[i][j] = dbe_->book1D(track_eta_name.c_str(), track_eta_title.c_str(), 140,minEta_,maxEta_);

string track_phi_name = string("track_phi")+ suffix;
string track_phi_title = track_phi_name+";SimTrack |#phi|;# of tracks";
Expand Down

0 comments on commit 9603e69

Please sign in to comment.