Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:18

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def MaterialBudgetVolumeAnalysis(*args, **kwargs):
0004   mod = cms.EDAnalyzer('MaterialBudgetVolumeAnalysis',
0005     names = cms.vstring(
0006       'BEAM',
0007       'BEAM1',
0008       'BEAM2',
0009       'BEAM3',
0010       'BEAM4',
0011       'Tracker',
0012       'ECAL',
0013       'HCal',
0014       'MUON',
0015       'VCAL',
0016       'MGNT',
0017       'OQUA',
0018       'CALOEC',
0019       'HFNoseVol'
0020     ),
0021     inputTag = cms.InputTag('g4SimHits', 'MaterialInformation'),
0022     nBinEta = cms.int32(300),
0023     nBinPhi = cms.int32(180),
0024     etaLow = cms.double(-6),
0025     etaHigh = cms.double(6),
0026     mightGet = cms.optional.untracked.vstring
0027   )
0028   for a in args:
0029     mod.update_(a)
0030   mod.update_(kwargs)
0031   return mod