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