test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  RawDigis_On = cms.bool(False),
14  RawDigiProducer = cms.string('simSiStripDigis'),
15  RawDigiLabel = cms.string('VirginRaw'),
16 
17  Cluster_src = cms.InputTag('siStripClusters'),
18 
19  genericTriggerEventPSet = cms.PSet(),
20 
21  ModulesToBeExcluded = cms.vuint32(),
22 
23  Mod_On = cms.bool(False),
24  OffHisto_On = cms.bool(True),
25  Trend_On = cms.bool(False),
26  HistoFlag_On = cms.bool(False),
27  TkHistoMap_On = cms.bool(True),
28  clchCMoriginTkHmap_On = cms.bool(False),
29 
30  ClusterConditions = cms.PSet( On = cms.bool(False),
31  minStoN = cms.double(0.0),
32  maxStoN = cms.double(2000.0),
33  minWidth = cms.double(0.0),
34  maxWidth = cms.double(200.0)
35  ),
36 
37  TH1nClustersOn = cms.PSet( Nbinx = cms.int32(150),
38  xmin = cms.double(-0.5),
39  xmax = cms.double(2999.5)
40  ),
41 
42  TH1nClustersOff = cms.PSet( Nbinx = cms.int32(150),
43  xmin = cms.double(-0.5),
44  xmax = cms.double(19999.5)
45  ),
46 
47  TH1ClusterCharge = cms.PSet(
48  layerView = cms.bool(True),
49  ringView = cms.bool(False),
50  Nbinx = cms.int32(100),
51  xmin = cms.double(-0.5),
52  xmax = cms.double(999.5)
53  ),
54 
55  TH1ClusterStoN = cms.PSet(
56  layerView = cms.bool(True),
57  ringView = cms.bool(False),
58  Nbinx = cms.int32(100),
59  xmin = cms.double(-0.5),
60  xmax = cms.double(299.5)
61  ),
62 
63  TH1ClusterChargeCorr = cms.PSet(
64  layerView = cms.bool(True),
65  ringView = cms.bool(False),
66  Nbinx = cms.int32(100),
67  xmin = cms.double(-0.5),
68  xmax = cms.double(399.5)
69  ),
70 
71  TH1ClusterStoNCorr = cms.PSet(
72  layerView = cms.bool(True),
73  ringView = cms.bool(False),
74  Nbinx = cms.int32(100),
75  xmin = cms.double(-0.5),
76  xmax = cms.double(99.5)
77  ),
78 
79  TH1ClusterStoNCorrMod = cms.PSet(
80  Nbinx = cms.int32(50),
81  xmin = cms.double(-0.5),
82  xmax = cms.double(199.5)
83  ),
84 
85  TH1ClusterNoise = cms.PSet(
86  layerView = cms.bool(True),
87  ringView = cms.bool(False),
88  Nbinx = cms.int32(20),
89  xmin = cms.double(-0.5),
90  xmax = cms.double(9.5)
91  ),
92 
93  TH1ClusterWidth = cms.PSet(
94  layerView = cms.bool(True),
95  ringView = cms.bool(False),
96  Nbinx = cms.int32(20),
97  xmin = cms.double(-0.5),
98  xmax = cms.double(19.5)
99  ),
100 
101  TH1ClusterPos = cms.PSet(
102  layerView = cms.bool(True),
103  ringView = cms.bool(False)
104  ),
105 
106  TH1ClusterSymmEtaCC = cms.PSet( Nbinx = cms.int32(120),
107  xmin = cms.double(-0.1),
108  xmax = cms.double(1.1)
109  ),
110 
111  TH1ClusterWidthCC = cms.PSet( Nbinx = cms.int32(10),
112  xmin = cms.double(-0.5),
113  xmax = cms.double(9.5)
114  ),
115 
116  TH1ClusterEstimatorCC = cms.PSet( Nbinx = cms.int32(120),
117  xmin = cms.double(-0.1),
118  xmax = cms.double(1.1)
119  ),
120 
121  TProfileClusterPGV = cms.PSet( Nbinx = cms.int32(20),
122  xmin = cms.double(-10.0),
123  xmax = cms.double(10.0),
124  Nbiny = cms.int32(20),
125  ymin = cms.double(-0.1),
126  ymax = cms.double(1.2)
127  ),
128 
129  Trending = cms.PSet(
130  Nbins = cms.int32(2400),
131  xmin = cms.double(0.0),
132  xmax = cms.double(150)
133  ),
134 
135  TH1ClusterChargePerCM = cms.PSet(
136  layerView = cms.bool(False),
137  ringView = cms.bool(True),
138  Nbinx = cms.int32(100),
139  xmin = cms.double(-0.5),
140  xmax = cms.double(9999.5)
141  ),
142 
143  UseDCSFiltering = cms.bool(True)
144 
145  )