CMS 3D CMS Logo

SiStripMonitorTrack_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # MonitorTrackGlobal
4 SiStripMonitorTrack = cms.EDAnalyzer(
5  "SiStripMonitorTrack",
6 
7  TopFolderName = cms.string('SiStrip'),
8  TrackProducer = cms.string('generalTracks'),
9  TrackLabel = cms.string(''),
10  TrajectoryInEvent = cms.bool(True),
11  AlgoName = cms.string('GenTk'),
12 
13  ADCDigi_src = cms.InputTag('siStripDigis','ZeroSuppressed'),
14  Cluster_src = cms.InputTag('siStripClusters'),
15 
16  genericTriggerEventPSet = cms.PSet(),
17 
18  ModulesToBeExcluded = cms.vuint32(),
19 
20  Mod_On = cms.bool(False),
21  OffHisto_On = cms.bool(True),
22  Trend_On = cms.bool(False),
23  HistoFlag_On = cms.bool(False),
24  TkHistoMap_On = cms.bool(True),
25  clchCMoriginTkHmap_On = cms.bool(False),
26  ClusterConditions = cms.PSet( On = cms.bool(False),
27  minStoN = cms.double(0.0),
28  maxStoN = cms.double(2000.0),
29  minWidth = cms.double(0.0),
30  maxWidth = cms.double(200.0)
31  ),
32 
33  TH1nClustersOn = cms.PSet( Nbinx = cms.int32(150),
34  xmin = cms.double(-0.5),
35  xmax = cms.double(2999.5)
36  ),
37 
38  TH1nClustersOff = cms.PSet( Nbinx = cms.int32(150),
39  xmin = cms.double(-0.5),
40  xmax = cms.double(19999.5)
41  ),
42 
43  TH1ClusterGain = cms.PSet(
44  layerView = cms.bool(True),
45  ringView = cms.bool(False),
46  Nbinx = cms.int32(100),
47  xmin = cms.double(-0.5),
48  xmax = cms.double(3.5)
49  ),
50 
51  TH1ClusterCharge = cms.PSet(
52  layerView = cms.bool(True),
53  ringView = cms.bool(False),
54  Nbinx = cms.int32(100),
55  xmin = cms.double(-0.5),
56  xmax = cms.double(999.5)
57  ),
58 
59  TH1ClusterChargeRaw = cms.PSet(
60  layerView = cms.bool(True),
61  ringView = cms.bool(False),
62  Nbinx = cms.int32(100),
63  xmin = cms.double(-0.5),
64  xmax = cms.double(999.5)
65  ),
66 
67  TH1ClusterStoN = cms.PSet(
68  layerView = cms.bool(True),
69  ringView = cms.bool(False),
70  Nbinx = cms.int32(100),
71  xmin = cms.double(-0.5),
72  xmax = cms.double(299.5)
73  ),
74 
75  TH1ClusterChargeCorr = cms.PSet(
76  layerView = cms.bool(True),
77  ringView = cms.bool(False),
78  Nbinx = cms.int32(100),
79  xmin = cms.double(-0.5),
80  xmax = cms.double(399.5)
81  ),
82 
83  TH1ClusterStoNCorr = cms.PSet(
84  layerView = cms.bool(True),
85  ringView = cms.bool(False),
86  Nbinx = cms.int32(100),
87  xmin = cms.double(-0.5),
88  xmax = cms.double(99.5)
89  ),
90 
91  TH1ClusterStoNCorrMod = cms.PSet(
92  Nbinx = cms.int32(50),
93  xmin = cms.double(-0.5),
94  xmax = cms.double(199.5)
95  ),
96 
97  TH1ClusterNoise = cms.PSet(
98  layerView = cms.bool(True),
99  ringView = cms.bool(False),
100  Nbinx = cms.int32(20),
101  xmin = cms.double(-0.5),
102  xmax = cms.double(9.5)
103  ),
104 
105  TH1ClusterWidth = cms.PSet(
106  layerView = cms.bool(True),
107  ringView = cms.bool(False),
108  Nbinx = cms.int32(20),
109  xmin = cms.double(-0.5),
110  xmax = cms.double(19.5)
111  ),
112 
113  TH1ClusterPos = cms.PSet(
114  layerView = cms.bool(True),
115  ringView = cms.bool(False),
116  ),
117 
118  TH1ClusterSymmEtaCC = cms.PSet( Nbinx = cms.int32(120),
119  xmin = cms.double(-0.1),
120  xmax = cms.double(1.1)
121  ),
122 
123  TH1ClusterWidthCC = cms.PSet( Nbinx = cms.int32(10),
124  xmin = cms.double(-0.5),
125  xmax = cms.double(9.5)
126  ),
127 
128  TH1ClusterEstimatorCC = cms.PSet( Nbinx = cms.int32(120),
129  xmin = cms.double(-0.1),
130  xmax = cms.double(1.1)
131  ),
132 
133  TProfileClusterPGV = cms.PSet( Nbinx = cms.int32(20),
134  xmin = cms.double(-10.0),
135  xmax = cms.double(10.0),
136  Nbiny = cms.int32(20),
137  ymin = cms.double(-0.1),
138  ymax = cms.double(1.2)
139  ),
140 
141  Trending = cms.PSet(
142  Nbins = cms.int32(2400),
143  xmin = cms.double(0.0),
144  xmax = cms.double(150)
145  ),
146 
147  TH1ClusterChargePerCM = cms.PSet(
148  layerView = cms.bool(False),
149  ringView = cms.bool(True),
150  Nbinx = cms.int32(100),
151  xmin = cms.double(-0.5),
152  xmax = cms.double(9999.5)
153  ),
154 
155  UseDCSFiltering = cms.bool(True)
156 
157  )