CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
gsSimpleFixedPhotons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #this does the simple fix (replace the crystals, assume fraction of 1)
4 gsSimpleFixedPhotons = cms.EDProducer("PhotonGSCrysSimpleFixer",
5  oldPhos = cms.InputTag("gedPhotons"),
6  ebMultiRecHits = cms.InputTag("reducedEcalRecHitsEB"),
7  ebMultiAndWeightsRecHits = cms.InputTag("ecalMultiAndGSGlobalRecHitEB"),
8  energyTypesToFix = cms.vstring("ecal_standard","ecal_photons","regression1","regression2"),
9  energyTypeForP4 = cms.string("regression2")
10 )
11