Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CosmicReco/src/LineFinder_module.cc
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ void LineFinder::addClusterToSeed(CosmicTrackSeed& tseed) {
constexpr double t0_match_window = 50.; // ns, loose time window for matching
for(size_t i_cl = 0; i_cl < _cccol->size(); ++i_cl) {
const CaloCluster& cl = _cccol->at(i_cl);
const CLHEP::Hep3Vector cl_pos = _calorimeter->geomUtil().mu2eToTracker(_calorimeter->geomUtil().diskToMu2e(cl.diskID(), cl.cog3Vector()));
const CLHEP::Hep3Vector cl_pos = _calorimeter->mu2eToTracker(_calorimeter->diskToMu2e(cl.diskID(), cl.cog3Vector()));
const double cl_time = cl.time();
// Get the expected time at the calo disk based on the line seed
const double speed = CLHEP::c_light; // assume speed of the particle is close to the speed of light
Expand Down