CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ALCARECOSiStripCalMinBiasDQMHI_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
3 import DQMOffline.Alignment.TkAlCaRecoMonitor_cfi
4 
5 #---------------
6 # AlCaReco DQM #
7 #---------------
8 
9 __selectionName = 'SiStripCalMinBias'
10 ALCARECOSiStripCalMinBiasTrackingDQM = DQM.TrackingMonitor.TrackingMonitor_cfi.TrackMon.clone(
11 #names and desigantions
12  TrackProducer = 'ALCARECO'+__selectionName,
13  SeedProducer = 'hiPixelTrackSeeds',
14  TCProducer = 'hiPrimTrackCandidates',
15  AlgoName = 'ALCARECO'+__selectionName,
16  FolderName = "AlCaReco/"+__selectionName,
17  BSFolderName = "AlCaReco/"+__selectionName+"/BeamSpot",
18  primaryVertex = "hiSelectedVertex",
19  allTrackProducer = "hiGeneralTracks",
20 # margins and settings
21  TkSizeBin = 300,
22  TkSizeMin = -0.5,
23  TkSizeMax = 299.5,
24  TrackPtMax = 30
25 )
26 
27 ALCARECOSiStripCalMinBiasTrackerDQM = DQMOffline.Alignment.TkAlCaRecoMonitor_cfi.TkAlCaRecoMonitor.clone(
28 #names and desigantions
29  TrackProducer = 'ALCARECO'+__selectionName,
30  AlgoName = 'ALCARECO'+__selectionName,
31  FolderName = "AlCaReco/"+__selectionName,
32  ReferenceTrackProducer = 'hiGeneralTracks',
33 # margins and settings
34  fillInvariantMass = False,
35  TrackPtMax = 30,
36  SumChargeBin = 101,
37  SumChargeMin = -50.5,
38  SumChargeMax = 50.5
39 )
40 
41 
42 #------------
43 # Sequence #
44 #------------
45 
46 ALCARECOSiStripCalMinBiasDQM = cms.Sequence( ALCARECOSiStripCalMinBiasTrackingDQM + ALCARECOSiStripCalMinBiasTrackerDQM)