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