Skip to content

Commit

Permalink
updating the configuration file adding proper comments and switching …
Browse files Browse the repository at this point in the history
…off X-Talk for OT layers alsoat the first step of PreMixing
  • Loading branch information
Suchandra authored and Suchandra committed Oct 5, 2023
1 parent 12a0066 commit 8f397b7
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions SimTracker/SiPhase2Digitizer/python/phase2TrackerDigitizer_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,15 @@
# - do not add noisy pixels (to be done in stage2)
# - do not apply inefficiency (to be done in stage2)
# - disable threshold smearing
# - disable x-talk simulatiom
#
# For outer tracker
# - force analog readout to get the ADCs
#
# For both Inner and Outer tracker
# - force analog readout to get Full Charge ADCs
# - for Inner Tracker Dual Slope signal scaling NOT used here to avoid any singal loss.
# At step 2 Dual Slope signal scaling is used as default. To keep the full precision
# ADCFull scaling is also changed to 255 for Inner Tracker
#
# -
# NOTE: It is currently assumed that all sub-digitizers have the same ElectronPerAdc.
from Configuration.ProcessModifiers.premix_stage1_cff import premix_stage1
_premixStage1ModifyDict = dict(
Expand All @@ -233,33 +238,38 @@
AddNoisyPixels = False,
AddInefficiency = False,
AddThresholdSmearing = False,
AddXTalk = False,
Phase2ReadoutMode = -1,
AdcFullScale = 255,
AddXTalk = False,
),
Pixel3DDigitizerAlgorithm = dict(
AddNoisyPixels = False,
AddInefficiency = False,
AddThresholdSmearing = False,
AddXTalk = False,
Phase2ReadoutMode = -1,
AdcFullScale = 255,
AddXTalk = False,
),
PSPDigitizerAlgorithm = dict(
AddNoisyPixels = False,
AddInefficiency = False,
AddThresholdSmearing = False,
AddXTalk = False,
Phase2ReadoutMode = -1,
),
PSSDigitizerAlgorithm = dict(
AddNoisyPixels = False,
AddInefficiency = False,
AddThresholdSmearing = False,
AddXTalk = False,
Phase2ReadoutMode = -1,
),
SSDigitizerAlgorithm = dict(
AddNoisyPixels = False,
AddInefficiency = False,
AddThresholdSmearing = False,
AddXTalk = False,
Phase2ReadoutMode = -1,
),
)

Expand Down

0 comments on commit 8f397b7

Please sign in to comment.