CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/RecoEcal/EgammaClusterProducers/python/preshowerAnalyzer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 #  simple analyzer to make histos within a framework job off the super clusters in the event
00005 #  Author: Shahram Rahatlou, University of Rome & INFN
00006 #  $Id: preshowerAnalyzer_cfi.py,v 1.4 2009/05/25 22:45:47 ymaravin Exp $
00007 #
00008 PreshowerAnalyzer = cms.EDAnalyzer("PreshowerAnalyzer",
00009     islandEndcapSuperClusterProducer2 = cms.string('correctedEndcapSuperClustersWithPreshower'),
00010     preshCalibGamma = cms.double(0.024), ## 0.020
00011 
00012     outputFile = cms.string('PreshowerAnalyzer.root'),
00013     islandEndcapSuperClusterCollection2 = cms.string(''),
00014     preshClusterCollectionY = cms.string('preshowerYClusters'),
00015     preshClusterCollectionX = cms.string('preshowerXClusters'),
00016     nBinSC = cms.int32(60),
00017     EmaxDE = cms.double(50.0),
00018     islandEndcapSuperClusterCollection1 = cms.string(''),
00019     preshCalibPlaneY = cms.double(0.7),
00020     preshCalibPlaneX = cms.double(1.0),
00021     preshCalibMIP = cms.double(81.1e-06), ## 78.5e-6 
00022 
00023     # building endcap association
00024     islandEndcapSuperClusterProducer1 = cms.string('correctedIslandEndcapSuperClusters'),
00025     EmaxSC = cms.double(300.0),
00026     EminDE = cms.double(0.0),
00027     nBinDE = cms.int32(25),
00028     EminSC = cms.double(0.0),
00029     preshClusterProducer = cms.string('correctedEndcapSuperClustersWithPreshower')
00030 )
00031 
00032