Skip to content

Commit

Permalink
Update Digitizer.cxx
Browse files Browse the repository at this point in the history
  • Loading branch information
arvindkhuntia authored Jan 11, 2023
1 parent fcca577 commit c47d4dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Detectors/FIT/FV0/simulation/src/Digitizer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ void Digitizer::process(const std::vector<o2::fv0::Hit>& hits,
const auto& hit = hits[ids];
Int_t detId = hit.GetDetectorID();
Double_t hitEdep = hit.GetHitValue() * 1e3; //convert to MeV
Long64_t const hitTime = hit.GetTime() * 1e9;
Float_t const hitTime = hit.GetTime() * 1e9;
// TODO: check how big is inaccuracy if more than 1 'below-threshold' particles hit the same detector cell
if (hitEdep < FV0DigParam::Instance().singleMipThreshold || hitTime > FV0DigParam::Instance().singleHitTimeThreshold) {
continue;
Expand Down

0 comments on commit c47d4dd

Please sign in to comment.