CMS 3D CMS Logo

CaloSimHitStudy_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 caloSimHitStudy = cms.EDAnalyzer("CaloSimHitStudy",
4  SourceLabel = cms.untracked.string('generatorSmeared'),
5  ModuleLabel = cms.untracked.string('g4SimHits'),
6  EBCollection = cms.untracked.string('EcalHitsEB'),
7  EECollection = cms.untracked.string('EcalHitsEE'),
8  ESCollection = cms.untracked.string('EcalHitsES'),
9  HCCollection = cms.untracked.string('HcalHits'),
10  MaxEnergy = cms.untracked.double(200.0),
11  TimeCut = cms.untracked.double(100.0),
12  MIPCut = cms.untracked.double(0.70),
13  StoreRL = cms.untracked.bool(False)
14 )