CMS 3D CMS Logo

subdetFED_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 subdetFED = cms.EDProducer("SubdetFEDSelector",
4  rawInputLabel = cms.InputTag("rawDataCollector"),
5  getSiPixel = cms.bool(True),
6  getHCAL = cms.bool(True),
7  getECAL = cms.bool(False),
8  getMuon = cms.bool(False),
9  getTrigger = cms.bool(True),
10  getSiStrip = cms.bool(False)
11 )
12 
13