Skip to content

Commit c47d4dd

Browse files
Update Digitizer.cxx
1 parent fcca577 commit c47d4dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Detectors/FIT/FV0/simulation/src/Digitizer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ void Digitizer::process(const std::vector<o2::fv0::Hit>& hits,
9999
const auto& hit = hits[ids];
100100
Int_t detId = hit.GetDetectorID();
101101
Double_t hitEdep = hit.GetHitValue() * 1e3; //convert to MeV
102-
Long64_t const hitTime = hit.GetTime() * 1e9;
102+
Float_t const hitTime = hit.GetTime() * 1e9;
103103
// TODO: check how big is inaccuracy if more than 1 'below-threshold' particles hit the same detector cell
104104
if (hitEdep < FV0DigParam::Instance().singleMipThreshold || hitTime > FV0DigParam::Instance().singleHitTimeThreshold) {
105105
continue;

0 commit comments

Comments
 (0)