Skip to content
Snippets Groups Projects

Sweeping !24221 from master to 21.0. FastCaloSim: Increase E ratio warning threshold in the gap region.

Merged Sweeping !24221 from master to 21.0. FastCaloSim: Increase E ratio warning threshold in the gap region.
Merged Atlas Nightlybuild requested to merge cherry-pick-c815b75749-21.0 into 21.0
1 file
+ 8
1
Compare changes
  • Side-by-side
  • Inline
@@ -1379,7 +1379,14 @@ StatusCode FastShowerCellBuilderTool::process_particle(CaloCellContainer* theCel
return StatusCode::SUCCESS;
}
if(p.E>=3 && p.E*Ein>2000) {
float ERatioThresh = 3;
if (std::abs(Epara->eta() - 1.37) < 0.01) {
// Increase threshold in the gap region. It's possible for a shower
// to fluctuate to have almost all its energy in TileGap3, which has
// a relatively small weight.
ERatioThresh = 4;
}
if(p.E>=ERatioThresh && p.E*Ein>2000) {
ATH_MSG_WARNING("particle energy/truth="<<p.E);
ATH_MSG_WARNING(" - "<<particle_info_str.str());
ATH_MSG_WARNING(" parametrization : "<< Epara->GetTitle());
Loading