CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DQM/SiStripMonitorTrack/python/SiStripMonitorTrack_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # MonitorTrackGlobal
00004 SiStripMonitorTrack = cms.EDAnalyzer(
00005     "SiStripMonitorTrack",
00006     
00007     TrackProducer = cms.string('generalTracks'),
00008     TrackLabel    = cms.string(''),
00009     TrajectoryInEvent = cms.bool(True),
00010     AlgoName      = cms.string('GenTk'),
00011     
00012     RawDigis_On     = cms.bool(False),
00013     RawDigiProducer = cms.string('simSiStripDigis'),
00014     RawDigiLabel    = cms.string('VirginRaw'),
00015     
00016     OutputMEsInRootFile = cms.bool(False),
00017     OutputFileName = cms.string('test_monitortrackparameters_rs.root'),    
00018     
00019     Cluster_src = cms.InputTag('siStripClusters'),
00020     
00021     ModulesToBeExcluded = cms.vuint32(),
00022     
00023     Mod_On        = cms.bool(False),
00024     OffHisto_On   = cms.bool(True),
00025     Trend_On      = cms.bool(False),
00026     HistoFlag_On  = cms.bool(False),
00027     RingFlag_On   = cms.bool(False),
00028     TkHistoMap_On = cms.bool(True),   
00029     
00030     ClusterConditions = cms.PSet( On       = cms.bool(False),
00031                                   minStoN  = cms.double(0.0),
00032                                   maxStoN  = cms.double(2000.0),
00033                                   minWidth = cms.double(0.0),
00034                                   maxWidth = cms.double(200.0)
00035                                   ),
00036     
00037     TH1nClustersOn = cms.PSet( Nbinx = cms.int32(100),
00038                              xmin  = cms.double(-0.5),
00039                              xmax  = cms.double(1999.5),
00040                              layerswitchon  = cms.bool(True)
00041                              ),   
00042 
00043     TH1nClustersOff = cms.PSet( Nbinx = cms.int32(200),
00044                              xmin  = cms.double(-0.5),
00045                              xmax  = cms.double(8999.5),
00046                              layerswitchon  = cms.bool(True)
00047                              ),
00048     
00049     TH1ClusterCharge = cms.PSet( Nbinx = cms.int32(100),
00050                                  xmin  = cms.double(-0.5),
00051                                  xmax  = cms.double(999.5),
00052                                  layerswitchon  = cms.bool(True)
00053                                  ),
00054     
00055     TH1ClusterStoN = cms.PSet( Nbinx = cms.int32(100),
00056                                xmin  = cms.double(-0.5),
00057                                xmax  = cms.double(299.5),
00058                                layerswitchon  = cms.bool(True)
00059                                ),
00060     
00061     TH1ClusterChargeCorr = cms.PSet( Nbinx = cms.int32(100),
00062                                      xmin  = cms.double(-0.5),
00063                                      xmax  = cms.double(399.5),
00064                                      layerswitchon  = cms.bool(True)
00065                                      ),
00066     
00067     TH1ClusterStoNCorr = cms.PSet( Nbinx = cms.int32(200),
00068                                    xmin  = cms.double(-0.5),
00069                                    xmax  = cms.double(199.5),
00070                                    layerswitchon  = cms.bool(True),
00071                                    globalswitchon = cms.bool(True)
00072                                    ),
00073     TH1ClusterStoNCorrMod = cms.PSet( Nbinx = cms.int32(50),
00074                                    xmin  = cms.double(-0.5),
00075                                    xmax  = cms.double(199.5)
00076                                    ),
00077     
00078     TH1ClusterNoise = cms.PSet( Nbinx = cms.int32(20),
00079                                 xmin  = cms.double(-0.5),
00080                                 xmax  = cms.double(9.5),
00081                                 layerswitchon  = cms.bool(True)
00082                                 ),
00083     
00084     TH1ClusterWidth = cms.PSet( Nbinx = cms.int32(20),
00085                                 xmin  = cms.double(-0.5),
00086                                 xmax  = cms.double(19.5),
00087                                 layerswitchon  = cms.bool(True)
00088                                 ),
00089     
00090     TH1ClusterSymmEtaCC = cms.PSet( Nbinx = cms.int32(120),
00091                                     xmin  = cms.double(-0.1),
00092                                     xmax  = cms.double(1.1)
00093                                     ),
00094     
00095     TH1ClusterWidthCC = cms.PSet( Nbinx = cms.int32(10),
00096                                   xmin  = cms.double(-0.5),
00097                                   xmax  = cms.double(9.5)
00098                                   ),
00099     
00100     TH1ClusterEstimatorCC = cms.PSet( Nbinx = cms.int32(120),
00101                                       xmin  = cms.double(-0.1),
00102                                       xmax  = cms.double(1.1)
00103                                       ),
00104     
00105     TProfileClusterPGV = cms.PSet( Nbinx = cms.int32(20),
00106                                    xmin = cms.double(-10.0),
00107                                    xmax = cms.double(10.0),
00108                                    Nbiny = cms.int32(20),
00109                                    ymin = cms.double(-0.1),
00110                                    ymax = cms.double(1.2)
00111                                    ),
00112     
00113     Trending = cms.PSet( Nbins      = cms.int32(10),
00114                          Steps      = cms.int32(5),
00115                          UpdateMode = cms.int32(1)
00116                          ),
00117 
00118     UseDCSFiltering = cms.bool(True)
00119     
00120     )