Skip to content
Snippets Groups Projects
Commit 74657565 authored by John Kenneth Anders's avatar John Kenneth Anders
Browse files

Merge branch '21.0-MoreRadMaps' into '21.0'

improved Geantino weighting for density averaging in RadiationMapsMaker

See merge request !22167
parents bbe2fe5d 82a15866
48 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,!36893Fix size of RPC active region in BIS78 and strip material,!3645821.9: Improving material map description (ATLITKSW-127),!36293WIP pixel updates,!34993KF-input adding jXERHO to the AOD outputs,!34864LH rings in front ot HR rigs,!34763Fix L1_4jJ15.0ETA25 item definition (ATR-21261),!3473421.0 fix dq servers,!33996WIP: Correct MM zpositions,!3291021.3 salva s0,!3288421.0 salva s8,!3217421.9 - Bug fix for test stream creation in RD53BEncodingTool,!3135321.3,!3134821.9 README Update,!31345Add HEC sampling fractions macros,!31136added also PUsub for LargeR jets,!31123WIP: Master ttmdev,!3036121.9 fixing bug with layer indices in PixelRDOAnalysis,!29617IDPerfmonZmumu updates,!29454Idpvm 21.0 fix typo in trackselection config,!29085TRT modification for fractional charged particles,!28623Overlay as part of FastChain transform in 21.3,!28497ART tests - fixing the bugs,!27668Massimos 21.3 bis78,!27254WIP: Exclusive jets request -- Fix ExclusiveJets algo / ATR-17320,!26790Fixes for Simulation ART jobs (ATLASSIM-4309),!26592Master upload 2018 global monitoring scripts p2,!2618221.0 z counting,!25405Add new ART test: test_physics_pp_v8_chainorder_build.sh,!24147Merge release/21.3.14 into 21.9 branch,!24076WIP: Merge release/21.3.14 into 21.9 branch,!24037Make DCS Calculator dependent on sqlalchemy; fix python code quality issues,!23330Inner Detector create misalignments: radial distortions,!2325521.0 z counting,!22918Merge 21.0.96 into 21.3 branch,!22695Master salva id perf mon,!2230421.0-ART_test-InDetPhysValMonitoring,!22167improved Geantino weighting for density averaging in RadiationMapsMaker
......@@ -418,8 +418,8 @@ namespace G4UA{
// TID & EION
if ( goodMaterial && vBinZoom >=0 ) {
if ( pdgid == 999 ) {
m_maps.m_rz_tid [vBinZoom] += 1;
m_maps.m_rz_eion[vBinZoom] += rho;
m_maps.m_rz_tid [vBinZoom] += dl;
m_maps.m_rz_eion[vBinZoom] += rho*dl;
}
else {
m_maps.m_rz_tid [vBinZoom] += dE_ION/rho;
......@@ -428,8 +428,8 @@ namespace G4UA{
}
if ( goodMaterial && vBinFull >=0 ) {
if ( pdgid == 999 ) {
m_maps.m_full_rz_tid [vBinFull] += 1;
m_maps.m_full_rz_eion[vBinFull] += rho;
m_maps.m_full_rz_tid [vBinFull] += dl;
m_maps.m_full_rz_eion[vBinFull] += rho*dl;
}
else {
m_maps.m_full_rz_tid [vBinFull] += dE_ION/rho;
......@@ -438,8 +438,8 @@ namespace G4UA{
}
if ( goodMaterial && vBin3d >=0 ) {
if ( pdgid == 999 ) {
m_maps.m_3d_tid [vBin3d] += 1;
m_maps.m_3d_eion[vBin3d] += rho;
m_maps.m_3d_tid [vBin3d] += dl;
m_maps.m_3d_eion[vBin3d] += rho*dl;
}
else {
m_maps.m_3d_tid [vBin3d] += dE_ION/rho;
......
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