CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cleanAndMergeSuperClusters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 uncleanedNonDuplicatedHybridSuperClusters = cms.EDProducer("CleanAndMergeProducer",
5  # input collections:
6 
7  cleanScInputTag = cms.InputTag('hybridSuperClusters'),
8  uncleanScInputTag = cms.InputTag('uncleanedHybridSuperClusters'),
9 
10  # names of collections to be produced:
11  bcCollection = cms.string('hybridBarrelBasicClusters'),
12  scCollection = cms.string('hybridBarrelSuperClusters'),
13  refScCollection = cms.string('hybridCleanedCollectionRef'),
14  # some extras (taken from hybridSuperClusters_cfi.py )
15  ecalhitproducer = cms.string('ecalRecHit'),
16  ecalhitcollection = cms.string('EcalRecHitsEB'),
17  posCalcParameters = cms.PSet( T0_barl = cms.double(7.4),
18  T0_endc = cms.double(3.1),
19  T0_endcPresh = cms.double(1.2),
20  LogWeighted = cms.bool(True),
21  W0 = cms.double(4.2),
22  X0 = cms.double(0.89)
23  )
24 
25  )
26 
27