CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dqmCollector_cff.py
Go to the documentation of this file.
2 
5 
6 #pf DATA collector
7 bTagCollectorDATA = bTagAnalysis.clone()
8 # module execution
9 bTagCollectorSequenceDATA = cms.Sequence(bTagCollectorDATA)
10 bTagCollectorDATA.ptRanges = cms.vdouble(0.0)
11 bTagCollectorDATA.finalizePlots = True
12 bTagCollectorDATA.finalizeOnly = True
13 
14 
15 #pf MC collector
16 bTagCollectorMC = bTagAnalysis.clone(
17  finalizePlots = True,
18  finalizeOnly = True,
19  mcPlots = 2, #harvest all, b, c, dusg and ni histos
20  ptRanges = cms.vdouble(0.0),
21  etaRanges = cms.vdouble(0.0),
22 )
23 # module execution
24 bTagCollectorSequenceMC = cms.Sequence(bTagCollectorMC)
25 
26 #special sequence for fullsim, all histos havested by the DATA sequence in the dqm offline sequence
27 bTagCollectorMCbcl = bTagCollectorMC.clone(mcPlots=1) #harvest b, c, dusg and ni histos, all not harvested
28 # module execution
29 bTagCollectorSequenceMCbcl = cms.Sequence(bTagCollectorMCbcl)