Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Import from the generic cfi file for CSC unpacking
0004 from EventFilter.CSCRawToDigi.muonCSCDCCUnpacker_cfi import muonCSCDCCUnpacker
0005 
0006 muonCSCDigis = muonCSCDCCUnpacker.clone(
0007     # This mask is needed by the examiner
0008     ExaminerMask = 0x1FEBF7F6
0009 )
0010 
0011 ## in Run-3 include GEMs
0012 from Configuration.Eras.Modifier_run3_GEM_cff import run3_GEM
0013 run3_GEM.toModify( muonCSCDigis,
0014                    useGEMs = True,
0015                    useCSCShowers = True
0016 )