CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
egammaSimpleAnalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # simple analyzer to make histos within a framework job off the super clusters in the event
5 # Author: Shahram Rahatlou, University of Rome & INFN
6 #
7 egammaSimpleAnalyzer = cms.EDAnalyzer("EgammaSimpleAnalyzer",
8  xMaxHist = cms.double(60.0),
9  outputFile = cms.string('egammaAnalyzer.root'),
10  #
11  # island clustering in endcap
12  #
13  islandEndcapBasicClusterProducer = cms.string('islandBasicClusters'),
14  islandEndcapSuperClusterCollection = cms.string('islandEndcapSuperClusters'),
15  islandBarrelBasicClusterShapes = cms.string('islandBarrelShape'),
16  correctedHybridSuperClusterProducer = cms.string('correctedHybridSuperClusters'),
17  islandEndcapBasicClusterCollection = cms.string('islandEndcapBasicClusters'),
18  correctedIslandEndcapSuperClusterProducer = cms.string('correctedEndcapSuperClustersWithPreshower'),
19  hybridSuperClusterCollection = cms.string(''),
20  xMinHist = cms.double(0.0),
21  islandEndcapSuperClusterProducer = cms.string('islandSuperClusters'),
22  nbinHist = cms.int32(200),
23  correctedHybridSuperClusterCollection = cms.string(''),
24  #
25  # island clustering in barrel
26  #
27  islandBarrelBasicClusterProducer = cms.string('islandBasicClusters'),
28  islandEndcapBasicClusterShapes = cms.string('islandEndcapShape'),
29  #
30  # hybrid clustering in barrel
31  #
32  hybridSuperClusterProducer = cms.string('hybridSuperClusters'),
33  islandBarrelBasicClusterCollection = cms.string('islandBarrelBasicClusters'),
34  correctedIslandEndcapSuperClusterCollection = cms.string('')
35 )
36 
37