CMS 3D CMS Logo

egammaBCAnalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # Author: Michael A. Balazs, University of Virginia
5 #
7 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
8 egammaBasicClusterAnalyzer = DQMEDAnalyzer('EgammaBasicClusters',
9  VerificationCommonParameters,
10  endcapBasicClusterCollection = cms.InputTag("multi5x5SuperClusters","multi5x5EndcapBasicClusters"),
11  barrelBasicClusterCollection = cms.InputTag("hybridSuperClusters","hybridBarrelBasicClusters"),
12  hist_bins_Size = cms.int32(20),
13  hist_min_Size = cms.double(0.0),
14  hist_max_Size = cms.double(20.0),
15  hist_bins_Phi = cms.int32(181),
16  hist_min_Phi = cms.double(-3.14159),
17  hist_max_Phi = cms.double(3.14159),
18  hist_bins_Eta = cms.int32(91),
19  hist_min_Eta = cms.double(-2.5),
20  hist_max_Eta = cms.double(2.5),
21  hist_bins_ET = cms.int32(200),
22  hist_min_ET = cms.double(0.0),
23  hist_max_ET = cms.double(200.0),
24  hist_bins_NumRecHits = cms.int32(50),
25  hist_min_NumRecHits = cms.double(0.0),
26  hist_max_NumRecHits = cms.double(50.0),
27  hist_bins_R = cms.int32(55),
28  hist_min_R = cms.double(0.0),
29  hist_max_R = cms.double(175.0)
30 
31 
32 )
33 
34 
35