Skip to content
Snippets Groups Projects
Commit f5918b2a authored by Rachid Mazini's avatar Rachid Mazini
Browse files

Merge branch 'FastCaloSimGAN_fix_init_chain_warnings' into '21.0'

FastCaloSimGAN: skip unused layers early in the GAN layer simulation chain

See merge request !35840
parents 6594584e 42dcd249
No related branches found
No related tags found
14 merge requests!46457Draft: Adding the tools to run over data,!46454Draft: Adding the tools to be able to run over data,!45045WIP: Include another condition for hit merging in FCS_StepInfoSD.cxx,!45043Merge branch 'Update-DAOD_IDNCB' into '21.2',!44869Draft: Update to candidate store,!4217921.9-first_steps-InDetTrackingGeometryXML,!42171Add LAr cell DQ plots to UPC stream,!40342WIP: ATR-22546 - add missing trigger to MC16a,!39162Draft: Insert BCM' support,!38765Bis78 cabling,!37483Fix in monitoring of Pixel FE errors,!37305Merge 21.3.23 into 21.9,!36772Merge 21.0.118 into 21.3,!35840FastCaloSimGAN: skip unused layers early in the GAN layer simulation chain
......@@ -249,6 +249,16 @@ bool TFCSEnergyAndHitGAN::fillEnergy(TFCSSimulationState& simulstate, const TFCS
simulstate.setAuxInfo<int>("GANlayer"_FCShash,layer);
TFCSLateralShapeParametrizationHitBase::Hit hit;
TH2D* h = &element.second;
int xBinNum = h->GetNbinsX();
//If only one bin in r means layer is empty, no value should be added
if (xBinNum == 1) {
ATH_MSG_VERBOSE(" Layer "<< layer
<< " has only one bin in r, this means is it not used, skipping (this is needed to keep correct syncronisation of voxel and layers)");
//delete h;
continue;
}
if(get_number_of_bins()>0) {
const int bin=get_bin(simulstate,truth,extrapol);
if(bin>=0 && bin<(int)get_number_of_bins()) {
......@@ -291,15 +301,6 @@ bool TFCSEnergyAndHitGAN::fillEnergy(TFCSSimulationState& simulstate, const TFCS
int nHitsAlpha;
int nHitsR;
TH2D* h = &element.second;
int xBinNum = h->GetNbinsX();
//If only one bin in r means layer is empty, no value should be added
if (xBinNum == 1) {
ATH_MSG_VERBOSE(" Layer "<< layer
<< " has only one bin in r, this means is it not used, skipping (this is needed to keep correct syncronisation of voxel and layers)");
//delete h;
continue;
}
int yBinNum = h->GetNbinsY();
for (int iy = 1; iy <= yBinNum; ++iy){
for (int ix = 1; ix <= xBinNum; ++ix){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment