CMS 3D CMS Logo

SiPixelSimParameters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # This object is used to make configuration changes for different running
4 # scenarios, in this case for Run 2. See the code at the end of the
5 # SiPixelSimBlock definition.
6 
8  """
9  Function that modifies the pixel digitiser for the Phase 1 pixel detector.
10 
11  First argument is the pixelDigitizer object.
12  """
13  #use default switches, new analog respnse, d.k. 2/16
14  #digitizer.MissCalibrate = False
15  #digitizer.LorentzAngle_DB = False
16  #digitizer.killModules = False
17  #digitizer.useDB = False
18  #digitizer.DeadModules_DB = False
19  digitizer.NumPixelBarrel = cms.int32(4)
20  digitizer.NumPixelEndcap = cms.int32(3)
21  digitizer.ThresholdInElectrons_FPix = cms.double(2000.0)
22  digitizer.ThresholdInElectrons_BPix = cms.double(2000.0)
23  digitizer.ThresholdInElectrons_BPix_L1 = cms.double(3000.0)
24  digitizer.ThresholdInElectrons_BPix_L2 = cms.double(2600.0)
25  digitizer.FPix_SignalResponse_p0 = cms.double(0.00171)
26  digitizer.FPix_SignalResponse_p1 = cms.double(0.711)
27  digitizer.FPix_SignalResponse_p2 = cms.double(203.)
28  digitizer.FPix_SignalResponse_p3 = cms.double(148.)
29  digitizer.BPix_SignalResponse_p0 = cms.double(0.00171)
30  digitizer.BPix_SignalResponse_p1 = cms.double(0.711)
31  digitizer.BPix_SignalResponse_p2 = cms.double(203.)
32  digitizer.BPix_SignalResponse_p3 = cms.double(148.)
33  # gains and offsets are ints in the Clusterizer, so round to the same value
34  digitizer.ElectronsPerVcal = cms.double(47) # L2-4: 47 +- 4.7
35  digitizer.ElectronsPerVcal_L1 = cms.double(50) # L1: 49.6 +- 2.6
36  digitizer.ElectronsPerVcal_Offset = cms.double(-60) # L2-4: -60 +- 130
37  digitizer.ElectronsPerVcal_L1_Offset = cms.double(-670) # L1: -670 +- 220
38  digitizer.UseReweighting = cms.bool(True)
39  digitizer.KillBadFEDChannels = cms.bool(True)
40 
41 SiPixelSimBlock = cms.PSet(
42  SiPixelQualityLabel = cms.string(''),
43  KillBadFEDChannels = cms.bool(False),
44  UseReweighting = cms.bool(False),
45  PrintClusters = cms.bool(False),
46  PrintTemplates = cms.bool(False),
47  DoPixelAging = cms.bool(False),
48  ReadoutNoiseInElec = cms.double(350.0),
49  deltaProductionCut = cms.double(0.03),
50  RoutList = cms.vstring(
51  'TrackerHitsPixelBarrelLowTof',
52  'TrackerHitsPixelBarrelHighTof',
53  'TrackerHitsPixelEndcapLowTof',
54  'TrackerHitsPixelEndcapHighTof'),
55  OffsetSmearing = cms.double(0.0),
56  ThresholdInElectrons_FPix = cms.double(3000.0),
57  ThresholdInElectrons_BPix = cms.double(3500.0),
58  ThresholdInElectrons_BPix_L1 = cms.double(3500.0),
59  ThresholdInElectrons_BPix_L2 = cms.double(3500.0),
60  AddThresholdSmearing = cms.bool(True),
61  ThresholdSmearing_FPix = cms.double(210.0),
62  ThresholdSmearing_BPix = cms.double(245.0),
63  ThresholdSmearing_BPix_L1 = cms.double(245.0),
64  ThresholdSmearing_BPix_L2 = cms.double(245.0),
65  NoiseInElectrons = cms.double(175.0),
66  MissCalibrate = cms.bool(True),
67  FPix_SignalResponse_p0 = cms.double(0.0043),
68  FPix_SignalResponse_p1 = cms.double(1.31),
69  FPix_SignalResponse_p2 = cms.double(93.6),
70  FPix_SignalResponse_p3 = cms.double(134.6),
71  BPix_SignalResponse_p0 = cms.double(0.0035),
72  BPix_SignalResponse_p1 = cms.double(1.23),
73  BPix_SignalResponse_p2 = cms.double(97.4),
74  BPix_SignalResponse_p3 = cms.double(126.5),
75  ElectronsPerVcal = cms.double(65.5),
76  ElectronsPerVcal_L1 = cms.double(65.5),
77  ElectronsPerVcal_Offset = cms.double(-414.0),
78  ElectronsPerVcal_L1_Offset = cms.double(-414.0),
79  ElectronPerAdc = cms.double(135.0),
80  TofUpperCut = cms.double(12.5),
81  AdcFullScale = cms.int32(255),
82  TofLowerCut = cms.double(-12.5),
83  TanLorentzAnglePerTesla_FPix = cms.double(0.106),
84  TanLorentzAnglePerTesla_BPix = cms.double(0.106),
85  AddNoisyPixels = cms.bool(True),
86  Alpha2Order = cms.bool(True),
87  AddPixelInefficiency = cms.bool(True),
88  AddNoise = cms.bool(True),
89  ChargeVCALSmearing = cms.bool(True),
90  GainSmearing = cms.double(0.0),
91  PixGeometryType = cms.string('idealForDigi'),
92  useDB = cms.bool(False),
93  LorentzAngle_DB = cms.bool(True),
94  DeadModules_DB = cms.bool(True),
95  killModules = cms.bool(True),
96  NumPixelBarrel = cms.int32(3),
97  NumPixelEndcap = cms.int32(2),
98 ### DeadModules = cms.VPSet()
99 )
100 
101 # activate charge reweighing for 2016 pixel detector (UL 2016)
102 from Configuration.Eras.Modifier_pixel_2016_cff import pixel_2016
103 pixel_2016.toModify(SiPixelSimBlock,UseReweighting=True)
104 
105 #
106 # Apply the changes for the different Run 2 running scenarios
107 #
108 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
109 phase1Pixel.toModify( SiPixelSimBlock, func=_modifyPixelDigitizerForPhase1Pixel )
110 
111 # use Label 'forDigitizer' for years >= 2018
112 from CalibTracker.SiPixelESProducers.SiPixelQualityESProducer_cfi import siPixelQualityESProducer
113 from Configuration.Eras.Modifier_run2_SiPixel_2018_cff import run2_SiPixel_2018
114 run2_SiPixel_2018.toModify(siPixelQualityESProducer,siPixelQualityLabel = 'forDigitizer',)
115 run2_SiPixel_2018.toModify(SiPixelSimBlock, SiPixelQualityLabel = 'forDigitizer',)
116 
117 from Configuration.ProcessModifiers.premix_stage1_cff import premix_stage1
118 premix_stage1.toModify(SiPixelSimBlock,
119  AddNoise = True,
120  AddNoisyPixels = False,
121  AddPixelInefficiency = False, #done in second step
122  KillBadFEDChannels = False, #done in second step
123 )
124 
125 # Threshold in electrons are the Official CRAFT09 numbers:
126 # FPix(smearing)/BPix(smearing) = 2480(160)/2730(200)
127 
128 #DEAD MODULES LIST: NEW LIST AFTER 2009 PIXEL REPAIRS
129 # https://twiki.cern.ch/twiki/bin/view/CMS/SiPixelQualityHistory
130 ######Barrel
131 #Bad Module: 302055940 errorType 2 BadRocs=ff00
132 #Bad Module: 302059800 errorType 0 BadRocs=ffff
133 #BmI_SEC3_LYR2_LDR5F_MOD3 -- 302121992, "TBM-A"
134 #####Forward
135 #Bad Module: 352453892 errorType 0 BadRocs=ffff
136 #BmO_DISK1_BLD9_PNL2 -- 344014340, 344014344, 344014348
137 #Barrel
138 #302187268, "none" (ROC 6)
139 
def _modifyPixelDigitizerForPhase1Pixel(digitizer)