CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ALCARECOSiStripCalZeroBias_cff.py
Go to the documentation of this file.
2 
3 # Set the HLT paths
5 ALCARECOSiStripCalZeroBiasHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
6  andOr = True, # choose logical OR between Triggerbits
7 # HLTPaths = [
8 # #SiStripCalZeroBias
9 # "HLT_ZeroBias",
10 # #Random Trigger for Cosmic Runs
11 # 'RandomPath'
12 # ],
13  eventSetupPathsKey='SiStripCalZeroBias',
14  throw = False # tolerate triggers stated above, but not available
15 )
16 
17 # Select only events where tracker had HV on (according to DCS bit information)
18 # AND respective partition is in the run (according to FED information)
19 import CalibTracker.SiStripCommon.SiStripDCSFilter_cfi
20 DCSStatusForSiStripCalZeroBias = CalibTracker.SiStripCommon.SiStripDCSFilter_cfi.siStripDCSFilter.clone()
21 
22 # Include masking only from Cabling and O2O
24 siStripQualityESProducerUnbiased = CalibTracker.SiStripESProducers.SiStripQualityESProducer_cfi.siStripQualityESProducer.clone()
25 siStripQualityESProducerUnbiased.appendToDataLabel = 'unbiased'
26 siStripQualityESProducerUnbiased.ListOfRecordToMerge = cms.VPSet(
27  cms.PSet(
28  record = cms.string( 'SiStripDetCablingRcd' ), # bad components from cabling
29  tag = cms.string( '' )
30  ),
31  cms.PSet(
32  record = cms.string( 'SiStripBadChannelRcd' ), # bad components from O2O
33  tag = cms.string( '' )
34  )
35 )
36 
37 
38 # Clusterizer #
40 
41 ZeroBiasClusterizer = cms.PSet(
42  Algorithm = cms.string('ThreeThresholdAlgorithm'),
43  ChannelThreshold = cms.double(2.0),
44  SeedThreshold = cms.double(3.0),
45  ClusterThreshold = cms.double(5.0),
46  MaxSequentialHoles = cms.uint32(0),
47  MaxSequentialBad = cms.uint32(1),
48  MaxAdjacentBad = cms.uint32(0),
49  QualityLabel = cms.string('unbiased'),
50  RemoveApvShots = cms.bool(True)
51  )
52 
53 
54 calZeroBiasClusters = RecoLocalTracker.SiStripClusterizer.SiStripClusterizer_cfi.siStripClusters.clone()
55 calZeroBiasClusters.Clusterizer = ZeroBiasClusterizer
56 
57 # Not persistent collections needed by the filters in the AlCaReco DQM
60 
61 # SiStripQuality (only to test the different data labels)#
62 qualityStatistics = cms.EDAnalyzer("SiStripQualityStatistics",
63  TkMapFileName = cms.untracked.string(''),
64  dataLabel = cms.untracked.string('unbiased')
65 )
66 
67 # Sequence #
68 seqALCARECOSiStripCalZeroBias = cms.Sequence(ALCARECOSiStripCalZeroBiasHLT*DCSStatusForSiStripCalZeroBias*calZeroBiasClusters*APVPhases*consecutiveHEs)