Skip to content

Commit

Permalink
answer question in comment for future developers
Browse files Browse the repository at this point in the history
  • Loading branch information
tomeichlersmith authored Jul 10, 2024
1 parent 46def25 commit 97b6dbd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Tracking/src/Tracking/Reco/TruthSeedProcessor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@ void TruthSeedProcessor::configure(framework::config::Parameters& parameters) {
inflate_factors_ = parameters.getParameter<std::vector<double>>(
"inflate_factors", {10., 10., 10., 10., 10., 10.});

// In tracking frame: MG where do these numbers come from?
// In tracking frame: where do these numbers come from?
// These numbers come from approximating the path of the beam up
// until it is about to enter the first detector volume (TriggerPad1).
// In detector coordinates, (x,y,z) = (-44,0,-880) is _roughly_
// where the beam arrives (if no smearing is applied) and we simply
// reorder these values so that they are in tracking coordinates.
beamOrigin_ = parameters.getParameter<std::vector<double>>(
"beamOrigin", {-880.1, -44., 0.});

Expand Down

0 comments on commit 97b6dbd

Please sign in to comment.