File indexing completed on 2022-11-25 00:27:18
0001 import FWCore.ParameterSet.Config as cms
0002
0003 materialBudgetVolumeAnalysis = cms.EDAnalyzer('MaterialBudgetVolumeAnalysis',
0004 names = cms.vstring(
0005 'BEAM',
0006 'BEAM1',
0007 'BEAM2',
0008 'BEAM3',
0009 'BEAM4',
0010 'Tracker',
0011 'ECAL',
0012 'HCal',
0013 'MUON',
0014 'VCAL',
0015 'MGNT',
0016 'OQUA',
0017 'CALOEC'
0018 ),
0019 inputTag = cms.InputTag('g4SimHits', 'MaterialInformation'),
0020 nBinEta = cms.int32(300),
0021 nBinPhi = cms.int32(180),
0022 etaLow = cms.double(-6),
0023 etaHigh = cms.double(6),
0024 mightGet = cms.optional.untracked.vstring
0025 )