/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalTracker/SiStripZeroSuppression/python/DefaultAlgorithms_cff.py
62 строки
3 KB
Ivan
hybrid emulation done + hybrid analyzer
17 авг 2018, 10:56
17 авг 2018, 10:56
32adf9c
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms DefaultAlgorithms = cms.PSet( doAPVRestore = cms.bool(True), useCMMeanMap= cms.bool(False), ## Pedestal subtraction ---------------- PedestalSubtractionFedMode = cms.bool(False), ## Baseline finder --------------------- ## Supported CMN modes: Median, Percentile, IteratedMedian, TT6, FastLinear CommonModeNoiseSubtractionMode = cms.string('IteratedMedian'), #CutToAvoidSignal = cms.double(3.0), ## for TT6 #Percentile = cms.double(25.0), ## for Percentile CutToAvoidSignal = cms.double(2.0), ## for IteratedMedian (needed by APVRestorer) Iterations = cms.int32(3), ## ## APV restoration --------------------- # Supported inspect modes: BaselineFollower, AbnormalBaseline, Null, BaselineAndSaturation APVInspectMode = cms.string("BaselineFollower"), ForceNoRestore = cms.bool(False), useRealMeanCM = cms.bool(False), DeltaCMThreshold = cms.uint32(20), # for BaselineFollower inspect distortionThreshold = cms.uint32(20), # " " Fraction = cms.double(0.2), # for AbnormalBaseline inspect Deviation = cms.uint32(25), # " " restoreThreshold = cms.double(0.5), # for Null inspect nSaturatedStrip = cms.uint32(2), # for BaselineAndSaturation inspect # Supported restore modes: Flat, BaselineFollower, IterativeMedian APVRestoreMode = cms.string("BaselineFollower"), nSigmaNoiseDerTh = cms.uint32(4), # threshold for rejecting hit strips: nSigma * noise consecThreshold = cms.uint32(5), # minimum length of flat region hitStripThreshold = cms.uint32(40), # height above median when strip is definitely a hit nSmooth = cms.uint32(9), # for smoothing and local minimum determination (odd number) minStripsToFit = cms.uint32(4), # minimum strips to try spline algo (otherwise default to median) ApplyBaselineCleaner = cms.bool(True), CleaningSequence = cms.uint32(1), slopeX=cms.int32(3), slopeY=cms.int32(4), ApplyBaselineRejection = cms.bool(True), MeanCM = cms.int32(0), # Derivative follower parameters discontinuityThreshold = cms.int32(12), lastGradient = cms.int32(10), sizeWindow = cms.int32(1), widthCluster = cms.int32(64), #Parameters for bad APV selector filteredBaselineMax=cms.double(6), filteredBaselineDerivativeSumSquare=cms.double(30), ## Zero suppression -------------------- SiStripFedZeroSuppressionMode = cms.uint32(4), TruncateInSuppressor = cms.bool(True), #it truncates at 8 bits if Use10bitsTRuncation is off Use10bitsTruncation = cms.bool(False) #it needs to be false in case of 8 bit ZS input or output )