CMS 3D CMS Logo

calocandidatemaker_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 caloTowerCandidates = cms.EDProducer("CaloTowerCandidateCreator",
4  src = cms.InputTag("towermaker"),
5  # Minimum transverse energy for the tower to be converted to a candidate (GeV)
6  minimumEt = cms.double(-1.0),
7  # Minimum energy for the tower to be converted to a candidate (GeV)
8  minimumE = cms.double(-1.0)
9 )
10 
11