Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:11

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HGCalGeometryRotCheck(**kwargs):
0004   mod = cms.EDAnalyzer('HGCalGeometryRotCheck',
0005     detectorName = cms.string('HGCalHESiliconSensitive'),
0006     layers = cms.vint32(
0007       27,
0008       28,
0009       29,
0010       30,
0011       31,
0012       32,
0013       33
0014     ),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for k,v in kwargs.items():
0018     setattr(mod, k, v)
0019   return mod