Skip to content

Commit

Permalink
fixed hits
Browse files Browse the repository at this point in the history
  • Loading branch information
pkurash committed Sep 3, 2024
1 parent 58436cd commit 44bef8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ class SimTraits
/*TF3*/ VS{ "TF3Hit" },
/*RCH*/ VS{ "RCHHit" },
/*MI3*/ VS{ "MI3Hit" },
/*ECL*/ VS{ "ECLHit" }
/*ECL*/ VS{ "ECLHit" },
/*FVD*/ VS{ "FVDHit" }
#endif
};
// clang-format on
Expand Down
6 changes: 3 additions & 3 deletions Detectors/Upgrades/ALICE3/FVD/simulation/src/Detector.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,10 @@ void Detector::CreateMaterials()
Float_t epsil = 0.03; // tracking precision [cm]
Float_t stmin = -0.001; // minimum step due to continuous processes [cm] (negative value: choose it automatically)

LOG(info) << "FVD: createMaterials(): fieldType " << fieldType << ", maxField " << maxField;
LOG(info) << "FVD: CreateMaterials(): fieldType " << fieldType << ", maxField " << maxField;

o2::base::Detector::Mixture(++matId, "Scintillator$", aScint, zScint, dScint, nScint, wScint);
o2::base::Detector::Medium(Scintillator, "Scintillator$", matId, unsens, fieldType, maxField,
o2::base::Detector::Mixture(++matId, "Scintillator", aScint, zScint, dScint, nScint, wScint);
o2::base::Detector::Medium(Scintillator, "Scintillator", matId, unsens, fieldType, maxField,
tmaxfd, stemax, deemax, epsil, stmin);

}
Expand Down

0 comments on commit 44bef8c

Please sign in to comment.