Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:12

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("HFSHOWERLIBRARY")
0004 
0005 process.load("FWCore.MessageService.MessageLogger_cfi")
0006 
0007 process.source = cms.Source("EmptySource")
0008 process.maxEvents = cms.untracked.PSet(input = cms.untracked.int32(1))
0009 
0010 process.TFileService = cms.Service("TFileService",fileName = cms.string('HFShowerLibrary.root') )
0011 
0012 process.photon = cms.EDAnalyzer('HcalForwardLibWriter',
0013     hcalForwardLibWriterParameters = cms.PSet(
0014     FileName = cms.FileInPath('SimG4CMS/ShowerLibraryProducer/data/fileList.txt'),
0015     Nbins = cms.int32(16),
0016     Nshowers = cms.int32(10000),
0017         BufSize = cms.int32(1),
0018         SplitLevel = cms.int32(2),
0019         CompressionAlgo = cms.int32(4),
0020         CompressionLevel = cms.int32(4)
0021     )
0022 )
0023 
0024 process.p = cms.Path(process.photon)