CMS 3D CMS Logo

dqmCollector_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 #pf DATA collector
6 bTagCollectorDATA = bTagHarvest.clone(ptRanges = cms.vdouble(0.0))
7 # module execution
8 bTagCollectorSequenceDATA = cms.Sequence(bTagCollectorDATA)
9 
10 #pf MC collector
11 bTagCollectorMC = bTagHarvestMC.clone(
12  flavPlots = cms.string("allbcl"), #harvest all, b, c, dusg and ni histos
13  ptRanges = cms.vdouble(0.0),
14  etaRanges = cms.vdouble(0.0),
15 )
16 # module execution
17 bTagCollectorSequenceMC = cms.Sequence(bTagCollectorMC)
18 #special sequence for fullsim, all histos havested by the DATA sequence in the dqm offline sequence
19 bTagCollectorMCbcl = bTagCollectorMC.clone(flavPlots = cms.string("bcl")) #harvest b, c, dusg and ni histos, all not harvested
20 bTagCollectorSequenceMCbcl = cms.Sequence(bTagCollectorMCbcl)
dqmAnalyzer_cff