CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/Validation/EcalClusters/python/egammaBCAnalyzer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 #  Author: Michael A. Balazs, University of Virginia
00005 #  $Id: egammaBCAnalyzer_cfi.py,v 1.7 2011/05/25 19:24:17 argiro Exp $
00006 #
00007 from Validation.EcalClusters.VerificationCommonParameters_cfi import *
00008 egammaBasicClusterAnalyzer = cms.EDAnalyzer("EgammaBasicClusters",
00009     VerificationCommonParameters,
00010     endcapBasicClusterCollection = cms.InputTag("multi5x5SuperClusters","multi5x5EndcapBasicClusters"),
00011     barrelBasicClusterCollection = cms.InputTag("hybridSuperClusters","hybridBarrelBasicClusters"),
00012     hist_bins_Size = cms.int32(20),
00013     hist_min_Size = cms.double(0.0),
00014     hist_max_Size = cms.double(20.0),
00015     hist_bins_Phi = cms.int32(181),
00016     hist_min_Phi = cms.double(-3.14159),
00017     hist_max_Phi = cms.double(3.14159),
00018     hist_bins_Eta = cms.int32(91),
00019     hist_min_Eta = cms.double(-2.5),
00020     hist_max_Eta = cms.double(2.5),
00021     hist_bins_ET = cms.int32(200),
00022     hist_min_ET = cms.double(0.0),
00023     hist_max_ET = cms.double(200.0),
00024     hist_bins_NumRecHits = cms.int32(50),
00025     hist_min_NumRecHits = cms.double(0.0),
00026     hist_max_NumRecHits = cms.double(50.0),
00027     hist_bins_R = cms.int32(55),
00028     hist_min_R = cms.double(0.0),
00029     hist_max_R = cms.double(175.0)    
00030     
00031 
00032 )
00033 
00034 
00035