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.
2 
3 # MonitorTrackGlobal
4 SiStripMonitorTrack = cms.EDAnalyzer(
5  "SiStripMonitorTrack",
6 
7  TrackProducer = cms.string('generalTracks'),
8  TrackLabel = cms.string(''),
9  TrajectoryInEvent = cms.bool(True),
10  AlgoName = cms.string('GenTk'),
11 
12  RawDigis_On = cms.bool(False),
13  RawDigiProducer = cms.string('simSiStripDigis'),
14  RawDigiLabel = cms.string('VirginRaw'),
15 
16  OutputMEsInRootFile = cms.bool(False),
17  OutputFileName = cms.string('test_monitortrackparameters_rs.root'),
18 
19  Cluster_src = cms.InputTag('siStripClusters'),
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  RingFlag_On = cms.bool(False),
28  TkHistoMap_On = cms.bool(True),
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(100),
38  xmin = cms.double(-0.5),
39  xmax = cms.double(1999.5)
40  ),
41 
42  TH1nClustersOff = cms.PSet( Nbinx = cms.int32(200),
43  xmin = cms.double(-0.5),
44  xmax = cms.double(3999.5)
45  ),
46 
47  TH1ClusterCharge = cms.PSet( Nbinx = cms.int32(100),
48  xmin = cms.double(-0.5),
49  xmax = cms.double(999.5)
50  ),
51 
52  TH1ClusterStoN = cms.PSet( Nbinx = cms.int32(100),
53  xmin = cms.double(-0.5),
54  xmax = cms.double(299.5)
55  ),
56 
57  TH1ClusterChargeCorr = cms.PSet( Nbinx = cms.int32(100),
58  xmin = cms.double(-0.5),
59  xmax = cms.double(399.5)
60  ),
61 
62  TH1ClusterStoNCorr = cms.PSet( Nbinx = cms.int32(200),
63  xmin = cms.double(-0.5),
64  xmax = cms.double(199.5)
65  ),
66  TH1ClusterStoNCorrMod = cms.PSet( Nbinx = cms.int32(50),
67  xmin = cms.double(-0.5),
68  xmax = cms.double(199.5)
69  ),
70 
71  TH1ClusterNoise = cms.PSet( Nbinx = cms.int32(20),
72  xmin = cms.double(-0.5),
73  xmax = cms.double(9.5)
74  ),
75 
76  TH1ClusterWidth = cms.PSet( Nbinx = cms.int32(20),
77  xmin = cms.double(-0.5),
78  xmax = cms.double(19.5)
79  ),
80 
81  TH1ClusterSymmEtaCC = cms.PSet( Nbinx = cms.int32(120),
82  xmin = cms.double(-0.1),
83  xmax = cms.double(1.1)
84  ),
85 
86  TH1ClusterWidthCC = cms.PSet( Nbinx = cms.int32(10),
87  xmin = cms.double(-0.5),
88  xmax = cms.double(9.5)
89  ),
90 
91  TH1ClusterEstimatorCC = cms.PSet( Nbinx = cms.int32(120),
92  xmin = cms.double(-0.1),
93  xmax = cms.double(1.1)
94  ),
95 
96  TProfileClusterPGV = cms.PSet( Nbinx = cms.int32(20),
97  xmin = cms.double(-10.0),
98  xmax = cms.double(10.0),
99  Nbiny = cms.int32(20),
100  ymin = cms.double(-0.1),
101  ymax = cms.double(1.2)
102  ),
103 
104  Trending = cms.PSet( Nbins = cms.int32(10),
105  Steps = cms.int32(5),
106  UpdateMode = cms.int32(1)
107  ),
108 
109  UseDCSFiltering = cms.bool(True)
110 
111  )