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.
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 preshowerAnalyzer = cms.EDAnalyzer("PreshowerAnalyzer",
8  islandEndcapSuperClusterProducer2 = cms.string('correctedEndcapSuperClustersWithPreshower'),
9  preshCalibGamma = cms.double(0.024), ## 0.020
10 
11  outputFile = cms.string('preshowerAnalyzer.root'),
12  islandEndcapSuperClusterCollection2 = cms.string(''),
13  preshClusterCollectionY = cms.string('preshowerYClusters'),
14  preshClusterCollectionX = cms.string('preshowerXClusters'),
15  nBinSC = cms.int32(60),
16  EmaxDE = cms.double(50.0),
17  islandEndcapSuperClusterCollection1 = cms.string(''),
18  preshCalibPlaneY = cms.double(0.7),
19  preshCalibPlaneX = cms.double(1.0),
20  preshCalibMIP = cms.double(81.1e-06), ## 78.5e-6
21 
22  # building endcap association
23  islandEndcapSuperClusterProducer1 = cms.string('correctedIslandEndcapSuperClusters'),
24  EmaxSC = cms.double(300.0),
25  EminDE = cms.double(0.0),
26  nBinDE = cms.int32(25),
27  EminSC = cms.double(0.0),
28  preshClusterProducer = cms.string('correctedEndcapSuperClustersWithPreshower')
29 )
30 
31