Skip to content

Commit

Permalink
Change MIP tracking radius to maxR instead of minR
Browse files Browse the repository at this point in the history
  • Loading branch information
tvami committed Sep 2, 2024
1 parent 8564a18 commit 175575e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Ecal/src/Ecal/EcalVetoProcessor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -796,8 +796,10 @@ void EcalVetoProcessor::produce(framework::Event &event) {
ldmx_log(debug) << "====== END OF Tracking hit list ======";
}

// in v14 that this is 2*4.17 mm
float cellWidth = 2 * geometry_->getCellMinR();
// in v14 minR is 4.17 mm
// while maxR is 4.81 mm
float cellWidth = 2 * geometry_->getCellMaxR();
std::cout << " cellWidth " << cellWidth << std::endl;
for (int iHit = 0; iHit < trackingHitList.size(); iHit++) {
// list of hit numbers in track (34 = maximum theoretical length)
int track[34];
Expand Down

0 comments on commit 175575e

Please sign in to comment.