1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
import FWCore.ParameterSet.Config as cms
from Configuration.EventContent.EventContent_cff import FEVTEventContent
skimFEVTContent = FEVTEventContent.clone()
skimFEVTContent.outputCommands.append("drop *_MEtoEDMConverter_*_*")
skimFEVTContent.outputCommands.append("drop *_*_*_SKIM")
#####################
from Configuration.Skimming.PA_MinBiasSkim_cff import *
minBiasPASkimPath = cms.Path( minBiasPASkimSequence )
SKIMStreamPAMinBias = cms.FilteredStream(
responsible = 'HI PAG',
name = 'PAMinBias',
paths = (minBiasPASkimPath),
content = skimFEVTContent.outputCommands,
selectEvents = cms.untracked.PSet(),
dataTier = cms.untracked.string('RAW-RECO')
)
#####################
from Configuration.Skimming.PA_ZEESkim_cff import *
zEEPASkimPath = cms.Path( zEEPASkimSequence )
SKIMStreamPAZEE = cms.FilteredStream(
responsible = 'HI PAG',
name = 'PAZEE',
paths = (zEEPASkimPath),
content = skimFEVTContent.outputCommands,
selectEvents = cms.untracked.PSet(),
dataTier = cms.untracked.string('RAW-RECO')
)
#####################
from Configuration.Skimming.PA_ZMMSkim_cff import *
zMMPASkimPath = cms.Path( zMMPASkimSequence )
SKIMStreamPAZMM = cms.FilteredStream(
responsible = 'HI PAG',
name = 'PAZMM',
paths = (zMMPASkimPath),
content = skimFEVTContent.outputCommands,
selectEvents = cms.untracked.PSet(),
dataTier = cms.untracked.string('RAW-RECO')
)
#####################
|