CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
alcaElectronStream_cff.py
Go to the documentation of this file.
2 
3 triggerStreamResultsFilter = cms.EDFilter('TriggerResultsFilter',
4  hltResults = cms.InputTag('TriggerResults'), # HLT results - set to empty to ignore HLT
5  l1tResults = cms.InputTag(''), # L1 GT results - set to empty to ignore L1
6  l1tIgnoreMask = cms.bool(False), # use L1 mask
7  l1techIgnorePrescales = cms.bool(False), # read L1 technical bits from PSB#9, bypassing the prescales
8  daqPartitions = cms.uint32(0x01), # used by the definition of the L1 mask
9  throw = cms.bool(True), # throw exception on unknown trigger names
10  triggerConditions = cms.vstring(
11  'HLT_Ele27_eta2p1_WP85_Gsf_v1',
12  'HLT_Ele27_eta2p1_WP85_PFMET_MT50_Gsf_v1',
13  )
14 )
15 
16 
17 
18 HLTselectedElectronFEDList = cms.EDProducer("selectedElectronFEDListProducerGsf",
19  recoEcalCandidateTags = cms.VInputTag("hltEle27eta2p1WP85PFMT50PFMTFilter","hltEle27WP85GsfTrackIsoFilter"),
20  electronTags = cms.VInputTag("hltEgammaGsfElectrons"),
21  isGsfElectronCollection = cms.vint32(True),
22  beamSpotTag = cms.InputTag("hltOnlineBeamSpot"),
23  rawDataTag = cms.InputTag("rawDataCollector"),
24  HBHERecHitTag = cms.InputTag("hltHbhereco"),
25  ESLookupTable = cms.string('EventFilter/ESDigiToRaw/data/ES_lookup_table.dat'),
26  dumpSelectedEcalFed = cms.bool(True),
27  dumpSelectedSiPixelFed = cms.bool(True),
28  dumpSelectedSiStripFed = cms.bool(True),
29  dumpSelectedHCALFed = cms.bool(True),
30  dumpAllEcalFed = cms.bool(False),
31  dumpAllHcalFed = cms.bool(False),
32  dumpAllTrackerFed = cms.bool(False),
33  dPhiPixelRegion = cms.double(0.3),
34  dEtaPixelRegion = cms.double(0.3),
35  maxZPixelRegion = cms.double(24.0),
36  dRStripRegion = cms.double(0.3),
37  dRHcalRegion = cms.double(0.5),
38  outputLabelModule = cms.string('StreamElectronRawFed'),
39  addThisSelectedFEDs = cms.vint32(812,813)
40 )
41 
42 
43 streamEvents = cms.untracked.PSet(
44  SelectEvents = cms.vstring('HLT_Ele27_eta2p1_WP85_Gsf_v1', 'HLT_Ele27_eta2p1_WP85_PFMET_MT50_Gsf_v1'),
45  outputCommands = cms.untracked.vstring('drop * ',
46  'keep edmTriggerResults_*_*_*',
47  'keep *_hltL1GtObjectMap_*_*',
48  'drop *_*_*_*SIM*',
49  'keep *_HLTselectedElectronFEDList_*StreamElectronRawFed*_*',
50  'keep *_*hltFixedGridRhoFastjetAllCaloForMuons*_*_*',
51  'keep *_*hltFixedGridRhoFastjetAll_*_*',
52  'keep *_*hltPixelVerticesElectrons*_*_*',
53  'keep *_*hltPixelVertices_*_*',
54  'keep *_*hltPFMETProducer_*_*')
55 )
56 
57 
58