CMS 3D CMS Logo

HLTDummyCollections_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #out of data interface
4 #hltDummyEcalRawToRecHitFacility = cms.EDProducer("HLTDummyCollections",
5 # action = cms.string("doEcal"),
6 # UnpackZDC = cms.bool(False), # not actually needed here
7 # ESdigiCollection = cms.string( "" ) # not actually needed here
8 #)
9 
10 hltDummyHcalDigis = cms.EDProducer("HLTDummyCollections",
11  action = cms.string("doHcal"),
12  UnpackZDC = cms.bool(True),
13  ESdigiCollection = cms.string( "" ) # not actually needed here
14 )
15 
16 hltDummyEcalPreshowerDigis = cms.EDProducer("HLTDummyCollections",
17  action = cms.string("doEcalPreshower"),
18  UnpackZDC = cms.bool(False), # not actually needed here
19  ESdigiCollection = cms.string( "" )
20 )
21 
22 hltDummyMuonDTDigis = cms.EDProducer("HLTDummyCollections",
23  action = cms.string("doMuonDT"),
24  UnpackZDC = cms.bool(False), # not actually needed here
25  ESdigiCollection = cms.string( "" ) # not actually needed here
26 )
27 
28 hltDummyMuonCSCDigis = cms.EDProducer("HLTDummyCollections",
29  action = cms.string("doMuonCSC"),
30  UnpackZDC = cms.bool(False), # not actually needed here
31  ESdigiCollection = cms.string( "" ) # not actually needed here
32 )
33 
34 hltDummySiPixelDigis = cms.EDProducer("HLTDummyCollections",
35  action = cms.string("doSiPixel"),
36  UnpackZDC = cms.bool(False), # not actually needed here
37  ESdigiCollection = cms.string( "" ) # not actually needed here
38 )
39 
40 hltDummySiStripRawToClustersFacility = cms.EDProducer("HLTDummyCollections",
41  action = cms.string("doSiStrip"),
42  UnpackZDC = cms.bool(False), # not actually needed here
43  ESdigiCollection = cms.string( "" ) # not actually needed here
44 )
45 
46 hltDummyGctDigis = cms.EDProducer("HLTDummyCollections",
47  action = cms.string("doGCT"),
48  UnpackZDC = cms.bool(False), # not actually needed here
49  ESdigiCollection = cms.string( "" ) # not actually needed here
50 )
51 
52 
53 hltDummyL1GtObjectMap = cms.EDProducer("HLTDummyCollections",
54  action = cms.string("doObjectMap"),
55  UnpackZDC = cms.bool(False), # not actually needed here
56  ESdigiCollection = cms.string( "" ) # not actually needed here
57 )
58 
59 
60 
61 
62