Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:32

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("uncalibRecHitProd")
0004 # initialize  MessageLogger
0005 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0006 
0007 # ECAL TBReco sequence 
0008 process.load("Configuration.EcalTB.localReco_tbsim_cff")
0009 
0010 process.maxEvents = cms.untracked.PSet(
0011     input = cms.untracked.int32(-1)
0012 )
0013 process.source = cms.Source("PoolSource",
0014     fileNames = cms.untracked.vstring('file:ECALH4TB_detsim_digi.root')
0015 )
0016 
0017 process.out = cms.OutputModule("PoolOutputModule",
0018     fileName = cms.untracked.string('ECALH4TB_detsim_hits.root')
0019 )
0020 
0021 process.p = cms.Path(process.localReco_tbsim)
0022 process.e = cms.EndPath(process.out)
0023