Skip to content

Commit

Permalink
Merge pull request #62 from JeffersonLab/maintenance_fixes_rtj
Browse files Browse the repository at this point in the history
Maintenance fixes rtj
  • Loading branch information
markito3 authored Aug 1, 2018
2 parents f81edb5 + bbd4014 commit 71c8480
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/GlueXSensitiveDetectorCDC.cc
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ void GlueXSensitiveDetectorCDC::EndOfEvent(G4HCofThisEvent*)
hitview.addCentralDCs();
hddm_s::CentralDC &centralDC = hitview.getCentralDC();

// Collect and output the strawTruthHits
// Collect and output the cdcTruthHits

for (siter = straws->begin(); siter != straws->end(); ++siter) {

Expand Down Expand Up @@ -563,7 +563,7 @@ void GlueXSensitiveDetectorCDC::EndOfEvent(G4HCofThisEvent*)
}
}

// Collect and output the strawTruthPoints
// Collect and output the cdcTruthPoints
for (piter = points->begin(); piter != points->end(); ++piter) {
hddm_s::CdcTruthPointList point = centralDC.addCdcTruthPoints(1);
point(0).setDEdx(piter->second->dEdx_GeV_cm);
Expand Down
2 changes: 1 addition & 1 deletion src/GlueXSensitiveDetectorFDC.cc
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ void GlueXSensitiveDetectorFDC::EndOfEvent(G4HCofThisEvent*)
}
}

// Collect and output the strawTruthPoints
// Collect and output the fdcTruthPoints

int last_chamber = -1;
hddm_s::FdcTruthPoint *last_point = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/GlueXSensitiveDetectorSTC.cc
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ void GlueXSensitiveDetectorSTC::EndOfEvent(G4HCofThisEvent*)
}
}

// Collect and output the paddleTruthPoints
// Collect and output the stcTruthPoints
for (piter = points->begin(); piter != points->end(); ++piter) {
hddm_s::StcTruthPointList point = startCntr.addStcTruthPoints(1);
point(0).setE(piter->second->E_GeV);
Expand Down
2 changes: 1 addition & 1 deletion src/GlueXSensitiveDetectorTPOL.cc
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ void GlueXSensitiveDetectorTPOL::EndOfEvent(G4HCofThisEvent*)
}
}

// Collect and output the wedgeTruthPoints
// Collect and output the tpolTruthPoints
for (piter = points->begin(); piter != points->end(); ++piter) {
hddm_s::TpolTruthPointList point = polarimeter.addTpolTruthPoints(1);
point(0).setE(piter->second->E_GeV);
Expand Down

0 comments on commit 71c8480

Please sign in to comment.