CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
preshowerAnalyzer_cfi.py
Go to the documentation of this file.
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 # $Id: preshowerAnalyzer_cfi.py,v 1.4 2009/05/25 22:45:47 ymaravin Exp $
7 #
8 preshowerAnalyzer = cms.EDAnalyzer("PreshowerAnalyzer",
9  islandEndcapSuperClusterProducer2 = cms.string('correctedEndcapSuperClustersWithPreshower'),
10  preshCalibGamma = cms.double(0.024), ## 0.020
11 
12  outputFile = cms.string('preshowerAnalyzer.root'),
13  islandEndcapSuperClusterCollection2 = cms.string(''),
14  preshClusterCollectionY = cms.string('preshowerYClusters'),
15  preshClusterCollectionX = cms.string('preshowerXClusters'),
16  nBinSC = cms.int32(60),
17  EmaxDE = cms.double(50.0),
18  islandEndcapSuperClusterCollection1 = cms.string(''),
19  preshCalibPlaneY = cms.double(0.7),
20  preshCalibPlaneX = cms.double(1.0),
21  preshCalibMIP = cms.double(81.1e-06), ## 78.5e-6
22 
23  # building endcap association
24  islandEndcapSuperClusterProducer1 = cms.string('correctedIslandEndcapSuperClusters'),
25  EmaxSC = cms.double(300.0),
26  EminDE = cms.double(0.0),
27  nBinDE = cms.int32(25),
28  EminSC = cms.double(0.0),
29  preshClusterProducer = cms.string('correctedEndcapSuperClustersWithPreshower')
30 )
31 
32