CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
cscUnpacker_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Import from the generic cfi file for CSC unpacking
4 from EventFilter.CSCRawToDigi.muonCSCDCCUnpacker_cfi import muonCSCDCCUnpacker
5 
6 muonCSCDigis = muonCSCDCCUnpacker.clone(
7  # This mask is needed by the examiner
8  ExaminerMask = 0x1FEBF7F6
9 )
10 
11 ## in Run-3 include GEMs
12 from Configuration.Eras.Modifier_run3_GEM_cff import run3_GEM
13 run3_GEM.toModify( muonCSCDigis,
14  useGEMs = True,
15  useCSCShowers = True
16 )