CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
old-fu_pass.py
Go to the documentation of this file.
2 
3 process = cms.Process("HLT")
4 
5 process.options = cms.untracked.PSet(
6  Rethrow = cms.untracked.vstring('ProductNotFound','TooManyProducts','TooFewProducts'),
7  makeTriggerResults = cms.untracked.bool(True)
8  )
9 
10 process.load("FWCore.MessageLogger.MessageLogger_cfi")
11 process.MessageLogger.cerr.FwkReport.reportEvery = 180
12 
13 process.maxEvents = cms.untracked.PSet(input = cms.untracked.int32(-1))
14 
15 process.source = cms.Source("DaqSource",
16  readerPluginName = cms.untracked.string('FUShmReader'),
17  evtsPerLS = cms.untracked.uint32(1000),
18  calculateFakeLumiSection = cms.untracked.bool(True)
19  )
20 
21 process.pre1 = cms.EDFilter("Prescaler",
22  prescaleFactor = cms.int32(1),
23  prescaleOffset = cms.int32(0)
24  )
25 
26 process.pathExtractor = cms.EDAnalyzer("HLTPathAnalyzer",
27 # TriggerResults = cms.InputTag("TriggerResults::HLT"),
28  TriggerResults = cms.InputTag("TriggerResults")
29  )
30 
31 
32 
33 #process.playbackPath4DQM = cms.Path(process.pathExtractor * process.pre1)
34 process.playbackPath4DQM = cms.Path( process.pre1)
35 
36 process.hltOutputDQM = cms.OutputModule("ShmStreamConsumer",
37  max_event_size = cms.untracked.int32(7000000),
38  max_queue_depth = cms.untracked.int32(5),
39  use_compression = cms.untracked.bool(True),
40  compression_level = cms.untracked.int32(1),
41  SelectEvents = cms.untracked.PSet(
42  SelectEvents = cms.vstring('*')
43  )
44  )
45 process.hltOutputHLTDQM = cms.OutputModule("ShmStreamConsumer",
46  max_event_size = cms.untracked.int32(7000000),
47  max_queue_depth = cms.untracked.int32(5),
48  use_compression = cms.untracked.bool(True),
49  compression_level = cms.untracked.int32(1),
50  SelectEvents = cms.untracked.PSet(
51  SelectEvents = cms.vstring('*')
52  )
53  )
54 
55 process.hltOutputExpress = cms.OutputModule("ShmStreamConsumer",
56  max_event_size = cms.untracked.int32(7000000),
57  max_queue_depth = cms.untracked.int32(5),
58  use_compression = cms.untracked.bool(True),
59  compression_level = cms.untracked.int32(1),
60  SelectEvents = cms.untracked.PSet(
61  SelectEvents = cms.vstring('*')
62  )
63  )
64 
65 
66 process.e = cms.EndPath(process.hltOutputDQM*process.hltOutputHLTDQM*process.hltOutputExpress)
67 #process.f = cms.EndPath(process.hltOutputHLTDQM)
68