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