CMS 3D CMS Logo

SiStripMonitorCluster_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # SiStripMonitorCluster
00004 SiStripMonitorCluster = cms.EDFilter("SiStripMonitorCluster",
00005     # by default do not write out any file with histograms
00006     # can overwrite this in .cfg file with: replace SiStripMonitorCluster.OutputMEsInRootFile = true
00007     ClusterProducer = cms.string('siStripClusters'),
00008                                      
00009     OutputMEsInRootFile = cms.bool(False),
00010     OutputFileName = cms.string('SiStripMonitorCluster.root'),
00011                                      
00012     CreateTrendMEs = cms.bool(False),
00013     ResetMEsEachRun = cms.bool(False),
00014 
00015     StripQualityLabel = cms.string(''),
00016 
00017     SelectAllDetectors = cms.bool(False),
00018     ShowMechanicalStructureView = cms.bool(True),
00019 
00020     ClusterLabel = cms.string(''),
00021 
00022     Trending = cms.PSet(
00023         UpdateMode = cms.int32(1),
00024         Nbins      = cms.int32(10),
00025         ymax       = cms.double(10000.0),
00026         Steps      = cms.int32(10),
00027         xmax       = cms.double(10.0),
00028         xmin       = cms.double(0.0),
00029         ymin       = cms.double(0.0)
00030     ),
00031     TH1ClusterNoise = cms.PSet(
00032         Nbinx          = cms.int32(20),
00033         xmin           = cms.double(-0.5),
00034         xmax           = cms.double(9.5),
00035         layerswitchon  = cms.bool(True),
00036         moduleswitchon = cms.bool(True)
00037     ),
00038 
00039     TH1NrOfClusterizedStrips = cms.PSet(
00040         Nbinx          = cms.int32(20),
00041         xmin           = cms.double(-0.5),
00042         xmax           = cms.double(99.5),
00043         layerswitchon  = cms.bool(True),
00044         moduleswitchon = cms.bool(True)
00045     ),
00046     TH1ClusterPos = cms.PSet(
00047         Nbinx          = cms.int32(768),
00048         xmin           = cms.double(-0.5),
00049         xmax           = cms.double(767.5),
00050         layerswitchon  = cms.bool(False),
00051         moduleswitchon = cms.bool(True)
00052     ),
00053     TH1ModuleLocalOccupancy = cms.PSet(
00054         Nbinx          = cms.int32(20),
00055         xmin           = cms.double(-0.5),
00056         xmax           = cms.double(0.95),
00057         layerswitchon  = cms.bool(True),
00058         moduleswitchon = cms.bool(True)
00059     ),
00060     TH1nClusters = cms.PSet(
00061         Nbinx          = cms.int32(11),
00062         xmin           = cms.double(-0.5),
00063         xmax           = cms.double(10.5),
00064         layerswitchon  = cms.bool(False),
00065         moduleswitchon = cms.bool(True)
00066     ),
00067     TH1ClusterStoN = cms.PSet(
00068         Nbinx          = cms.int32(100),
00069         xmin           = cms.double(-0.5),
00070         xmax           = cms.double(299.5),
00071         layerswitchon  = cms.bool(False),
00072         moduleswitchon = cms.bool(True)
00073     ),
00074     TH1ClusterStoNVsPos = cms.PSet(
00075         Nbinx          = cms.int32(768),
00076         xmin           = cms.double(-0.5),
00077         xmax           = cms.double(767.5),
00078         Nbiny          = cms.int32(100),
00079         ymin           = cms.double(-0.5),
00080         ymax           = cms.double(299.5),
00081         layerswitchon  = cms.bool(False),
00082         moduleswitchon = cms.bool(False)
00083     ),
00084     TH1ClusterCharge = cms.PSet(
00085         Nbinx          = cms.int32(200),
00086         xmin           = cms.double(-0.5),        
00087         xmax           = cms.double(799.5),
00088         layerswitchon  = cms.bool(True),
00089         moduleswitchon = cms.bool(True)
00090     ),
00091     TH1ClusterWidth = cms.PSet(
00092         Nbinx          = cms.int32(20),
00093         xmin           = cms.double(-0.5),
00094         xmax           = cms.double(19.5),
00095         layerswitchon  = cms.bool(True),        
00096         moduleswitchon = cms.bool(True)
00097     ),
00098 
00099     TProfNumberOfCluster = cms.PSet(
00100         Nbinx            = cms.int32(100),
00101         xmin             = cms.double(-0.5),
00102         xmax             = cms.double(499.5),
00103         layerswitchon    = cms.bool(True),        
00104         moduleswitchon   = cms.bool(False)        
00105     ),
00106       
00107     TProfClusterWidth    = cms.PSet(
00108         Nbinx            = cms.int32(100),
00109         xmin             = cms.double(-0.5),
00110         xmax             = cms.double(499.5),
00111         layerswitchon    = cms.bool(True),        
00112         moduleswitchon   = cms.bool(False)        
00113     ),
00114                                      
00115     ClusterConditions = cms.PSet(
00116         minWidth   = cms.double(0.0),
00117         On         = cms.bool(True),
00118         maxStoN    = cms.double(10000.0),
00119         minStoN    = cms.double(0.0),
00120         maxWidth   = cms.double(10000.0)
00121     ),
00122     TProfTotalNumberOfClusters = cms.PSet(
00123         Nbins = cms.int32(600),
00124         xmin = cms.double(0.0),
00125         xmax = cms.double(1.0*60*60),
00126         ymin = cms.double(0.0),
00127         ymax = cms.double(1000000.0),
00128         subdetswitchon = cms.bool(False)
00129     ),
00130                                      
00131     #select detectors
00132     detectorson = cms.PSet(
00133         tidon = cms.bool(True),
00134         tibon = cms.bool(True),
00135         tecon = cms.bool(True),
00136         tobon = cms.bool(True)
00137     ),
00138 
00139     Mod_On = cms.bool(True),
00140 
00141     ShowControlView = cms.bool(False),
00142     ShowReadoutView = cms.bool(False)
00143 )

Generated on Tue Jun 9 17:33:37 2009 for CMSSW by  doxygen 1.5.4